· 6 years ago · Aug 18, 2019, 09:54 PM
1CREATE DATABASE IF NOT EXISTS `waiting_times` /*!40100 DEFAULT CHARACTER SET utf8 */;
2USE `waiting_times`;
3-- MySQL dump 10.13 Distrib 5.7.12, for Win64 (x86_64)
4--
5-- Host: 127.0.0.1 Database: waiting_times
6-- ------------------------------------------------------
7-- Server version 5.7.17-log
8
9/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
10/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
11/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
12/*!40101 SET NAMES utf8 */;
13/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
14/*!40103 SET TIME_ZONE='+00:00' */;
15/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
16/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
17/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
18/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
19
20--
21-- Table structure for table `actual_times`
22--
23
24DROP TABLE IF EXISTS `actual_times`;
25/*!40101 SET @saved_cs_client = @@character_set_client */;
26/*!40101 SET character_set_client = utf8 */;
27CREATE TABLE `actual_times` (
28 `id` int(11) NOT NULL AUTO_INCREMENT,
29 `ride_id` int(11) DEFAULT NULL,
30 `date` date DEFAULT NULL,
31 `hour` smallint(6) DEFAULT NULL,
32 `minute` smallint(6) DEFAULT NULL,
33 `second` smallint(6) DEFAULT NULL,
34 `value` smallint(6) DEFAULT NULL,
35 PRIMARY KEY (`id`),
36 UNIQUE KEY `date` (`date`,`hour`,`minute`,`second`,`value`)
37) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8;
38/*!40101 SET character_set_client = @saved_cs_client */;
39
40--
41-- Dumping data for table `actual_times`
42--
43
44LOCK TABLES `actual_times` WRITE;
45/*!40000 ALTER TABLE `actual_times` DISABLE KEYS */;
46INSERT INTO `actual_times` VALUES (1,1,'2019-08-17',14,15,16,35),(2,1,'2019-08-17',18,37,2,35),(3,4,'2019-08-17',9,4,47,20),(4,6,'2019-08-17',17,32,53,20),(5,9,'2019-08-17',14,53,25,20),(6,13,'2019-08-17',8,28,48,25),(7,13,'2019-08-17',8,45,56,25),(8,15,'2019-08-17',16,58,37,15),(9,15,'2019-08-17',19,30,4,15),(10,15,'2019-08-17',20,6,7,15),(11,17,'2019-08-17',18,24,35,10),(12,21,'2019-08-17',13,54,19,30),(13,23,'2019-08-17',9,5,50,15),(14,23,'2019-08-17',17,12,52,15),(15,23,'2019-08-17',17,45,2,15),(16,23,'2019-08-17',18,36,27,15),(17,25,'2019-08-17',18,16,55,20),(18,25,'2019-08-17',18,53,1,20),(21,27,'2019-08-17',11,6,9,5),(23,34,'2019-08-17',14,45,42,20),(24,34,'2019-08-17',18,2,40,20),(25,35,'2019-08-17',8,2,14,80),(26,35,'2019-08-17',8,13,34,80),(27,35,'2019-08-17',10,17,55,80),(28,36,'2019-08-17',13,25,40,25),(29,39,'2019-08-17',16,7,43,5);
47/*!40000 ALTER TABLE `actual_times` ENABLE KEYS */;
48UNLOCK TABLES;
49
50--
51-- Table structure for table `adjusted_times`
52--
53
54DROP TABLE IF EXISTS `adjusted_times`;
55/*!40101 SET @saved_cs_client = @@character_set_client */;
56/*!40101 SET character_set_client = utf8 */;
57CREATE TABLE `adjusted_times` (
58 `id` int(11) NOT NULL AUTO_INCREMENT,
59 `ride_id` int(11) DEFAULT NULL,
60 `date` date DEFAULT NULL,
61 `hour` smallint(6) DEFAULT NULL,
62 `minute` smallint(6) DEFAULT NULL,
63 `second` smallint(6) DEFAULT NULL,
64 `value` smallint(6) DEFAULT NULL,
65 PRIMARY KEY (`id`),
66 UNIQUE KEY `date` (`date`,`hour`,`minute`,`second`,`value`)
67) ENGINE=InnoDB AUTO_INCREMENT=5277 DEFAULT CHARSET=utf8;
68/*!40101 SET character_set_client = @saved_cs_client */;
69
70--
71-- Dumping data for table `adjusted_times`
72--
73
74LOCK TABLES `adjusted_times` WRITE;
75/*!40000 ALTER TABLE `adjusted_times` DISABLE KEYS */;
76INSERT INTO `adjusted_times` VALUES (1,1,'2019-08-17',7,0,0,35),(2,1,'2019-08-17',7,15,0,35),(3,1,'2019-08-17',7,30,0,35),(4,1,'2019-08-17',7,45,0,35),(5,1,'2019-08-17',8,0,0,35),(6,1,'2019-08-17',8,15,0,35),(7,1,'2019-08-17',8,30,0,35),(8,1,'2019-08-17',9,15,0,35),(9,1,'2019-08-17',9,30,0,35),(10,1,'2019-08-17',9,45,0,35),(11,1,'2019-08-17',10,0,0,35),(12,1,'2019-08-17',11,0,0,35),(13,1,'2019-08-17',11,15,0,35),(14,1,'2019-08-17',11,30,0,35),(15,1,'2019-08-17',11,45,0,35),(16,1,'2019-08-17',12,0,0,35),(17,1,'2019-08-17',12,15,0,35),(18,1,'2019-08-17',12,30,0,35),(19,1,'2019-08-17',12,45,0,35),(20,1,'2019-08-17',13,0,0,35),(21,1,'2019-08-17',13,15,0,35),(22,1,'2019-08-17',13,30,0,35),(23,1,'2019-08-17',13,45,0,35),(24,1,'2019-08-17',14,0,0,35),(25,1,'2019-08-17',14,15,0,35),(26,1,'2019-08-17',14,30,0,35),(27,1,'2019-08-17',14,45,0,35),(28,1,'2019-08-17',15,0,0,35),(29,1,'2019-08-17',15,15,0,35),(30,1,'2019-08-17',15,30,0,35),(31,1,'2019-08-17',15,45,0,35),(32,1,'2019-08-17',16,0,0,35),(33,1,'2019-08-17',16,15,0,35),(34,1,'2019-08-17',16,30,0,35),(35,1,'2019-08-17',16,45,0,35),(36,1,'2019-08-17',17,0,0,35),(37,1,'2019-08-17',17,15,0,35),(38,1,'2019-08-17',17,30,0,35),(39,1,'2019-08-17',17,45,0,35),(40,1,'2019-08-17',18,0,0,35),(41,1,'2019-08-17',18,15,0,35),(42,1,'2019-08-17',18,30,0,35),(43,1,'2019-08-17',18,45,0,35),(44,1,'2019-08-17',19,0,0,35),(45,1,'2019-08-17',19,15,0,35),(46,1,'2019-08-17',19,30,0,35),(47,1,'2019-08-17',19,45,0,35),(48,1,'2019-08-17',20,0,0,35),(49,1,'2019-08-17',20,15,0,35),(50,1,'2019-08-17',20,30,0,35),(51,1,'2019-08-17',20,45,0,35),(52,1,'2019-08-17',21,0,0,35),(53,1,'2019-08-17',22,45,0,35),(54,1,'2019-08-17',23,0,0,35),(55,1,'2019-08-17',23,15,0,35),(56,1,'2019-08-17',23,30,0,35),(57,1,'2019-08-17',23,45,0,35),(58,1,'2019-08-17',23,50,23,35),(59,2,'2019-08-17',7,0,0,15),(60,2,'2019-08-17',7,15,0,15),(61,2,'2019-08-17',7,30,0,15),(62,2,'2019-08-17',7,45,0,15),(63,2,'2019-08-17',8,0,0,15),(64,2,'2019-08-17',8,15,0,15),(65,2,'2019-08-17',8,30,0,15),(66,2,'2019-08-17',8,45,0,15),(67,2,'2019-08-17',9,0,0,15),(68,2,'2019-08-17',9,15,0,15),(69,2,'2019-08-17',9,30,0,15),(70,2,'2019-08-17',9,45,0,15),(71,2,'2019-08-17',10,0,0,15),(72,2,'2019-08-17',10,15,0,15),(73,2,'2019-08-17',10,30,0,15),(74,2,'2019-08-17',10,45,0,15),(75,2,'2019-08-17',11,0,0,15),(76,2,'2019-08-17',11,15,0,15),(77,2,'2019-08-17',11,30,0,15),(78,2,'2019-08-17',11,45,0,15),(79,2,'2019-08-17',12,0,0,15),(80,2,'2019-08-17',12,15,0,15),(81,2,'2019-08-17',12,30,0,15),(82,2,'2019-08-17',12,45,0,15),(83,2,'2019-08-17',13,0,0,15),(84,2,'2019-08-17',13,15,0,15),(85,2,'2019-08-17',13,30,0,15),(86,2,'2019-08-17',13,45,0,15),(87,2,'2019-08-17',14,0,0,15),(88,2,'2019-08-17',14,15,0,15),(89,2,'2019-08-17',14,30,0,15),(90,2,'2019-08-17',14,45,0,15),(91,2,'2019-08-17',15,0,0,15),(92,2,'2019-08-17',15,15,0,15),(93,2,'2019-08-17',15,30,0,15),(94,2,'2019-08-17',15,45,0,15),(95,2,'2019-08-17',16,0,0,15),(96,2,'2019-08-17',16,15,0,15),(97,2,'2019-08-17',16,30,0,15),(98,2,'2019-08-17',16,45,0,15),(99,2,'2019-08-17',17,0,0,15),(100,2,'2019-08-17',17,15,0,15),(101,2,'2019-08-17',17,30,0,15),(102,2,'2019-08-17',17,45,0,15),(103,2,'2019-08-17',18,0,0,15),(104,2,'2019-08-17',18,15,0,15),(105,2,'2019-08-17',18,30,0,15),(106,2,'2019-08-17',18,45,0,15),(107,2,'2019-08-17',19,0,0,15),(108,2,'2019-08-17',19,15,0,15),(109,2,'2019-08-17',19,30,0,15),(110,2,'2019-08-17',19,45,0,15),(111,2,'2019-08-17',20,0,0,15),(112,2,'2019-08-17',20,15,0,15),(113,2,'2019-08-17',20,30,0,15),(114,2,'2019-08-17',20,45,0,15),(115,2,'2019-08-17',21,0,0,15),(116,2,'2019-08-17',21,15,0,15),(117,2,'2019-08-17',21,30,0,15),(118,2,'2019-08-17',21,45,0,15),(119,2,'2019-08-17',22,0,0,15),(120,2,'2019-08-17',22,15,0,15),(121,2,'2019-08-17',22,30,0,15),(122,2,'2019-08-17',22,45,0,15),(123,2,'2019-08-17',23,0,0,15),(124,2,'2019-08-17',23,15,0,15),(125,2,'2019-08-17',23,30,0,15),(126,2,'2019-08-17',23,45,0,15),(127,2,'2019-08-17',23,50,24,15),(196,3,'2019-08-17',23,50,25,15),(197,4,'2019-08-17',7,0,0,20),(198,4,'2019-08-17',7,15,0,20),(199,4,'2019-08-17',7,30,0,20),(200,4,'2019-08-17',7,45,0,20),(201,4,'2019-08-17',8,0,0,20),(202,4,'2019-08-17',8,15,0,20),(203,4,'2019-08-17',8,30,0,20),(204,4,'2019-08-17',8,45,0,20),(205,4,'2019-08-17',9,0,0,20),(206,4,'2019-08-17',9,15,0,20),(207,4,'2019-08-17',9,30,0,20),(208,4,'2019-08-17',9,45,0,20),(209,4,'2019-08-17',10,0,0,20),(210,4,'2019-08-17',10,15,0,20),(211,4,'2019-08-17',10,30,0,20),(212,4,'2019-08-17',10,45,0,20),(213,4,'2019-08-17',11,0,0,20),(214,4,'2019-08-17',11,15,0,20),(215,4,'2019-08-17',11,30,0,20),(216,4,'2019-08-17',11,45,0,20),(217,4,'2019-08-17',12,0,0,20),(218,4,'2019-08-17',12,15,0,20),(219,4,'2019-08-17',12,30,0,20),(220,4,'2019-08-17',12,45,0,20),(221,4,'2019-08-17',13,0,0,20),(222,4,'2019-08-17',13,15,0,20),(223,4,'2019-08-17',13,30,0,20),(224,4,'2019-08-17',13,45,0,20),(225,4,'2019-08-17',14,0,0,20),(226,4,'2019-08-17',14,15,0,20),(227,4,'2019-08-17',14,30,0,20),(228,4,'2019-08-17',14,45,0,20),(229,4,'2019-08-17',15,0,0,20),(230,4,'2019-08-17',15,15,0,20),(231,4,'2019-08-17',15,30,0,20),(232,4,'2019-08-17',15,45,0,20),(233,4,'2019-08-17',16,0,0,20),(234,4,'2019-08-17',16,15,0,20),(235,4,'2019-08-17',16,30,0,20),(236,4,'2019-08-17',16,45,0,20),(237,4,'2019-08-17',17,0,0,20),(238,4,'2019-08-17',17,15,0,20),(239,4,'2019-08-17',17,30,0,20),(240,4,'2019-08-17',17,45,0,20),(241,4,'2019-08-17',18,0,0,20),(242,4,'2019-08-17',19,15,0,20),(243,4,'2019-08-17',19,30,0,20),(244,4,'2019-08-17',19,45,0,20),(245,4,'2019-08-17',20,0,0,20),(246,4,'2019-08-17',20,15,0,20),(247,4,'2019-08-17',20,30,0,20),(248,4,'2019-08-17',20,45,0,20),(249,4,'2019-08-17',21,0,0,20),(250,4,'2019-08-17',21,15,0,20),(251,4,'2019-08-17',21,30,0,20),(252,4,'2019-08-17',21,45,0,20),(253,4,'2019-08-17',22,0,0,20),(254,4,'2019-08-17',22,15,0,20),(255,4,'2019-08-17',22,30,0,20),(256,4,'2019-08-17',22,45,0,20),(257,4,'2019-08-17',23,0,0,20),(258,4,'2019-08-17',23,15,0,20),(259,4,'2019-08-17',23,30,0,20),(260,4,'2019-08-17',23,45,0,20),(261,4,'2019-08-17',23,50,27,20),(262,5,'2019-08-17',7,0,0,5),(263,5,'2019-08-17',7,15,0,5),(264,5,'2019-08-17',7,30,0,5),(265,5,'2019-08-17',7,45,0,5),(266,5,'2019-08-17',8,0,0,5),(267,5,'2019-08-17',8,15,0,5),(268,5,'2019-08-17',8,30,0,5),(269,5,'2019-08-17',8,45,0,5),(270,5,'2019-08-17',9,0,0,5),(271,5,'2019-08-17',9,15,0,5),(272,5,'2019-08-17',9,30,0,5),(273,5,'2019-08-17',9,45,0,5),(274,5,'2019-08-17',10,0,0,5),(275,5,'2019-08-17',10,15,0,5),(276,5,'2019-08-17',10,30,0,5),(277,5,'2019-08-17',10,45,0,5),(278,5,'2019-08-17',11,0,0,5),(279,5,'2019-08-17',11,15,0,5),(280,5,'2019-08-17',11,30,0,5),(281,5,'2019-08-17',11,45,0,5),(282,5,'2019-08-17',12,0,0,5),(283,5,'2019-08-17',12,15,0,5),(284,5,'2019-08-17',12,30,0,5),(285,5,'2019-08-17',12,45,0,5),(286,5,'2019-08-17',13,0,0,5),(287,5,'2019-08-17',13,15,0,5),(288,5,'2019-08-17',13,30,0,5),(289,5,'2019-08-17',13,45,0,5),(290,5,'2019-08-17',14,0,0,5),(291,5,'2019-08-17',14,15,0,5),(292,5,'2019-08-17',14,30,0,5),(293,5,'2019-08-17',14,45,0,5),(294,5,'2019-08-17',15,0,0,5),(295,5,'2019-08-17',15,15,0,5),(296,5,'2019-08-17',15,30,0,5),(297,5,'2019-08-17',15,45,0,5),(298,5,'2019-08-17',16,0,0,5),(299,5,'2019-08-17',16,15,0,5),(300,5,'2019-08-17',16,30,0,5),(301,5,'2019-08-17',16,45,0,5),(302,5,'2019-08-17',17,0,0,5),(303,5,'2019-08-17',17,15,0,5),(304,5,'2019-08-17',17,30,0,5),(305,5,'2019-08-17',17,45,0,5),(306,5,'2019-08-17',18,0,0,5),(307,5,'2019-08-17',18,15,0,5),(308,5,'2019-08-17',18,30,0,5),(309,5,'2019-08-17',18,45,0,5),(310,5,'2019-08-17',19,0,0,5),(311,5,'2019-08-17',19,15,0,5),(312,5,'2019-08-17',19,30,0,5),(313,5,'2019-08-17',19,45,0,5),(314,5,'2019-08-17',20,0,0,5),(315,5,'2019-08-17',20,15,0,5),(316,5,'2019-08-17',20,30,0,5),(317,5,'2019-08-17',20,45,0,5),(318,5,'2019-08-17',21,0,0,5),(319,5,'2019-08-17',21,15,0,5),(320,5,'2019-08-17',21,30,0,5),(321,5,'2019-08-17',21,45,0,5),(322,5,'2019-08-17',22,0,0,5),(323,5,'2019-08-17',22,15,0,5),(324,5,'2019-08-17',22,30,0,5),(325,5,'2019-08-17',22,45,0,5),(326,5,'2019-08-17',23,0,0,5),(327,5,'2019-08-17',23,15,0,5),(328,5,'2019-08-17',23,30,0,5),(329,5,'2019-08-17',23,45,0,5),(330,5,'2019-08-17',23,50,29,5),(376,6,'2019-08-17',18,15,0,20),(377,6,'2019-08-17',18,30,0,20),(378,6,'2019-08-17',18,45,0,20),(379,6,'2019-08-17',19,0,0,20),(399,6,'2019-08-17',23,50,31,20),(400,7,'2019-08-17',7,0,0,25),(401,7,'2019-08-17',7,15,0,25),(402,7,'2019-08-17',7,30,0,25),(403,7,'2019-08-17',7,45,0,25),(404,7,'2019-08-17',8,0,0,25),(405,7,'2019-08-17',8,15,0,25),(406,7,'2019-08-17',8,30,0,25),(407,7,'2019-08-17',8,45,0,25),(408,7,'2019-08-17',9,0,0,25),(409,7,'2019-08-17',9,15,0,25),(410,7,'2019-08-17',9,30,0,25),(411,7,'2019-08-17',9,45,0,25),(412,7,'2019-08-17',10,0,0,25),(413,7,'2019-08-17',10,15,0,25),(414,7,'2019-08-17',10,30,0,25),(415,7,'2019-08-17',10,45,0,25),(416,7,'2019-08-17',11,0,0,25),(417,7,'2019-08-17',11,15,0,25),(418,7,'2019-08-17',11,30,0,25),(419,7,'2019-08-17',11,45,0,25),(420,7,'2019-08-17',12,0,0,25),(421,7,'2019-08-17',12,15,0,25),(422,7,'2019-08-17',12,30,0,25),(423,7,'2019-08-17',12,45,0,25),(424,7,'2019-08-17',13,0,0,25),(425,7,'2019-08-17',13,15,0,25),(426,7,'2019-08-17',13,30,0,25),(427,7,'2019-08-17',13,45,0,25),(428,7,'2019-08-17',14,0,0,25),(429,7,'2019-08-17',14,15,0,25),(430,7,'2019-08-17',14,30,0,25),(431,7,'2019-08-17',14,45,0,25),(432,7,'2019-08-17',15,0,0,25),(433,7,'2019-08-17',15,15,0,25),(434,7,'2019-08-17',15,30,0,25),(435,7,'2019-08-17',15,45,0,25),(436,7,'2019-08-17',16,15,0,25),(437,7,'2019-08-17',16,30,0,25),(438,7,'2019-08-17',16,45,0,25),(439,7,'2019-08-17',17,0,0,25),(440,7,'2019-08-17',17,15,0,25),(441,7,'2019-08-17',17,30,0,25),(442,7,'2019-08-17',17,45,0,25),(443,7,'2019-08-17',18,0,0,25),(444,7,'2019-08-17',18,15,0,25),(445,7,'2019-08-17',18,30,0,25),(446,7,'2019-08-17',18,45,0,25),(447,7,'2019-08-17',19,0,0,25),(448,7,'2019-08-17',19,15,0,25),(449,7,'2019-08-17',19,30,0,25),(450,7,'2019-08-17',19,45,0,25),(451,7,'2019-08-17',20,0,0,25),(452,7,'2019-08-17',20,15,0,25),(453,7,'2019-08-17',20,30,0,25),(454,7,'2019-08-17',20,45,0,25),(455,7,'2019-08-17',21,0,0,25),(456,7,'2019-08-17',21,15,0,25),(457,7,'2019-08-17',21,30,0,25),(458,7,'2019-08-17',21,45,0,25),(459,7,'2019-08-17',22,0,0,25),(460,7,'2019-08-17',22,15,0,25),(461,7,'2019-08-17',22,30,0,25),(462,7,'2019-08-17',22,45,0,25),(463,7,'2019-08-17',23,0,0,25),(464,7,'2019-08-17',23,15,0,25),(465,7,'2019-08-17',23,30,0,25),(466,7,'2019-08-17',23,45,0,25),(467,7,'2019-08-17',0,0,0,25),(501,8,'2019-08-17',23,50,34,5),(566,9,'2019-08-17',23,50,37,20),(635,10,'2019-08-17',23,50,39,15),(636,11,'2019-08-17',7,0,0,10),(637,11,'2019-08-17',7,15,0,10),(638,11,'2019-08-17',7,30,0,10),(639,11,'2019-08-17',7,45,0,10),(640,11,'2019-08-17',8,0,0,10),(641,11,'2019-08-17',8,15,0,10),(642,11,'2019-08-17',8,30,0,10),(643,11,'2019-08-17',8,45,0,10),(644,11,'2019-08-17',9,0,0,10),(645,11,'2019-08-17',9,15,0,10),(646,11,'2019-08-17',9,30,0,10),(647,11,'2019-08-17',9,45,0,10),(648,11,'2019-08-17',10,0,0,10),(649,11,'2019-08-17',10,15,0,10),(650,11,'2019-08-17',10,30,0,10),(651,11,'2019-08-17',10,45,0,10),(652,11,'2019-08-17',11,0,0,10),(653,11,'2019-08-17',11,15,0,10),(654,11,'2019-08-17',11,30,0,10),(655,11,'2019-08-17',11,45,0,10),(656,11,'2019-08-17',12,0,0,10),(657,11,'2019-08-17',12,15,0,10),(658,11,'2019-08-17',12,30,0,10),(659,11,'2019-08-17',12,45,0,10),(660,11,'2019-08-17',13,0,0,10),(661,11,'2019-08-17',13,15,0,10),(662,11,'2019-08-17',13,30,0,10),(663,11,'2019-08-17',13,45,0,10),(664,11,'2019-08-17',14,0,0,10),(665,11,'2019-08-17',14,15,0,10),(666,11,'2019-08-17',14,30,0,10),(667,11,'2019-08-17',14,45,0,10),(668,11,'2019-08-17',15,0,0,10),(669,11,'2019-08-17',15,15,0,10),(670,11,'2019-08-17',15,30,0,10),(671,11,'2019-08-17',15,45,0,10),(672,11,'2019-08-17',16,0,0,10),(673,11,'2019-08-17',16,45,0,10),(674,11,'2019-08-17',17,0,0,10),(675,11,'2019-08-17',17,15,0,10),(676,11,'2019-08-17',17,30,0,10),(677,11,'2019-08-17',17,45,0,10),(678,11,'2019-08-17',18,0,0,10),(679,11,'2019-08-17',18,15,0,10),(680,11,'2019-08-17',18,30,0,10),(681,11,'2019-08-17',18,45,0,10),(682,11,'2019-08-17',19,0,0,10),(683,11,'2019-08-17',19,15,0,10),(684,11,'2019-08-17',19,30,0,10),(685,11,'2019-08-17',19,45,0,10),(686,11,'2019-08-17',20,0,0,10),(687,11,'2019-08-17',20,15,0,10),(688,11,'2019-08-17',20,45,0,10),(689,11,'2019-08-17',21,0,0,10),(690,11,'2019-08-17',21,15,0,10),(691,11,'2019-08-17',21,30,0,10),(692,11,'2019-08-17',21,45,0,10),(693,11,'2019-08-17',22,0,0,10),(694,11,'2019-08-17',22,15,0,10),(695,11,'2019-08-17',22,30,0,10),(696,11,'2019-08-17',22,45,0,10),(697,11,'2019-08-17',23,0,0,10),(698,11,'2019-08-17',23,15,0,10),(699,11,'2019-08-17',23,30,0,10),(700,11,'2019-08-17',23,45,0,10),(701,11,'2019-08-17',0,0,0,10),(770,12,'2019-08-17',23,51,16,5),(806,13,'2019-08-17',16,0,0,25),(830,13,'2019-08-17',23,50,43,25),(898,14,'2019-08-17',23,50,45,15),(967,15,'2019-08-17',23,50,46,15),(1032,16,'2019-08-17',23,50,48,5),(1070,17,'2019-08-17',16,15,0,10),(1071,17,'2019-08-17',16,30,0,10),(1087,17,'2019-08-17',20,30,0,10),(1101,17,'2019-08-17',23,50,49,10),(1169,18,'2019-08-17',0,0,0,15),(1238,19,'2019-08-17',23,50,52,20),(1239,20,'2019-08-17',7,0,0,40),(1240,20,'2019-08-17',7,15,0,40),(1241,20,'2019-08-17',7,30,0,40),(1242,20,'2019-08-17',7,45,0,40),(1243,20,'2019-08-17',8,0,0,40),(1244,20,'2019-08-17',8,15,0,40),(1245,20,'2019-08-17',8,30,0,40),(1246,20,'2019-08-17',8,45,0,40),(1247,20,'2019-08-17',9,0,0,40),(1248,20,'2019-08-17',9,15,0,40),(1249,20,'2019-08-17',9,30,0,40),(1250,20,'2019-08-17',10,0,0,40),(1251,20,'2019-08-17',10,15,0,40),(1252,20,'2019-08-17',10,30,0,40),(1253,20,'2019-08-17',10,45,0,40),(1254,20,'2019-08-17',11,0,0,40),(1255,20,'2019-08-17',11,15,0,40),(1256,20,'2019-08-17',11,30,0,40),(1257,20,'2019-08-17',11,45,0,40),(1258,20,'2019-08-17',12,0,0,40),(1259,20,'2019-08-17',12,15,0,40),(1260,20,'2019-08-17',12,30,0,40),(1261,20,'2019-08-17',12,45,0,40),(1262,20,'2019-08-17',13,0,0,40),(1263,20,'2019-08-17',13,15,0,40),(1264,20,'2019-08-17',13,30,0,40),(1265,20,'2019-08-17',13,45,0,40),(1266,20,'2019-08-17',14,0,0,40),(1267,20,'2019-08-17',14,15,0,40),(1268,20,'2019-08-17',14,30,0,40),(1269,20,'2019-08-17',14,45,0,40),(1270,20,'2019-08-17',15,0,0,40),(1271,20,'2019-08-17',15,15,0,40),(1272,20,'2019-08-17',15,30,0,40),(1273,20,'2019-08-17',15,45,0,40),(1274,20,'2019-08-17',16,0,0,40),(1275,20,'2019-08-17',16,15,0,40),(1276,20,'2019-08-17',16,30,0,40),(1277,20,'2019-08-17',16,45,0,40),(1278,20,'2019-08-17',17,0,0,40),(1279,20,'2019-08-17',17,15,0,40),(1280,20,'2019-08-17',17,30,0,40),(1281,20,'2019-08-17',17,45,0,40),(1282,20,'2019-08-17',18,0,0,40),(1283,20,'2019-08-17',18,15,0,40),(1284,20,'2019-08-17',18,30,0,40),(1285,20,'2019-08-17',18,45,0,40),(1286,20,'2019-08-17',19,0,0,40),(1287,20,'2019-08-17',19,15,0,40),(1288,20,'2019-08-17',19,30,0,40),(1289,20,'2019-08-17',19,45,0,40),(1290,20,'2019-08-17',20,0,0,40),(1291,20,'2019-08-17',20,15,0,40),(1292,20,'2019-08-17',20,45,0,40),(1293,20,'2019-08-17',21,0,0,40),(1294,20,'2019-08-17',21,15,0,40),(1295,20,'2019-08-17',21,30,0,40),(1296,20,'2019-08-17',21,45,0,40),(1297,20,'2019-08-17',22,0,0,40),(1298,20,'2019-08-17',22,15,0,40),(1299,20,'2019-08-17',22,30,0,40),(1300,20,'2019-08-17',22,45,0,40),(1301,20,'2019-08-17',23,0,0,40),(1302,20,'2019-08-17',23,15,0,40),(1303,20,'2019-08-17',23,30,0,40),(1304,20,'2019-08-17',23,45,0,40),(1305,20,'2019-08-17',0,0,0,40),(1306,21,'2019-08-17',7,0,0,30),(1307,21,'2019-08-17',7,15,0,30),(1308,21,'2019-08-17',7,30,0,30),(1309,21,'2019-08-17',7,45,0,30),(1310,21,'2019-08-17',8,0,0,30),(1311,21,'2019-08-17',8,15,0,30),(1312,21,'2019-08-17',8,30,0,30),(1313,21,'2019-08-17',8,45,0,30),(1314,21,'2019-08-17',9,0,0,30),(1315,21,'2019-08-17',9,30,0,30),(1316,21,'2019-08-17',9,45,0,30),(1317,21,'2019-08-17',10,0,0,30),(1318,21,'2019-08-17',10,15,0,30),(1319,21,'2019-08-17',10,30,0,30),(1320,21,'2019-08-17',10,45,0,30),(1321,21,'2019-08-17',11,0,0,30),(1322,21,'2019-08-17',11,15,0,30),(1323,21,'2019-08-17',11,30,0,30),(1324,21,'2019-08-17',11,45,0,30),(1325,21,'2019-08-17',12,0,0,30),(1326,21,'2019-08-17',12,15,0,30),(1327,21,'2019-08-17',12,30,0,30),(1328,21,'2019-08-17',12,45,0,30),(1329,21,'2019-08-17',13,0,0,30),(1330,21,'2019-08-17',13,15,0,30),(1331,21,'2019-08-17',13,30,0,30),(1332,21,'2019-08-17',13,45,0,30),(1333,21,'2019-08-17',14,0,0,30),(1334,21,'2019-08-17',14,15,0,30),(1335,21,'2019-08-17',14,30,0,30),(1336,21,'2019-08-17',14,45,0,30),(1337,21,'2019-08-17',15,0,0,30),(1338,21,'2019-08-17',15,15,0,30),(1339,21,'2019-08-17',15,30,0,30),(1340,21,'2019-08-17',15,45,0,30),(1341,21,'2019-08-17',16,0,0,30),(1342,21,'2019-08-17',16,15,0,30),(1343,21,'2019-08-17',16,30,0,30),(1344,21,'2019-08-17',16,45,0,30),(1345,21,'2019-08-17',17,0,0,30),(1346,21,'2019-08-17',17,15,0,30),(1347,21,'2019-08-17',17,30,0,30),(1348,21,'2019-08-17',17,45,0,30),(1349,21,'2019-08-17',18,0,0,30),(1350,21,'2019-08-17',18,15,0,30),(1351,21,'2019-08-17',18,30,0,30),(1352,21,'2019-08-17',18,45,0,30),(1353,21,'2019-08-17',19,0,0,30),(1354,21,'2019-08-17',19,15,0,30),(1355,21,'2019-08-17',19,30,0,30),(1356,21,'2019-08-17',19,45,0,30),(1357,21,'2019-08-17',20,0,0,30),(1358,21,'2019-08-17',20,15,0,30),(1359,21,'2019-08-17',20,30,0,30),(1360,21,'2019-08-17',20,45,0,30),(1361,21,'2019-08-17',21,0,0,30),(1362,21,'2019-08-17',21,15,0,30),(1363,21,'2019-08-17',21,30,0,30),(1364,21,'2019-08-17',21,45,0,30),(1365,21,'2019-08-17',22,0,0,30),(1366,21,'2019-08-17',22,15,0,30),(1367,21,'2019-08-17',22,30,0,30),(1368,21,'2019-08-17',22,45,0,30),(1369,21,'2019-08-17',23,0,0,30),(1370,21,'2019-08-17',23,15,0,30),(1371,21,'2019-08-17',23,30,0,30),(1372,21,'2019-08-17',23,45,0,30),(1373,21,'2019-08-17',23,51,39,30),(1383,22,'2019-08-17',9,15,0,30),(1441,22,'2019-08-17',0,0,0,30),(1502,23,'2019-08-17',23,50,57,15),(1503,24,'2019-08-17',7,0,0,50),(1504,24,'2019-08-17',7,15,0,50),(1505,24,'2019-08-17',7,30,0,50),(1506,24,'2019-08-17',7,45,0,50),(1507,24,'2019-08-17',8,0,0,50),(1508,24,'2019-08-17',8,15,0,50),(1509,24,'2019-08-17',8,30,0,50),(1510,24,'2019-08-17',8,45,0,50),(1511,24,'2019-08-17',9,0,0,50),(1512,24,'2019-08-17',9,15,0,50),(1513,24,'2019-08-17',9,30,0,50),(1514,24,'2019-08-17',9,45,0,50),(1515,24,'2019-08-17',10,0,0,50),(1516,24,'2019-08-17',10,15,0,50),(1517,24,'2019-08-17',10,30,0,50),(1518,24,'2019-08-17',10,45,0,50),(1519,24,'2019-08-17',11,0,0,50),(1520,24,'2019-08-17',11,15,0,50),(1521,24,'2019-08-17',11,30,0,50),(1522,24,'2019-08-17',11,45,0,50),(1523,24,'2019-08-17',12,0,0,50),(1524,24,'2019-08-17',12,15,0,50),(1525,24,'2019-08-17',12,30,0,50),(1526,24,'2019-08-17',12,45,0,50),(1527,24,'2019-08-17',13,0,0,50),(1528,24,'2019-08-17',13,15,0,50),(1529,24,'2019-08-17',13,30,0,50),(1530,24,'2019-08-17',13,45,0,50),(1531,24,'2019-08-17',14,0,0,50),(1532,24,'2019-08-17',14,15,0,50),(1533,24,'2019-08-17',14,30,0,50),(1534,24,'2019-08-17',14,45,0,50),(1535,24,'2019-08-17',15,0,0,50),(1536,24,'2019-08-17',15,15,0,50),(1537,24,'2019-08-17',15,30,0,50),(1538,24,'2019-08-17',15,45,0,50),(1539,24,'2019-08-17',16,0,0,50),(1540,24,'2019-08-17',16,15,0,50),(1541,24,'2019-08-17',16,30,0,50),(1542,24,'2019-08-17',16,45,0,50),(1543,24,'2019-08-17',17,0,0,50),(1544,24,'2019-08-17',17,15,0,50),(1545,24,'2019-08-17',17,30,0,50),(1546,24,'2019-08-17',17,45,0,50),(1547,24,'2019-08-17',18,0,0,50),(1548,24,'2019-08-17',18,15,0,50),(1549,24,'2019-08-17',18,30,0,50),(1550,24,'2019-08-17',18,45,0,50),(1551,24,'2019-08-17',19,0,0,50),(1552,24,'2019-08-17',19,15,0,50),(1553,24,'2019-08-17',19,30,0,50),(1554,24,'2019-08-17',19,45,0,50),(1555,24,'2019-08-17',20,0,0,50),(1556,24,'2019-08-17',20,15,0,50),(1557,24,'2019-08-17',20,30,0,50),(1558,24,'2019-08-17',20,45,0,50),(1559,24,'2019-08-17',21,0,0,50),(1560,24,'2019-08-17',22,15,0,50),(1561,24,'2019-08-17',22,30,0,50),(1562,24,'2019-08-17',22,45,0,50),(1563,24,'2019-08-17',23,0,0,50),(1564,24,'2019-08-17',23,15,0,50),(1565,24,'2019-08-17',23,30,0,50),(1566,24,'2019-08-17',23,45,0,50),(1567,24,'2019-08-17',23,50,58,50),(1630,25,'2019-08-17',23,50,59,20),(1761,26,'2019-08-17',0,0,0,5),(1829,27,'2019-08-17',23,51,1,5),(1898,28,'2019-08-17',23,50,36,20),(1967,29,'2019-08-17',23,51,19,10),(2036,30,'2019-08-17',23,51,21,20),(2294,34,'2019-08-17',23,51,5,20),(2295,35,'2019-08-17',7,0,0,80),(2296,35,'2019-08-17',7,15,0,80),(2297,35,'2019-08-17',7,30,0,80),(2298,35,'2019-08-17',7,45,0,80),(2299,35,'2019-08-17',8,0,0,80),(2300,35,'2019-08-17',8,15,0,80),(2301,35,'2019-08-17',8,30,0,80),(2302,35,'2019-08-17',8,45,0,80),(2303,35,'2019-08-17',9,0,0,80),(2304,35,'2019-08-17',9,15,0,80),(2305,35,'2019-08-17',9,30,0,80),(2306,35,'2019-08-17',9,45,0,80),(2307,35,'2019-08-17',10,0,0,80),(2308,35,'2019-08-17',10,15,0,80),(2309,35,'2019-08-17',10,30,0,80),(2310,35,'2019-08-17',10,45,0,80),(2311,35,'2019-08-17',11,0,0,80),(2312,35,'2019-08-17',11,15,0,80),(2313,35,'2019-08-17',11,30,0,80),(2314,35,'2019-08-17',11,45,0,80),(2315,35,'2019-08-17',12,0,0,80),(2316,35,'2019-08-17',12,15,0,80),(2317,35,'2019-08-17',12,30,0,80),(2318,35,'2019-08-17',12,45,0,80),(2319,35,'2019-08-17',13,0,0,80),(2320,35,'2019-08-17',13,15,0,80),(2321,35,'2019-08-17',13,30,0,80),(2322,35,'2019-08-17',13,45,0,80),(2323,35,'2019-08-17',14,0,0,80),(2324,35,'2019-08-17',14,15,0,80),(2325,35,'2019-08-17',14,30,0,80),(2326,35,'2019-08-17',14,45,0,80),(2327,35,'2019-08-17',15,0,0,80),(2328,35,'2019-08-17',15,15,0,80),(2329,35,'2019-08-17',15,30,0,80),(2330,35,'2019-08-17',15,45,0,80),(2331,35,'2019-08-17',16,0,0,80),(2332,35,'2019-08-17',16,15,0,80),(2333,35,'2019-08-17',16,30,0,80),(2334,35,'2019-08-17',16,45,0,80),(2335,35,'2019-08-17',17,0,0,80),(2336,35,'2019-08-17',17,15,0,80),(2337,35,'2019-08-17',17,30,0,80),(2338,35,'2019-08-17',17,45,0,80),(2339,35,'2019-08-17',18,0,0,80),(2340,35,'2019-08-17',18,15,0,80),(2341,35,'2019-08-17',18,30,0,80),(2342,35,'2019-08-17',18,45,0,80),(2343,35,'2019-08-17',19,0,0,80),(2344,35,'2019-08-17',19,15,0,80),(2345,35,'2019-08-17',19,30,0,80),(2346,35,'2019-08-17',19,45,0,80),(2347,35,'2019-08-17',20,0,0,80),(2348,35,'2019-08-17',20,15,0,80),(2349,35,'2019-08-17',20,30,0,80),(2350,35,'2019-08-17',20,45,0,80),(2351,35,'2019-08-17',21,0,0,80),(2352,35,'2019-08-17',21,15,0,80),(2353,35,'2019-08-17',21,30,0,80),(2354,35,'2019-08-17',21,45,0,80),(2355,35,'2019-08-17',22,0,0,80),(2356,35,'2019-08-17',22,15,0,80),(2357,35,'2019-08-17',22,30,0,80),(2358,35,'2019-08-17',22,45,0,80),(2359,35,'2019-08-17',23,0,0,80),(2360,35,'2019-08-17',23,30,0,80),(2361,35,'2019-08-17',23,45,0,80),(2362,35,'2019-08-17',23,51,6,80),(2431,36,'2019-08-17',23,51,9,25),(2500,37,'2019-08-17',23,51,11,25),(2569,38,'2019-08-17',23,51,14,20),(2638,39,'2019-08-17',23,51,17,5);
77/*!40000 ALTER TABLE `adjusted_times` ENABLE KEYS */;
78UNLOCK TABLES;
79
80--
81-- Table structure for table `observed_times`
82--
83
84DROP TABLE IF EXISTS `observed_times`;
85/*!40101 SET @saved_cs_client = @@character_set_client */;
86/*!40101 SET character_set_client = utf8 */;
87CREATE TABLE `observed_times` (
88 `id` int(11) NOT NULL AUTO_INCREMENT,
89 `ride_id` int(11) DEFAULT NULL,
90 `date` date DEFAULT NULL,
91 `hour` smallint(6) DEFAULT NULL,
92 `minute` smallint(6) DEFAULT NULL,
93 `second` smallint(6) DEFAULT NULL,
94 `value` smallint(6) DEFAULT NULL,
95 PRIMARY KEY (`id`),
96 UNIQUE KEY `date` (`date`,`hour`,`minute`,`second`,`value`)
97) ENGINE=InnoDB DEFAULT CHARSET=utf8;
98/*!40101 SET character_set_client = @saved_cs_client */;
99
100--
101-- Dumping data for table `observed_times`
102--
103
104LOCK TABLES `observed_times` WRITE;
105/*!40000 ALTER TABLE `observed_times` DISABLE KEYS */;
106/*!40000 ALTER TABLE `observed_times` ENABLE KEYS */;
107UNLOCK TABLES;
108
109--
110-- Table structure for table `posted_times`
111--
112
113DROP TABLE IF EXISTS `posted_times`;
114/*!40101 SET @saved_cs_client = @@character_set_client */;
115/*!40101 SET character_set_client = utf8 */;
116CREATE TABLE `posted_times` (
117 `id` int(11) NOT NULL AUTO_INCREMENT,
118 `ride_id` int(11) DEFAULT NULL,
119 `date` date DEFAULT NULL,
120 `hour` smallint(6) DEFAULT NULL,
121 `minute` smallint(6) DEFAULT NULL,
122 `second` smallint(6) DEFAULT NULL,
123 `value` smallint(6) DEFAULT NULL,
124 PRIMARY KEY (`id`),
125 UNIQUE KEY `date` (`date`,`hour`,`minute`,`second`,`value`)
126) ENGINE=InnoDB AUTO_INCREMENT=6127 DEFAULT CHARSET=utf8;
127/*!40101 SET character_set_client = @saved_cs_client */;
128
129--
130-- Dumping data for table `posted_times`
131--
132
133LOCK TABLES `posted_times` WRITE;
134/*!40000 ALTER TABLE `posted_times` DISABLE KEYS */;
135INSERT INTO `posted_times` VALUES (1,1,'2019-08-17',7,4,2,35),(2,1,'2019-08-17',7,11,2,35),(3,1,'2019-08-17',7,18,2,35),(4,1,'2019-08-17',7,25,2,35),(5,1,'2019-08-17',7,39,2,35),(6,1,'2019-08-17',7,46,2,35),(7,1,'2019-08-17',7,53,2,35),(8,1,'2019-08-17',8,4,2,35),(9,1,'2019-08-17',8,11,2,35),(10,1,'2019-08-17',8,18,2,35),(11,1,'2019-08-17',8,25,2,35),(12,1,'2019-08-17',9,4,2,35),(13,1,'2019-08-17',9,11,2,35),(14,1,'2019-08-17',9,18,2,35),(15,1,'2019-08-17',9,25,2,35),(16,1,'2019-08-17',9,32,1,35),(17,1,'2019-08-17',9,39,2,35),(18,1,'2019-08-17',9,46,2,35),(19,1,'2019-08-17',9,53,2,35),(20,1,'2019-08-17',10,4,2,35),(21,1,'2019-08-17',10,46,2,35),(22,1,'2019-08-17',10,53,2,35),(23,1,'2019-08-17',11,4,2,35),(24,1,'2019-08-17',11,11,2,35),(25,1,'2019-08-17',11,18,2,35),(26,1,'2019-08-17',11,25,2,35),(27,1,'2019-08-17',11,32,2,35),(28,1,'2019-08-17',11,39,2,35),(29,1,'2019-08-17',11,46,2,35),(30,1,'2019-08-17',11,53,2,35),(31,1,'2019-08-17',12,4,1,35),(32,1,'2019-08-17',12,11,2,35),(33,1,'2019-08-17',12,18,2,35),(34,1,'2019-08-17',12,25,1,35),(35,1,'2019-08-17',12,32,2,35),(36,1,'2019-08-17',12,39,2,35),(37,1,'2019-08-17',12,46,2,35),(38,1,'2019-08-17',12,53,2,35),(39,1,'2019-08-17',13,4,2,35),(40,1,'2019-08-17',13,11,2,35),(41,1,'2019-08-17',13,18,2,35),(42,1,'2019-08-17',13,25,1,35),(43,1,'2019-08-17',13,32,2,35),(44,1,'2019-08-17',13,39,2,35),(45,1,'2019-08-17',13,46,2,35),(46,1,'2019-08-17',13,53,2,35),(47,1,'2019-08-17',14,4,1,35),(48,1,'2019-08-17',14,11,2,35),(49,1,'2019-08-17',14,18,2,35),(50,1,'2019-08-17',14,25,2,35),(51,1,'2019-08-17',14,32,2,35),(52,1,'2019-08-17',14,39,2,35),(53,1,'2019-08-17',14,46,2,35),(54,1,'2019-08-17',14,53,2,35),(55,1,'2019-08-17',15,11,2,35),(56,1,'2019-08-17',15,18,2,35),(57,1,'2019-08-17',15,25,2,35),(58,1,'2019-08-17',15,32,2,35),(59,1,'2019-08-17',15,39,2,35),(60,1,'2019-08-17',15,46,2,35),(61,1,'2019-08-17',15,53,2,35),(62,1,'2019-08-17',16,4,2,35),(63,1,'2019-08-17',16,11,2,35),(64,1,'2019-08-17',16,18,2,35),(65,1,'2019-08-17',16,25,2,35),(66,1,'2019-08-17',16,32,2,35),(67,1,'2019-08-17',16,39,2,35),(68,1,'2019-08-17',16,46,2,35),(69,1,'2019-08-17',16,53,2,35),(70,1,'2019-08-17',17,11,2,35),(71,1,'2019-08-17',17,18,2,35),(72,1,'2019-08-17',17,25,2,35),(73,1,'2019-08-17',17,32,2,35),(74,1,'2019-08-17',17,39,2,35),(75,1,'2019-08-17',17,46,1,35),(76,1,'2019-08-17',17,53,2,35),(77,1,'2019-08-17',18,4,2,35),(78,1,'2019-08-17',18,11,2,35),(79,1,'2019-08-17',18,18,2,35),(80,1,'2019-08-17',18,25,1,35),(81,1,'2019-08-17',18,32,2,35),(82,1,'2019-08-17',18,39,2,35),(83,1,'2019-08-17',18,46,1,35),(84,1,'2019-08-17',18,53,2,35),(85,1,'2019-08-17',19,4,2,35),(86,1,'2019-08-17',19,11,2,35),(87,1,'2019-08-17',19,18,2,35),(88,1,'2019-08-17',19,25,2,35),(89,1,'2019-08-17',19,32,1,35),(90,1,'2019-08-17',19,39,2,35),(91,1,'2019-08-17',19,46,2,35),(92,1,'2019-08-17',19,53,2,35),(93,1,'2019-08-17',20,4,2,35),(94,1,'2019-08-17',20,11,2,35),(95,1,'2019-08-17',20,18,2,35),(96,1,'2019-08-17',20,25,2,35),(97,1,'2019-08-17',20,32,2,35),(98,1,'2019-08-17',20,39,3,35),(99,1,'2019-08-17',20,46,2,35),(100,1,'2019-08-17',22,25,2,35),(101,1,'2019-08-17',22,32,2,35),(102,1,'2019-08-17',22,39,2,35),(103,1,'2019-08-17',22,46,1,35),(104,1,'2019-08-17',22,53,2,35),(105,1,'2019-08-17',23,4,1,35),(106,1,'2019-08-17',23,11,2,35),(107,1,'2019-08-17',23,18,2,35),(108,1,'2019-08-17',23,25,2,35),(109,1,'2019-08-17',23,32,1,35),(110,1,'2019-08-17',23,39,2,35),(111,1,'2019-08-17',23,46,2,35),(112,1,'2019-08-17',23,53,2,35),(113,2,'2019-08-17',7,4,2,15),(114,2,'2019-08-17',7,11,2,15),(115,2,'2019-08-17',7,18,2,15),(116,2,'2019-08-17',7,25,2,15),(117,2,'2019-08-17',7,39,2,15),(118,2,'2019-08-17',7,46,2,15),(119,2,'2019-08-17',7,53,2,15),(120,2,'2019-08-17',8,4,2,15),(121,2,'2019-08-17',8,11,2,15),(122,2,'2019-08-17',8,18,2,15),(123,2,'2019-08-17',8,25,2,15),(124,2,'2019-08-17',8,32,2,15),(125,2,'2019-08-17',8,39,1,15),(126,2,'2019-08-17',8,46,2,15),(127,2,'2019-08-17',8,53,2,15),(128,2,'2019-08-17',9,4,2,15),(129,2,'2019-08-17',9,11,2,15),(130,2,'2019-08-17',9,18,2,15),(131,2,'2019-08-17',9,25,2,15),(132,2,'2019-08-17',9,32,1,15),(133,2,'2019-08-17',9,39,2,15),(134,2,'2019-08-17',9,46,2,15),(135,2,'2019-08-17',9,53,2,15),(136,2,'2019-08-17',10,4,2,15),(137,2,'2019-08-17',10,6,26,15),(138,2,'2019-08-17',10,11,2,15),(139,2,'2019-08-17',10,18,2,15),(140,2,'2019-08-17',10,25,2,15),(141,2,'2019-08-17',10,32,2,15),(142,2,'2019-08-17',10,39,1,15),(143,2,'2019-08-17',10,46,2,15),(144,2,'2019-08-17',10,53,2,15),(145,2,'2019-08-17',11,4,2,15),(146,2,'2019-08-17',11,11,2,15),(147,2,'2019-08-17',11,18,2,15),(148,2,'2019-08-17',11,25,2,15),(149,2,'2019-08-17',11,32,2,15),(150,2,'2019-08-17',11,39,2,15),(151,2,'2019-08-17',11,46,2,15),(152,2,'2019-08-17',11,53,2,15),(153,2,'2019-08-17',12,4,1,15),(154,2,'2019-08-17',12,11,2,15),(155,2,'2019-08-17',12,18,2,15),(156,2,'2019-08-17',12,25,1,15),(157,2,'2019-08-17',12,32,2,15),(158,2,'2019-08-17',12,39,2,15),(159,2,'2019-08-17',12,46,2,15),(160,2,'2019-08-17',12,53,2,15),(161,2,'2019-08-17',13,4,2,15),(162,2,'2019-08-17',13,11,2,15),(163,2,'2019-08-17',13,18,2,15),(164,2,'2019-08-17',13,25,1,15),(165,2,'2019-08-17',13,32,2,15),(166,2,'2019-08-17',13,39,2,15),(167,2,'2019-08-17',13,46,2,15),(168,2,'2019-08-17',13,53,2,15),(169,2,'2019-08-17',14,4,1,15),(170,2,'2019-08-17',14,11,2,15),(171,2,'2019-08-17',14,18,2,15),(172,2,'2019-08-17',14,25,2,15),(173,2,'2019-08-17',14,32,2,15),(174,2,'2019-08-17',14,39,2,15),(175,2,'2019-08-17',14,46,2,15),(176,2,'2019-08-17',14,53,2,15),(177,2,'2019-08-17',15,4,2,15),(178,2,'2019-08-17',15,11,2,15),(179,2,'2019-08-17',15,18,2,15),(180,2,'2019-08-17',15,25,2,15),(181,2,'2019-08-17',15,32,2,15),(182,2,'2019-08-17',15,39,2,15),(183,2,'2019-08-17',15,46,2,15),(184,2,'2019-08-17',15,53,2,15),(185,2,'2019-08-17',16,4,2,15),(186,2,'2019-08-17',16,11,2,15),(187,2,'2019-08-17',16,18,2,15),(188,2,'2019-08-17',16,25,2,15),(189,2,'2019-08-17',16,32,2,15),(190,2,'2019-08-17',16,39,2,15),(191,2,'2019-08-17',16,46,2,15),(192,2,'2019-08-17',16,53,2,15),(193,2,'2019-08-17',17,11,2,15),(194,2,'2019-08-17',17,18,2,15),(195,2,'2019-08-17',17,25,2,15),(196,2,'2019-08-17',17,32,2,15),(197,2,'2019-08-17',17,39,2,15),(198,2,'2019-08-17',17,46,1,15),(199,2,'2019-08-17',17,53,2,15),(200,2,'2019-08-17',18,4,2,15),(201,2,'2019-08-17',18,11,2,15),(202,2,'2019-08-17',18,18,2,15),(203,2,'2019-08-17',18,25,1,15),(204,2,'2019-08-17',18,32,2,15),(205,2,'2019-08-17',18,39,2,15),(206,2,'2019-08-17',18,46,1,15),(207,2,'2019-08-17',18,53,2,15),(208,2,'2019-08-17',19,4,2,15),(209,2,'2019-08-17',19,11,2,15),(210,2,'2019-08-17',19,18,2,15),(211,2,'2019-08-17',19,25,2,15),(212,2,'2019-08-17',19,32,1,15),(213,2,'2019-08-17',19,39,2,15),(214,2,'2019-08-17',19,46,2,15),(215,2,'2019-08-17',19,53,2,15),(216,2,'2019-08-17',20,4,2,15),(217,2,'2019-08-17',20,11,2,15),(218,2,'2019-08-17',20,18,2,15),(219,2,'2019-08-17',20,25,2,15),(220,2,'2019-08-17',20,32,2,15),(221,2,'2019-08-17',20,39,3,15),(222,2,'2019-08-17',20,46,2,15),(223,2,'2019-08-17',20,53,2,15),(224,2,'2019-08-17',21,4,2,15),(225,2,'2019-08-17',21,11,2,15),(226,2,'2019-08-17',21,18,2,15),(227,2,'2019-08-17',21,25,2,15),(228,2,'2019-08-17',21,32,2,15),(229,2,'2019-08-17',21,39,2,15),(230,2,'2019-08-17',21,46,2,15),(231,2,'2019-08-17',21,53,2,15),(232,2,'2019-08-17',22,4,2,15),(233,2,'2019-08-17',22,11,1,15),(234,2,'2019-08-17',22,18,1,15),(235,2,'2019-08-17',22,25,2,15),(236,2,'2019-08-17',22,32,2,15),(237,2,'2019-08-17',22,39,2,15),(238,2,'2019-08-17',22,46,1,15),(239,2,'2019-08-17',22,53,2,15),(240,2,'2019-08-17',23,4,1,15),(241,2,'2019-08-17',23,11,2,15),(242,2,'2019-08-17',23,18,2,15),(243,2,'2019-08-17',23,25,2,15),(244,2,'2019-08-17',23,32,1,15),(245,2,'2019-08-17',23,39,2,15),(246,2,'2019-08-17',23,46,2,15),(247,2,'2019-08-17',23,53,2,15),(375,4,'2019-08-17',8,4,2,20),(376,4,'2019-08-17',8,11,2,20),(377,4,'2019-08-17',8,18,2,20),(378,4,'2019-08-17',8,25,2,20),(379,4,'2019-08-17',8,32,2,20),(380,4,'2019-08-17',8,39,1,20),(381,4,'2019-08-17',8,46,2,20),(382,4,'2019-08-17',8,53,2,20),(383,4,'2019-08-17',9,4,2,20),(384,4,'2019-08-17',9,4,17,20),(385,4,'2019-08-17',9,11,2,20),(386,4,'2019-08-17',9,18,2,20),(387,4,'2019-08-17',9,24,19,20),(388,4,'2019-08-17',9,25,2,20),(389,4,'2019-08-17',9,32,1,20),(390,4,'2019-08-17',9,39,2,20),(391,4,'2019-08-17',9,46,2,20),(392,4,'2019-08-17',9,53,2,20),(393,4,'2019-08-17',10,4,2,20),(394,4,'2019-08-17',10,11,2,20),(395,4,'2019-08-17',10,18,2,20),(396,4,'2019-08-17',10,25,2,20),(397,4,'2019-08-17',10,32,2,20),(398,4,'2019-08-17',10,39,1,20),(399,4,'2019-08-17',10,46,2,20),(400,4,'2019-08-17',10,53,2,20),(401,4,'2019-08-17',11,4,2,20),(402,4,'2019-08-17',11,11,2,20),(403,4,'2019-08-17',11,18,2,20),(404,4,'2019-08-17',11,25,2,20),(405,4,'2019-08-17',11,32,2,20),(406,4,'2019-08-17',11,39,2,20),(407,4,'2019-08-17',11,46,2,20),(408,4,'2019-08-17',11,53,2,20),(409,4,'2019-08-17',12,4,1,20),(410,4,'2019-08-17',12,11,2,20),(411,4,'2019-08-17',12,18,2,20),(412,4,'2019-08-17',12,25,1,20),(413,4,'2019-08-17',12,32,2,20),(414,4,'2019-08-17',12,39,2,20),(415,4,'2019-08-17',12,46,2,20),(416,4,'2019-08-17',12,53,2,20),(417,4,'2019-08-17',13,4,2,20),(418,4,'2019-08-17',13,11,2,20),(419,4,'2019-08-17',13,18,2,20),(420,4,'2019-08-17',13,25,1,20),(421,4,'2019-08-17',13,32,2,20),(422,4,'2019-08-17',13,39,2,20),(423,4,'2019-08-17',13,46,2,20),(424,4,'2019-08-17',13,53,2,20),(425,4,'2019-08-17',14,4,1,20),(426,4,'2019-08-17',14,11,2,20),(427,4,'2019-08-17',14,18,2,20),(428,4,'2019-08-17',14,25,2,20),(429,4,'2019-08-17',14,32,2,20),(430,4,'2019-08-17',14,39,2,20),(431,4,'2019-08-17',14,46,2,20),(432,4,'2019-08-17',14,53,2,20),(433,4,'2019-08-17',15,4,2,20),(434,4,'2019-08-17',15,11,2,20),(435,4,'2019-08-17',15,18,2,20),(436,4,'2019-08-17',15,25,2,20),(437,4,'2019-08-17',15,32,2,20),(438,4,'2019-08-17',15,39,2,20),(439,4,'2019-08-17',15,46,2,20),(440,4,'2019-08-17',15,53,2,20),(441,4,'2019-08-17',16,4,2,20),(442,4,'2019-08-17',16,11,2,20),(443,4,'2019-08-17',16,18,2,20),(444,4,'2019-08-17',16,25,2,20),(445,4,'2019-08-17',16,32,2,20),(446,4,'2019-08-17',16,39,2,20),(447,4,'2019-08-17',16,46,2,20),(448,4,'2019-08-17',16,53,2,20),(449,4,'2019-08-17',17,11,2,20),(450,4,'2019-08-17',17,18,2,20),(451,4,'2019-08-17',17,25,2,20),(452,4,'2019-08-17',17,32,2,20),(453,4,'2019-08-17',17,39,2,20),(454,4,'2019-08-17',17,46,1,20),(455,4,'2019-08-17',17,53,2,20),(456,4,'2019-08-17',19,11,2,20),(457,4,'2019-08-17',19,18,2,20),(458,4,'2019-08-17',19,25,2,20),(459,4,'2019-08-17',19,32,1,20),(460,4,'2019-08-17',19,39,2,20),(461,4,'2019-08-17',19,46,2,20),(462,4,'2019-08-17',19,53,2,20),(463,4,'2019-08-17',20,4,2,20),(464,4,'2019-08-17',20,11,2,20),(465,4,'2019-08-17',20,18,2,20),(466,4,'2019-08-17',20,25,2,20),(467,4,'2019-08-17',20,32,2,20),(468,4,'2019-08-17',20,39,3,20),(469,4,'2019-08-17',20,46,2,20),(470,4,'2019-08-17',20,53,2,20),(471,4,'2019-08-17',21,4,2,20),(472,4,'2019-08-17',21,11,2,20),(473,4,'2019-08-17',21,18,2,20),(474,4,'2019-08-17',21,25,2,20),(475,4,'2019-08-17',21,32,2,20),(476,4,'2019-08-17',21,39,2,20),(477,4,'2019-08-17',21,46,2,20),(478,4,'2019-08-17',21,53,2,20),(479,4,'2019-08-17',22,4,2,20),(480,4,'2019-08-17',22,11,1,20),(481,4,'2019-08-17',22,18,1,20),(482,4,'2019-08-17',22,25,2,20),(483,4,'2019-08-17',22,32,2,20),(484,4,'2019-08-17',22,39,2,20),(485,4,'2019-08-17',22,46,1,20),(486,4,'2019-08-17',22,53,2,20),(487,4,'2019-08-17',23,4,1,20),(488,4,'2019-08-17',23,11,2,20),(489,4,'2019-08-17',23,18,2,20),(490,4,'2019-08-17',23,25,2,20),(491,4,'2019-08-17',23,32,1,20),(492,4,'2019-08-17',23,39,2,20),(493,4,'2019-08-17',23,46,2,20),(494,4,'2019-08-17',23,53,2,20),(495,5,'2019-08-17',7,4,2,5),(496,5,'2019-08-17',7,11,2,5),(497,5,'2019-08-17',7,18,2,5),(498,5,'2019-08-17',7,25,2,5),(499,5,'2019-08-17',7,39,2,5),(500,5,'2019-08-17',7,46,2,5),(501,5,'2019-08-17',7,53,2,5),(502,5,'2019-08-17',8,4,2,5),(503,5,'2019-08-17',8,11,2,5),(504,5,'2019-08-17',8,18,2,5),(505,5,'2019-08-17',8,25,2,5),(506,5,'2019-08-17',8,32,2,5),(507,5,'2019-08-17',8,39,1,5),(508,5,'2019-08-17',8,46,2,5),(509,5,'2019-08-17',8,53,2,5),(510,5,'2019-08-17',9,4,2,5),(511,5,'2019-08-17',9,11,2,5),(512,5,'2019-08-17',9,18,2,5),(513,5,'2019-08-17',9,25,2,5),(514,5,'2019-08-17',9,32,1,5),(515,5,'2019-08-17',9,39,2,5),(516,5,'2019-08-17',9,46,2,5),(517,5,'2019-08-17',9,53,2,5),(518,5,'2019-08-17',10,4,2,5),(519,5,'2019-08-17',10,11,2,5),(520,5,'2019-08-17',10,18,2,5),(521,5,'2019-08-17',10,25,2,5),(522,5,'2019-08-17',10,32,2,5),(523,5,'2019-08-17',10,39,1,5),(524,5,'2019-08-17',10,46,2,5),(525,5,'2019-08-17',10,53,2,5),(526,5,'2019-08-17',11,4,2,5),(527,5,'2019-08-17',11,11,2,5),(528,5,'2019-08-17',11,18,2,5),(529,5,'2019-08-17',11,25,2,5),(530,5,'2019-08-17',11,32,2,5),(531,5,'2019-08-17',11,39,2,5),(532,5,'2019-08-17',11,46,2,5),(533,5,'2019-08-17',11,53,2,5),(534,5,'2019-08-17',12,4,1,5),(535,5,'2019-08-17',12,11,2,5),(536,5,'2019-08-17',12,18,2,5),(537,5,'2019-08-17',12,25,1,5),(538,5,'2019-08-17',12,32,2,5),(539,5,'2019-08-17',12,39,2,5),(540,5,'2019-08-17',12,46,2,5),(541,5,'2019-08-17',12,53,2,5),(542,5,'2019-08-17',13,4,2,5),(543,5,'2019-08-17',13,11,2,5),(544,5,'2019-08-17',13,18,2,5),(545,5,'2019-08-17',13,25,1,5),(546,5,'2019-08-17',13,32,2,5),(547,5,'2019-08-17',13,39,2,5),(548,5,'2019-08-17',13,46,2,5),(549,5,'2019-08-17',13,53,2,5),(550,5,'2019-08-17',14,4,1,5),(551,5,'2019-08-17',14,11,2,5),(552,5,'2019-08-17',14,18,2,5),(553,5,'2019-08-17',14,25,2,5),(554,5,'2019-08-17',14,32,2,5),(555,5,'2019-08-17',14,39,2,5),(556,5,'2019-08-17',14,46,2,5),(557,5,'2019-08-17',14,53,2,5),(558,5,'2019-08-17',15,4,2,5),(559,5,'2019-08-17',15,11,2,5),(560,5,'2019-08-17',15,18,2,5),(561,5,'2019-08-17',15,25,2,5),(562,5,'2019-08-17',15,32,2,5),(563,5,'2019-08-17',15,39,2,5),(564,5,'2019-08-17',15,46,2,5),(565,5,'2019-08-17',15,53,2,5),(566,5,'2019-08-17',16,4,2,5),(567,5,'2019-08-17',16,11,2,5),(568,5,'2019-08-17',16,18,2,5),(569,5,'2019-08-17',16,25,2,5),(570,5,'2019-08-17',16,32,2,5),(571,5,'2019-08-17',16,39,2,5),(572,5,'2019-08-17',16,46,2,5),(573,5,'2019-08-17',16,53,2,5),(574,5,'2019-08-17',17,11,2,5),(575,5,'2019-08-17',17,18,2,5),(576,5,'2019-08-17',17,25,2,5),(577,5,'2019-08-17',17,32,2,5),(578,5,'2019-08-17',17,39,2,5),(579,5,'2019-08-17',17,46,1,5),(580,5,'2019-08-17',17,53,2,5),(581,5,'2019-08-17',18,4,2,5),(582,5,'2019-08-17',18,11,2,5),(583,5,'2019-08-17',18,18,2,5),(584,5,'2019-08-17',18,25,1,5),(585,5,'2019-08-17',18,32,2,5),(586,5,'2019-08-17',18,39,2,5),(587,5,'2019-08-17',18,46,1,5),(588,5,'2019-08-17',18,50,26,5),(589,5,'2019-08-17',18,53,2,5),(590,5,'2019-08-17',19,4,2,5),(591,5,'2019-08-17',19,11,2,5),(592,5,'2019-08-17',19,18,2,5),(593,5,'2019-08-17',19,25,2,5),(594,5,'2019-08-17',19,32,1,5),(595,5,'2019-08-17',19,39,2,5),(596,5,'2019-08-17',19,46,2,5),(597,5,'2019-08-17',19,53,2,5),(598,5,'2019-08-17',20,4,2,5),(599,5,'2019-08-17',20,11,2,5),(600,5,'2019-08-17',20,18,2,5),(601,5,'2019-08-17',20,25,2,5),(602,5,'2019-08-17',20,32,2,5),(603,5,'2019-08-17',20,39,3,5),(604,5,'2019-08-17',20,46,2,5),(605,5,'2019-08-17',20,53,2,5),(606,5,'2019-08-17',21,4,2,5),(607,5,'2019-08-17',21,11,2,5),(608,5,'2019-08-17',21,18,2,5),(609,5,'2019-08-17',21,25,2,5),(610,5,'2019-08-17',21,32,2,5),(611,5,'2019-08-17',21,39,2,5),(612,5,'2019-08-17',21,46,2,5),(613,5,'2019-08-17',21,53,2,5),(614,5,'2019-08-17',22,4,2,5),(615,5,'2019-08-17',22,11,1,5),(616,5,'2019-08-17',22,18,1,5),(617,5,'2019-08-17',22,25,2,5),(618,5,'2019-08-17',22,32,2,5),(619,5,'2019-08-17',22,39,2,5),(620,5,'2019-08-17',22,46,1,5),(621,5,'2019-08-17',22,53,2,5),(622,5,'2019-08-17',23,4,1,5),(623,5,'2019-08-17',23,11,2,5),(624,5,'2019-08-17',23,18,2,5),(625,5,'2019-08-17',23,25,2,5),(626,5,'2019-08-17',23,32,1,5),(627,5,'2019-08-17',23,39,2,5),(628,5,'2019-08-17',23,46,2,5),(629,5,'2019-08-17',23,53,2,5),(630,9,'2019-08-17',7,4,2,20),(631,9,'2019-08-17',7,11,2,20),(632,9,'2019-08-17',7,18,2,20),(633,9,'2019-08-17',7,25,2,20),(634,9,'2019-08-17',7,39,2,20),(635,9,'2019-08-17',7,46,2,20),(636,9,'2019-08-17',7,53,2,20),(693,9,'2019-08-17',14,53,12,20),(714,9,'2019-08-17',17,33,6,20),(718,9,'2019-08-17',18,4,2,20),(719,9,'2019-08-17',18,11,2,20),(720,9,'2019-08-17',18,18,2,20),(721,9,'2019-08-17',18,25,1,20),(722,9,'2019-08-17',18,32,2,20),(723,9,'2019-08-17',18,39,2,20),(724,9,'2019-08-17',18,46,1,20),(725,9,'2019-08-17',18,53,2,20),(726,9,'2019-08-17',19,4,2,20),(896,11,'2019-08-17',9,4,2,10),(897,11,'2019-08-17',9,11,2,10),(898,11,'2019-08-17',9,18,2,10),(899,11,'2019-08-17',9,25,2,10),(900,11,'2019-08-17',9,32,1,10),(901,11,'2019-08-17',9,39,2,10),(902,11,'2019-08-17',9,46,2,10),(903,11,'2019-08-17',9,53,2,10),(904,11,'2019-08-17',10,4,2,10),(905,11,'2019-08-17',10,11,2,10),(906,11,'2019-08-17',10,18,2,10),(907,11,'2019-08-17',10,25,2,10),(908,11,'2019-08-17',10,32,2,10),(909,11,'2019-08-17',10,39,1,10),(910,11,'2019-08-17',10,46,2,10),(911,11,'2019-08-17',10,53,2,10),(912,11,'2019-08-17',11,4,2,10),(913,11,'2019-08-17',11,11,2,10),(914,11,'2019-08-17',11,18,2,10),(915,11,'2019-08-17',11,25,2,10),(916,11,'2019-08-17',11,32,2,10),(917,11,'2019-08-17',11,39,2,10),(918,11,'2019-08-17',11,46,2,10),(919,11,'2019-08-17',11,53,2,10),(920,11,'2019-08-17',12,4,1,10),(921,11,'2019-08-17',12,11,2,10),(922,11,'2019-08-17',12,18,2,10),(923,11,'2019-08-17',12,25,1,10),(924,11,'2019-08-17',12,32,2,10),(925,11,'2019-08-17',12,39,2,10),(926,11,'2019-08-17',12,46,2,10),(927,11,'2019-08-17',12,53,2,10),(928,11,'2019-08-17',13,4,2,10),(929,11,'2019-08-17',13,11,2,10),(930,11,'2019-08-17',13,18,2,10),(931,11,'2019-08-17',13,25,1,10),(932,11,'2019-08-17',13,32,2,10),(933,11,'2019-08-17',13,39,2,10),(934,11,'2019-08-17',13,46,2,10),(935,11,'2019-08-17',13,53,2,10),(936,11,'2019-08-17',14,4,1,10),(937,11,'2019-08-17',14,11,2,10),(938,11,'2019-08-17',14,18,2,10),(939,11,'2019-08-17',14,25,2,10),(940,11,'2019-08-17',14,32,2,10),(941,11,'2019-08-17',14,39,2,10),(942,11,'2019-08-17',14,46,2,10),(943,11,'2019-08-17',14,53,2,10),(944,11,'2019-08-17',15,4,2,10),(945,11,'2019-08-17',15,11,2,10),(946,11,'2019-08-17',15,18,2,10),(947,11,'2019-08-17',15,25,2,10),(948,11,'2019-08-17',15,32,2,10),(949,11,'2019-08-17',15,39,2,10),(950,11,'2019-08-17',15,46,2,10),(951,11,'2019-08-17',15,53,2,10),(952,11,'2019-08-17',16,4,2,10),(953,11,'2019-08-17',16,25,2,10),(954,11,'2019-08-17',16,32,2,10),(955,11,'2019-08-17',16,39,2,10),(956,11,'2019-08-17',16,46,2,10),(957,11,'2019-08-17',16,53,2,10),(958,11,'2019-08-17',17,11,2,10),(959,11,'2019-08-17',17,18,2,10),(960,11,'2019-08-17',17,25,2,10),(961,11,'2019-08-17',17,32,2,10),(962,11,'2019-08-17',17,39,2,10),(963,11,'2019-08-17',17,46,1,10),(964,11,'2019-08-17',17,53,2,10),(965,11,'2019-08-17',18,4,2,10),(966,11,'2019-08-17',18,11,2,10),(967,11,'2019-08-17',18,18,2,10),(968,11,'2019-08-17',18,25,1,10),(969,11,'2019-08-17',18,32,2,10),(970,11,'2019-08-17',18,39,2,10),(971,11,'2019-08-17',18,46,1,10),(972,11,'2019-08-17',18,53,2,10),(973,11,'2019-08-17',19,4,2,10),(974,11,'2019-08-17',19,11,2,10),(975,11,'2019-08-17',19,18,2,10),(976,11,'2019-08-17',19,25,2,10),(977,11,'2019-08-17',19,32,1,10),(978,11,'2019-08-17',19,39,2,10),(979,11,'2019-08-17',19,46,2,10),(980,11,'2019-08-17',19,53,2,10),(981,11,'2019-08-17',20,4,2,10),(982,11,'2019-08-17',20,11,2,10),(983,11,'2019-08-17',20,18,2,10),(984,11,'2019-08-17',20,25,2,10),(985,11,'2019-08-17',20,32,2,10),(994,12,'2019-08-17',9,1,32,5),(1009,12,'2019-08-17',10,41,42,5),(1115,13,'2019-08-17',8,4,2,25),(1116,13,'2019-08-17',8,11,2,25),(1117,13,'2019-08-17',8,18,2,25),(1118,13,'2019-08-17',8,25,2,25),(1119,13,'2019-08-17',8,28,31,25),(1120,13,'2019-08-17',8,32,2,25),(1121,13,'2019-08-17',8,39,1,25),(1122,13,'2019-08-17',8,45,33,25),(1123,13,'2019-08-17',8,46,2,25),(1124,13,'2019-08-17',8,53,2,25),(1125,13,'2019-08-17',9,4,2,25),(1126,13,'2019-08-17',9,11,2,25),(1127,13,'2019-08-17',9,18,2,25),(1128,13,'2019-08-17',9,25,2,25),(1129,13,'2019-08-17',9,32,1,25),(1130,13,'2019-08-17',9,39,2,25),(1131,13,'2019-08-17',9,46,2,25),(1132,13,'2019-08-17',9,53,2,25),(1133,13,'2019-08-17',10,4,2,25),(1134,13,'2019-08-17',10,11,2,25),(1135,13,'2019-08-17',10,18,2,25),(1136,13,'2019-08-17',10,25,2,25),(1137,13,'2019-08-17',10,32,2,25),(1138,13,'2019-08-17',10,39,1,25),(1139,13,'2019-08-17',10,46,2,25),(1140,13,'2019-08-17',10,53,2,25),(1141,13,'2019-08-17',11,4,2,25),(1142,13,'2019-08-17',11,11,2,25),(1143,13,'2019-08-17',11,18,2,25),(1144,13,'2019-08-17',11,25,2,25),(1145,13,'2019-08-17',11,32,2,25),(1146,13,'2019-08-17',11,39,2,25),(1147,13,'2019-08-17',11,46,2,25),(1148,13,'2019-08-17',11,53,2,25),(1149,13,'2019-08-17',12,4,1,25),(1150,13,'2019-08-17',12,11,2,25),(1151,13,'2019-08-17',12,39,2,25),(1152,13,'2019-08-17',12,46,2,25),(1153,13,'2019-08-17',12,53,2,25),(1154,13,'2019-08-17',13,4,2,25),(1155,13,'2019-08-17',13,11,2,25),(1156,13,'2019-08-17',13,18,2,25),(1157,13,'2019-08-17',13,25,1,25),(1158,13,'2019-08-17',13,32,2,25),(1159,13,'2019-08-17',13,39,2,25),(1160,13,'2019-08-17',13,46,2,25),(1161,13,'2019-08-17',13,53,2,25),(1162,13,'2019-08-17',14,4,1,25),(1163,13,'2019-08-17',14,11,2,25),(1164,13,'2019-08-17',14,18,2,25),(1165,13,'2019-08-17',14,25,2,25),(1166,13,'2019-08-17',14,32,2,25),(1167,13,'2019-08-17',14,39,2,25),(1168,13,'2019-08-17',14,46,2,25),(1169,13,'2019-08-17',14,53,2,25),(1170,13,'2019-08-17',15,4,2,25),(1171,13,'2019-08-17',15,11,2,25),(1172,13,'2019-08-17',15,18,2,25),(1173,13,'2019-08-17',15,25,2,25),(1174,13,'2019-08-17',15,32,2,25),(1175,13,'2019-08-17',15,39,2,25),(1176,13,'2019-08-17',15,46,2,25),(1177,13,'2019-08-17',15,53,2,25),(1178,13,'2019-08-17',16,4,2,25),(1179,13,'2019-08-17',16,11,2,25),(1180,13,'2019-08-17',16,18,2,25),(1181,13,'2019-08-17',16,25,2,25),(1182,13,'2019-08-17',16,32,2,25),(1183,13,'2019-08-17',16,39,2,25),(1184,13,'2019-08-17',16,46,2,25),(1185,13,'2019-08-17',16,53,2,25),(1186,13,'2019-08-17',17,11,2,25),(1187,13,'2019-08-17',17,18,2,25),(1188,13,'2019-08-17',17,25,2,25),(1189,13,'2019-08-17',17,32,2,25),(1190,13,'2019-08-17',17,39,2,25),(1191,13,'2019-08-17',17,46,1,25),(1192,13,'2019-08-17',17,53,2,25),(1193,13,'2019-08-17',19,4,2,25),(1194,13,'2019-08-17',19,11,2,25),(1195,13,'2019-08-17',19,18,2,25),(1196,13,'2019-08-17',19,25,2,25),(1197,13,'2019-08-17',19,32,1,25),(1198,13,'2019-08-17',19,39,2,25),(1199,13,'2019-08-17',19,46,2,25),(1200,13,'2019-08-17',19,53,2,25),(1201,13,'2019-08-17',20,4,2,25),(1202,13,'2019-08-17',20,11,2,25),(1203,13,'2019-08-17',20,18,2,25),(1204,13,'2019-08-17',20,25,2,25),(1205,13,'2019-08-17',20,32,2,25),(1206,13,'2019-08-17',20,39,3,25),(1207,13,'2019-08-17',20,46,2,25),(1208,13,'2019-08-17',20,53,2,25),(1209,13,'2019-08-17',21,11,2,25),(1210,13,'2019-08-17',21,18,2,25),(1211,13,'2019-08-17',22,46,1,25),(1212,13,'2019-08-17',22,53,2,25),(1213,13,'2019-08-17',23,4,1,25),(1214,13,'2019-08-17',23,11,2,25),(1215,13,'2019-08-17',23,18,2,25),(1216,13,'2019-08-17',23,25,2,25),(1217,13,'2019-08-17',23,32,1,25),(1218,13,'2019-08-17',23,39,2,25),(1219,13,'2019-08-17',23,46,2,25),(1220,13,'2019-08-17',23,53,2,25),(1280,14,'2019-08-17',15,32,49,15),(1351,15,'2019-08-17',8,28,2,15),(1420,15,'2019-08-17',16,58,51,15),(1440,15,'2019-08-17',19,30,22,15),(1607,19,'2019-08-17',7,39,54,20),(1629,19,'2019-08-17',10,23,6,20),(1738,20,'2019-08-17',9,4,2,40),(1739,20,'2019-08-17',9,11,2,40),(1740,20,'2019-08-17',9,18,2,40),(1741,20,'2019-08-17',9,53,2,40),(1742,20,'2019-08-17',10,4,2,40),(1743,20,'2019-08-17',10,11,2,40),(1744,20,'2019-08-17',10,18,2,40),(1745,20,'2019-08-17',10,25,2,40),(1746,20,'2019-08-17',10,32,2,40),(1747,20,'2019-08-17',10,39,1,40),(1748,20,'2019-08-17',10,46,2,40),(1749,20,'2019-08-17',10,53,2,40),(1750,20,'2019-08-17',11,4,2,40),(1751,20,'2019-08-17',11,11,2,40),(1752,20,'2019-08-17',11,18,2,40),(1753,20,'2019-08-17',11,25,2,40),(1754,20,'2019-08-17',11,32,2,40),(1755,20,'2019-08-17',11,39,2,40),(1756,20,'2019-08-17',11,46,2,40),(1757,20,'2019-08-17',11,53,2,40),(1758,20,'2019-08-17',12,4,1,40),(1759,20,'2019-08-17',12,11,2,40),(1760,20,'2019-08-17',12,18,2,40),(1761,20,'2019-08-17',12,25,1,40),(1762,20,'2019-08-17',12,32,2,40),(1763,20,'2019-08-17',12,39,2,40),(1764,20,'2019-08-17',12,46,2,40),(1765,20,'2019-08-17',12,53,2,40),(1766,20,'2019-08-17',13,4,2,40),(1767,20,'2019-08-17',13,11,2,40),(1768,20,'2019-08-17',13,18,2,40),(1769,20,'2019-08-17',13,25,1,40),(1770,20,'2019-08-17',13,32,2,40),(1771,20,'2019-08-17',13,39,2,40),(1772,20,'2019-08-17',13,46,2,40),(1773,20,'2019-08-17',13,53,2,40),(1774,20,'2019-08-17',14,4,1,40),(1775,20,'2019-08-17',14,11,2,40),(1776,20,'2019-08-17',14,18,2,40),(1777,20,'2019-08-17',14,25,2,40),(1778,20,'2019-08-17',14,32,2,40),(1779,20,'2019-08-17',14,39,2,40),(1780,20,'2019-08-17',14,46,2,40),(1781,20,'2019-08-17',14,53,2,40),(1782,20,'2019-08-17',15,4,2,40),(1783,20,'2019-08-17',15,11,2,40),(1784,20,'2019-08-17',15,18,2,40),(1785,20,'2019-08-17',15,25,2,40),(1786,20,'2019-08-17',15,32,2,40),(1787,20,'2019-08-17',15,39,2,40),(1788,20,'2019-08-17',15,46,2,40),(1789,20,'2019-08-17',15,53,2,40),(1790,20,'2019-08-17',16,4,2,40),(1791,20,'2019-08-17',16,11,2,40),(1792,20,'2019-08-17',16,18,2,40),(1793,20,'2019-08-17',16,25,2,40),(1794,20,'2019-08-17',16,32,2,40),(1795,20,'2019-08-17',16,39,2,40),(1796,20,'2019-08-17',16,46,2,40),(1797,20,'2019-08-17',16,53,2,40),(1798,20,'2019-08-17',17,11,2,40),(1799,20,'2019-08-17',17,18,2,40),(1800,20,'2019-08-17',17,25,2,40),(1801,20,'2019-08-17',17,32,2,40),(1802,20,'2019-08-17',17,39,2,40),(1803,20,'2019-08-17',17,46,1,40),(1804,20,'2019-08-17',17,53,2,40),(1805,20,'2019-08-17',18,4,2,40),(1806,20,'2019-08-17',18,11,2,40),(1807,20,'2019-08-17',18,18,2,40),(1808,20,'2019-08-17',18,25,1,40),(1809,20,'2019-08-17',18,32,2,40),(1810,20,'2019-08-17',18,39,2,40),(1811,20,'2019-08-17',18,46,1,40),(1812,20,'2019-08-17',18,53,2,40),(1813,20,'2019-08-17',19,4,2,40),(1814,20,'2019-08-17',19,11,2,40),(1815,20,'2019-08-17',19,18,2,40),(1816,20,'2019-08-17',19,25,2,40),(1817,20,'2019-08-17',19,32,1,40),(1818,20,'2019-08-17',19,39,2,40),(1819,20,'2019-08-17',19,46,2,40),(1820,20,'2019-08-17',19,53,2,40),(1821,20,'2019-08-17',20,4,2,40),(1822,20,'2019-08-17',20,11,2,40),(1823,20,'2019-08-17',20,18,2,40),(1824,20,'2019-08-17',20,25,2,40),(1825,20,'2019-08-17',20,32,2,40),(1826,21,'2019-08-17',8,4,2,30),(1827,21,'2019-08-17',8,11,2,30),(1828,21,'2019-08-17',8,18,2,30),(1829,21,'2019-08-17',8,25,2,30),(1830,21,'2019-08-17',8,32,2,30),(1831,21,'2019-08-17',8,39,1,30),(1832,21,'2019-08-17',8,46,2,30),(1833,21,'2019-08-17',8,53,2,30),(1834,21,'2019-08-17',9,24,29,30),(1835,21,'2019-08-17',9,25,2,30),(1836,21,'2019-08-17',9,32,1,30),(1837,21,'2019-08-17',9,39,2,30),(1838,21,'2019-08-17',9,46,2,30),(1839,21,'2019-08-17',9,53,2,30),(1840,21,'2019-08-17',10,4,2,30),(1841,21,'2019-08-17',10,11,2,30),(1842,21,'2019-08-17',10,18,2,30),(1843,21,'2019-08-17',10,25,2,30),(1844,21,'2019-08-17',10,32,2,30),(1845,21,'2019-08-17',10,39,1,30),(1846,21,'2019-08-17',10,46,2,30),(1847,21,'2019-08-17',10,53,2,30),(1848,21,'2019-08-17',11,4,2,30),(1849,21,'2019-08-17',11,11,2,30),(1850,21,'2019-08-17',11,18,2,30),(1851,21,'2019-08-17',11,25,2,30),(1852,21,'2019-08-17',11,32,2,30),(1853,21,'2019-08-17',11,39,2,30),(1854,21,'2019-08-17',11,46,2,30),(1855,21,'2019-08-17',11,53,2,30),(1856,21,'2019-08-17',12,4,1,30),(1857,21,'2019-08-17',12,11,2,30),(1858,21,'2019-08-17',12,18,2,30),(1859,21,'2019-08-17',12,25,1,30),(1860,21,'2019-08-17',12,32,2,30),(1861,21,'2019-08-17',12,39,2,30),(1862,21,'2019-08-17',12,46,2,30),(1863,21,'2019-08-17',12,53,2,30),(1864,21,'2019-08-17',13,4,2,30),(1865,21,'2019-08-17',13,11,2,30),(1866,21,'2019-08-17',13,18,2,30),(1867,21,'2019-08-17',13,25,1,30),(1868,21,'2019-08-17',13,32,2,30),(1869,21,'2019-08-17',13,39,2,30),(1870,21,'2019-08-17',13,46,2,30),(1871,21,'2019-08-17',13,52,56,30),(1872,21,'2019-08-17',13,53,2,30),(1873,21,'2019-08-17',14,4,1,30),(1874,21,'2019-08-17',14,11,2,30),(1875,21,'2019-08-17',14,18,2,30),(1876,21,'2019-08-17',14,25,2,30),(1877,21,'2019-08-17',14,32,2,30),(1878,21,'2019-08-17',14,39,2,30),(1879,21,'2019-08-17',14,46,2,30),(1880,21,'2019-08-17',14,53,2,30),(1881,21,'2019-08-17',15,11,2,30),(1882,21,'2019-08-17',15,18,2,30),(1883,21,'2019-08-17',15,25,2,30),(1884,21,'2019-08-17',15,32,2,30),(1885,21,'2019-08-17',15,39,2,30),(1886,21,'2019-08-17',15,46,2,30),(1887,21,'2019-08-17',15,53,2,30),(1888,21,'2019-08-17',16,4,2,30),(1889,21,'2019-08-17',16,11,2,30),(1890,21,'2019-08-17',16,18,2,30),(1891,21,'2019-08-17',16,25,2,30),(1892,21,'2019-08-17',16,32,2,30),(1893,21,'2019-08-17',16,39,2,30),(1894,21,'2019-08-17',16,46,2,30),(1895,21,'2019-08-17',16,53,2,30),(1896,21,'2019-08-17',17,11,2,30),(1897,21,'2019-08-17',17,18,2,30),(1898,21,'2019-08-17',17,25,2,30),(1899,21,'2019-08-17',17,32,2,30),(1900,21,'2019-08-17',17,39,2,30),(1901,21,'2019-08-17',17,46,1,30),(1902,21,'2019-08-17',17,53,2,30),(1903,21,'2019-08-17',18,4,2,30),(1904,21,'2019-08-17',18,11,2,30),(1905,21,'2019-08-17',18,18,2,30),(1906,21,'2019-08-17',18,25,1,30),(1907,21,'2019-08-17',18,32,2,30),(1908,21,'2019-08-17',18,39,2,30),(1909,21,'2019-08-17',18,46,1,30),(1910,21,'2019-08-17',18,53,2,30),(1911,21,'2019-08-17',19,4,2,30),(1912,21,'2019-08-17',19,11,2,30),(1913,21,'2019-08-17',19,18,2,30),(1914,21,'2019-08-17',19,25,2,30),(1915,21,'2019-08-17',19,32,1,30),(1916,21,'2019-08-17',19,39,2,30),(1917,21,'2019-08-17',19,46,2,30),(1918,21,'2019-08-17',19,53,2,30),(1919,21,'2019-08-17',20,4,2,30),(1920,21,'2019-08-17',20,11,2,30),(1921,21,'2019-08-17',20,18,2,30),(1922,21,'2019-08-17',20,25,2,30),(1923,21,'2019-08-17',20,32,2,30),(1924,21,'2019-08-17',20,33,2,30),(1925,21,'2019-08-17',20,39,3,30),(1926,21,'2019-08-17',20,46,2,30),(1927,21,'2019-08-17',20,53,2,30),(1928,21,'2019-08-17',21,4,2,30),(1929,21,'2019-08-17',21,11,2,30),(1930,21,'2019-08-17',21,18,2,30),(1931,21,'2019-08-17',21,25,2,30),(1932,21,'2019-08-17',21,32,2,30),(1933,21,'2019-08-17',21,39,2,30),(1934,21,'2019-08-17',21,46,2,30),(1935,21,'2019-08-17',21,53,2,30),(1936,21,'2019-08-17',22,4,2,30),(1937,21,'2019-08-17',22,11,1,30),(1938,21,'2019-08-17',22,18,1,30),(1939,21,'2019-08-17',22,25,2,30),(1940,21,'2019-08-17',22,32,2,30),(1941,21,'2019-08-17',22,39,2,30),(1942,21,'2019-08-17',22,46,1,30),(1943,21,'2019-08-17',22,53,2,30),(1944,21,'2019-08-17',23,4,1,30),(1945,21,'2019-08-17',23,11,2,30),(1946,21,'2019-08-17',23,18,2,30),(1947,21,'2019-08-17',23,25,2,30),(1948,21,'2019-08-17',23,32,1,30),(1949,21,'2019-08-17',23,39,2,30),(1950,21,'2019-08-17',23,46,2,30),(1951,21,'2019-08-17',23,53,2,30),(2025,23,'2019-08-17',17,13,49,15),(2030,23,'2019-08-17',17,44,53,15),(2073,24,'2019-08-17',7,4,2,50),(2074,24,'2019-08-17',7,11,2,50),(2075,24,'2019-08-17',7,18,2,50),(2076,24,'2019-08-17',7,25,2,50),(2077,24,'2019-08-17',7,39,2,50),(2078,24,'2019-08-17',7,46,2,50),(2079,24,'2019-08-17',7,53,2,50),(2080,24,'2019-08-17',8,4,2,50),(2081,24,'2019-08-17',8,11,2,50),(2082,24,'2019-08-17',8,18,2,50),(2083,24,'2019-08-17',8,25,2,50),(2084,24,'2019-08-17',8,32,2,50),(2085,24,'2019-08-17',8,39,1,50),(2086,24,'2019-08-17',8,46,2,50),(2087,24,'2019-08-17',8,53,2,50),(2088,24,'2019-08-17',9,4,2,50),(2089,24,'2019-08-17',9,11,2,50),(2090,24,'2019-08-17',9,18,2,50),(2091,24,'2019-08-17',9,25,2,50),(2092,24,'2019-08-17',9,32,1,50),(2093,24,'2019-08-17',9,39,2,50),(2094,24,'2019-08-17',9,46,2,50),(2095,24,'2019-08-17',9,53,2,50),(2096,24,'2019-08-17',10,4,2,50),(2097,24,'2019-08-17',10,11,2,50),(2098,24,'2019-08-17',10,18,2,50),(2099,24,'2019-08-17',10,25,2,50),(2100,24,'2019-08-17',10,32,2,50),(2101,24,'2019-08-17',10,39,1,50),(2102,24,'2019-08-17',10,46,2,50),(2103,24,'2019-08-17',10,53,2,50),(2104,24,'2019-08-17',11,4,2,50),(2105,24,'2019-08-17',11,11,2,50),(2106,24,'2019-08-17',11,18,2,50),(2107,24,'2019-08-17',11,25,2,50),(2108,24,'2019-08-17',11,32,2,50),(2109,24,'2019-08-17',11,39,2,50),(2110,24,'2019-08-17',11,46,2,50),(2111,24,'2019-08-17',11,53,2,50),(2112,24,'2019-08-17',12,4,1,50),(2113,24,'2019-08-17',12,11,2,50),(2114,24,'2019-08-17',12,18,2,50),(2115,24,'2019-08-17',12,25,1,50),(2116,24,'2019-08-17',12,32,2,50),(2117,24,'2019-08-17',12,39,2,50),(2118,24,'2019-08-17',12,46,2,50),(2119,24,'2019-08-17',12,53,2,50),(2120,24,'2019-08-17',13,4,2,50),(2121,24,'2019-08-17',13,11,2,50),(2122,24,'2019-08-17',13,18,2,50),(2123,24,'2019-08-17',13,25,1,50),(2124,24,'2019-08-17',13,32,2,50),(2125,24,'2019-08-17',13,39,2,50),(2126,24,'2019-08-17',13,46,2,50),(2127,24,'2019-08-17',13,53,2,50),(2128,24,'2019-08-17',14,4,1,50),(2129,24,'2019-08-17',14,11,2,50),(2130,24,'2019-08-17',14,18,2,50),(2131,24,'2019-08-17',14,25,2,50),(2132,24,'2019-08-17',14,32,2,50),(2133,24,'2019-08-17',14,39,2,50),(2134,24,'2019-08-17',14,46,2,50),(2135,24,'2019-08-17',14,53,2,50),(2136,24,'2019-08-17',15,4,2,50),(2137,24,'2019-08-17',15,11,2,50),(2138,24,'2019-08-17',15,18,2,50),(2139,24,'2019-08-17',15,25,2,50),(2140,24,'2019-08-17',15,32,2,50),(2141,24,'2019-08-17',15,39,2,50),(2142,24,'2019-08-17',15,46,2,50),(2143,24,'2019-08-17',15,53,2,50),(2144,24,'2019-08-17',16,4,2,50),(2145,24,'2019-08-17',16,11,2,50),(2146,24,'2019-08-17',16,18,2,50),(2147,24,'2019-08-17',16,25,2,50),(2148,24,'2019-08-17',16,32,2,50),(2149,24,'2019-08-17',16,39,2,50),(2150,24,'2019-08-17',16,46,2,50),(2151,24,'2019-08-17',16,53,2,50),(2152,24,'2019-08-17',17,11,2,50),(2153,24,'2019-08-17',17,18,2,50),(2154,24,'2019-08-17',17,25,2,50),(2155,24,'2019-08-17',17,32,2,50),(2156,24,'2019-08-17',17,39,2,50),(2157,24,'2019-08-17',17,46,1,50),(2158,24,'2019-08-17',17,53,2,50),(2159,24,'2019-08-17',18,4,2,50),(2160,24,'2019-08-17',18,11,2,50),(2161,24,'2019-08-17',18,18,2,50),(2162,24,'2019-08-17',18,25,1,50),(2163,24,'2019-08-17',18,32,2,50),(2164,24,'2019-08-17',18,39,2,50),(2165,24,'2019-08-17',18,46,1,50),(2166,24,'2019-08-17',18,53,2,50),(2167,24,'2019-08-17',19,4,2,50),(2168,24,'2019-08-17',19,11,2,50),(2169,24,'2019-08-17',19,18,2,50),(2170,24,'2019-08-17',19,25,2,50),(2171,24,'2019-08-17',19,32,1,50),(2172,24,'2019-08-17',19,39,2,50),(2173,24,'2019-08-17',19,46,2,50),(2174,24,'2019-08-17',19,53,2,50),(2175,24,'2019-08-17',20,4,2,50),(2176,24,'2019-08-17',20,11,2,50),(2177,24,'2019-08-17',20,18,2,50),(2178,24,'2019-08-17',20,25,2,50),(2179,24,'2019-08-17',20,32,2,50),(2180,24,'2019-08-17',20,39,3,50),(2181,24,'2019-08-17',20,46,2,50),(2182,24,'2019-08-17',22,11,1,50),(2183,24,'2019-08-17',22,18,1,50),(2184,24,'2019-08-17',22,25,2,50),(2185,24,'2019-08-17',22,32,2,50),(2186,24,'2019-08-17',22,39,2,50),(2187,24,'2019-08-17',22,46,1,50),(2188,24,'2019-08-17',22,53,2,50),(2189,24,'2019-08-17',23,4,1,50),(2190,24,'2019-08-17',23,11,2,50),(2191,24,'2019-08-17',23,18,2,50),(2192,24,'2019-08-17',23,25,2,50),(2193,24,'2019-08-17',23,32,1,50),(2194,24,'2019-08-17',23,39,2,50),(2195,24,'2019-08-17',23,46,2,50),(2196,24,'2019-08-17',23,53,2,50),(2205,27,'2019-08-17',9,3,40,5),(2219,27,'2019-08-17',10,40,36,5),(2223,27,'2019-08-17',11,5,47,5),(2543,35,'2019-08-17',7,4,2,80),(2544,35,'2019-08-17',7,11,2,80),(2545,35,'2019-08-17',7,18,2,80),(2546,35,'2019-08-17',7,25,2,80),(2547,35,'2019-08-17',7,39,2,80),(2548,35,'2019-08-17',7,46,2,80),(2549,35,'2019-08-17',7,53,2,80),(2550,35,'2019-08-17',8,1,29,80),(2551,35,'2019-08-17',8,4,2,80),(2552,35,'2019-08-17',8,11,2,80),(2553,35,'2019-08-17',8,13,0,80),(2554,35,'2019-08-17',8,18,2,80),(2555,35,'2019-08-17',8,24,32,80),(2556,35,'2019-08-17',8,25,2,80),(2557,35,'2019-08-17',8,32,2,80),(2558,35,'2019-08-17',8,39,1,80),(2559,35,'2019-08-17',8,46,2,80),(2560,35,'2019-08-17',8,53,2,80),(2561,35,'2019-08-17',9,4,2,80),(2562,35,'2019-08-17',9,11,2,80),(2563,35,'2019-08-17',9,18,2,80),(2564,35,'2019-08-17',9,25,2,80),(2565,35,'2019-08-17',9,32,1,80),(2566,35,'2019-08-17',9,39,2,80),(2567,35,'2019-08-17',9,46,2,80),(2568,35,'2019-08-17',9,53,2,80),(2569,35,'2019-08-17',10,4,2,80),(2570,35,'2019-08-17',10,11,2,80),(2571,35,'2019-08-17',10,18,2,80),(2572,35,'2019-08-17',10,25,2,80),(2573,35,'2019-08-17',10,32,2,80),(2574,35,'2019-08-17',10,39,1,80),(2575,35,'2019-08-17',10,46,2,80),(2576,35,'2019-08-17',10,53,2,80),(2577,35,'2019-08-17',11,4,2,80),(2578,35,'2019-08-17',11,11,2,80),(2579,35,'2019-08-17',11,18,2,80),(2580,35,'2019-08-17',11,25,2,80),(2581,35,'2019-08-17',11,32,2,80),(2582,35,'2019-08-17',11,39,2,80),(2583,35,'2019-08-17',11,46,2,80),(2584,35,'2019-08-17',11,53,2,80),(2585,35,'2019-08-17',12,4,1,80),(2586,35,'2019-08-17',12,11,2,80),(2587,35,'2019-08-17',12,18,2,80),(2588,35,'2019-08-17',12,25,1,80),(2589,35,'2019-08-17',12,32,2,80),(2590,35,'2019-08-17',12,39,2,80),(2591,35,'2019-08-17',12,46,2,80),(2592,35,'2019-08-17',12,53,2,80),(2593,35,'2019-08-17',13,4,2,80),(2594,35,'2019-08-17',13,11,2,80),(2595,35,'2019-08-17',13,18,2,80),(2596,35,'2019-08-17',13,25,1,80),(2597,35,'2019-08-17',13,32,2,80),(2598,35,'2019-08-17',13,39,2,80),(2599,35,'2019-08-17',13,46,2,80),(2600,35,'2019-08-17',13,53,2,80),(2601,35,'2019-08-17',14,4,1,80),(2602,35,'2019-08-17',14,11,2,80),(2603,35,'2019-08-17',14,18,2,80),(2604,35,'2019-08-17',14,25,2,80),(2605,35,'2019-08-17',14,32,2,80),(2606,35,'2019-08-17',14,39,2,80),(2607,35,'2019-08-17',14,46,2,80),(2608,35,'2019-08-17',14,53,2,80),(2609,35,'2019-08-17',15,4,2,80),(2610,35,'2019-08-17',15,11,2,80),(2611,35,'2019-08-17',15,18,2,80),(2612,35,'2019-08-17',15,25,2,80),(2613,35,'2019-08-17',15,32,2,80),(2614,35,'2019-08-17',15,39,2,80),(2615,35,'2019-08-17',15,46,2,80),(2616,35,'2019-08-17',15,53,2,80),(2617,35,'2019-08-17',16,4,2,80),(2618,35,'2019-08-17',16,11,2,80),(2619,35,'2019-08-17',16,18,2,80),(2620,35,'2019-08-17',16,25,2,80),(2621,35,'2019-08-17',16,32,2,80),(2622,35,'2019-08-17',16,39,2,80),(2623,35,'2019-08-17',16,46,2,80),(2624,35,'2019-08-17',16,53,2,80),(2625,35,'2019-08-17',17,11,2,80),(2626,35,'2019-08-17',17,18,2,80),(2627,35,'2019-08-17',17,25,2,80),(2628,35,'2019-08-17',17,32,2,80),(2629,35,'2019-08-17',17,39,2,80),(2630,35,'2019-08-17',17,46,1,80),(2631,35,'2019-08-17',17,53,2,80),(2632,35,'2019-08-17',18,4,2,80),(2633,35,'2019-08-17',18,11,2,80),(2634,35,'2019-08-17',18,18,2,80),(2635,35,'2019-08-17',18,25,1,80),(2636,35,'2019-08-17',18,32,2,80),(2637,35,'2019-08-17',18,39,2,80),(2638,35,'2019-08-17',18,46,1,80),(2639,35,'2019-08-17',18,53,2,80),(2640,35,'2019-08-17',19,4,2,80),(2641,35,'2019-08-17',19,11,2,80),(2642,35,'2019-08-17',19,18,2,80),(2643,35,'2019-08-17',19,25,2,80),(2644,35,'2019-08-17',19,32,1,80),(2645,35,'2019-08-17',19,39,2,80),(2646,35,'2019-08-17',19,46,2,80),(2647,35,'2019-08-17',19,53,2,80),(2648,35,'2019-08-17',20,4,2,80),(2649,35,'2019-08-17',20,11,2,80),(2650,35,'2019-08-17',20,18,2,80),(2651,35,'2019-08-17',20,25,2,80),(2652,35,'2019-08-17',20,32,2,80),(2653,35,'2019-08-17',20,39,3,80),(2654,35,'2019-08-17',20,46,2,80),(2655,35,'2019-08-17',20,53,2,80),(2656,35,'2019-08-17',21,4,2,80),(2657,35,'2019-08-17',21,11,2,80),(2658,35,'2019-08-17',21,18,2,80),(2659,35,'2019-08-17',21,25,2,80),(2660,35,'2019-08-17',21,32,2,80),(2661,35,'2019-08-17',21,39,2,80),(2662,35,'2019-08-17',21,46,2,80),(2663,35,'2019-08-17',21,53,2,80),(2664,35,'2019-08-17',22,4,2,80),(2665,35,'2019-08-17',22,11,1,80),(2666,35,'2019-08-17',22,18,1,80),(2667,35,'2019-08-17',22,25,2,80),(2668,35,'2019-08-17',22,32,2,80),(2669,35,'2019-08-17',22,39,2,80),(2670,35,'2019-08-17',22,46,1,80),(2671,35,'2019-08-17',22,53,2,80),(2672,35,'2019-08-17',23,32,1,80),(2673,35,'2019-08-17',23,39,2,80),(2674,35,'2019-08-17',23,46,2,80),(2675,35,'2019-08-17',23,53,2,80),(2684,36,'2019-08-17',9,2,29,25),(2707,36,'2019-08-17',11,45,3,25),(2712,36,'2019-08-17',12,18,2,25),(2713,36,'2019-08-17',12,25,1,25),(2714,36,'2019-08-17',12,32,2,25),(2757,36,'2019-08-17',18,4,2,25),(2758,36,'2019-08-17',18,11,2,25),(2759,36,'2019-08-17',18,18,2,25),(2760,36,'2019-08-17',18,25,1,25),(2761,36,'2019-08-17',18,32,2,25),(2762,36,'2019-08-17',18,39,2,25),(2763,36,'2019-08-17',18,46,1,25),(2764,36,'2019-08-17',18,53,2,25),(2765,36,'2019-08-17',19,0,12,25),(2782,36,'2019-08-17',21,4,2,25),(2785,36,'2019-08-17',21,25,2,25),(2786,36,'2019-08-17',21,32,2,25),(2787,36,'2019-08-17',21,39,2,25),(2788,36,'2019-08-17',21,46,2,25),(2789,36,'2019-08-17',21,53,2,25),(2790,36,'2019-08-17',22,4,2,25),(2791,36,'2019-08-17',22,11,1,25),(2792,36,'2019-08-17',22,18,1,25),(2793,36,'2019-08-17',22,25,2,25),(2794,36,'2019-08-17',22,32,2,25),(2795,36,'2019-08-17',22,39,2,25),(2806,37,'2019-08-17',7,4,2,25),(2807,37,'2019-08-17',7,11,2,25),(2808,37,'2019-08-17',7,18,2,25),(2809,37,'2019-08-17',7,25,2,25),(2810,37,'2019-08-17',7,39,2,25),(2811,37,'2019-08-17',7,46,2,25),(2812,37,'2019-08-17',7,53,2,25);
136/*!40000 ALTER TABLE `posted_times` ENABLE KEYS */;
137UNLOCK TABLES;
138
139--
140-- Table structure for table `predicted_times`
141--
142
143DROP TABLE IF EXISTS `predicted_times`;
144/*!40101 SET @saved_cs_client = @@character_set_client */;
145/*!40101 SET character_set_client = utf8 */;
146CREATE TABLE `predicted_times` (
147 `id` int(11) NOT NULL AUTO_INCREMENT,
148 `ride_id` int(11) DEFAULT NULL,
149 `date` date DEFAULT NULL,
150 `hour` smallint(6) DEFAULT NULL,
151 `minute` smallint(6) DEFAULT NULL,
152 `second` smallint(6) DEFAULT NULL,
153 `value` smallint(6) DEFAULT NULL,
154 PRIMARY KEY (`id`),
155 UNIQUE KEY `date` (`date`,`hour`,`minute`,`second`,`value`)
156) ENGINE=InnoDB AUTO_INCREMENT=5475 DEFAULT CHARSET=utf8;
157/*!40101 SET character_set_client = @saved_cs_client */;
158
159--
160-- Dumping data for table `predicted_times`
161--
162
163LOCK TABLES `predicted_times` WRITE;
164/*!40000 ALTER TABLE `predicted_times` DISABLE KEYS */;
165INSERT INTO `predicted_times` VALUES (35,1,'2019-08-17',7,0,0,5),(36,1,'2019-08-17',7,15,0,5),(37,1,'2019-08-17',7,30,0,5),(38,1,'2019-08-17',7,45,0,5),(39,1,'2019-08-17',8,0,0,10),(40,1,'2019-08-17',8,15,0,20),(41,1,'2019-08-17',8,30,0,20),(42,1,'2019-08-17',8,45,0,20),(43,1,'2019-08-17',9,0,0,20),(44,1,'2019-08-17',9,15,0,20),(45,1,'2019-08-17',9,30,0,10),(46,1,'2019-08-17',9,45,0,20),(47,1,'2019-08-17',10,0,0,20),(48,1,'2019-08-17',10,15,0,30),(49,1,'2019-08-17',10,30,0,30),(50,1,'2019-08-17',10,45,0,30),(51,1,'2019-08-17',11,0,0,30),(52,1,'2019-08-17',11,15,0,30),(53,1,'2019-08-17',11,30,0,30),(54,1,'2019-08-17',11,45,0,30),(55,1,'2019-08-17',12,0,0,30),(56,1,'2019-08-17',12,15,0,30),(57,1,'2019-08-17',12,30,0,30),(58,1,'2019-08-17',12,45,0,30),(59,1,'2019-08-17',13,0,0,40),(60,1,'2019-08-17',13,15,0,30),(61,1,'2019-08-17',13,30,0,40),(62,1,'2019-08-17',13,45,0,30),(63,1,'2019-08-17',14,0,0,30),(64,1,'2019-08-17',14,15,0,30),(65,1,'2019-08-17',14,30,0,30),(66,1,'2019-08-17',14,45,0,30),(67,1,'2019-08-17',15,0,0,30),(68,1,'2019-08-17',15,15,0,30),(69,1,'2019-08-17',15,30,0,30),(70,1,'2019-08-17',15,45,0,30),(71,1,'2019-08-17',16,0,0,30),(72,1,'2019-08-17',16,15,0,30),(73,1,'2019-08-17',16,30,0,30),(74,1,'2019-08-17',16,45,0,30),(75,1,'2019-08-17',17,0,0,30),(76,1,'2019-08-17',17,15,0,30),(77,1,'2019-08-17',17,30,0,30),(78,1,'2019-08-17',17,45,0,30),(79,1,'2019-08-17',18,0,0,30),(80,1,'2019-08-17',18,15,0,30),(81,1,'2019-08-17',18,30,0,30),(82,1,'2019-08-17',18,45,0,30),(83,1,'2019-08-17',19,0,0,30),(84,1,'2019-08-17',19,15,0,30),(85,1,'2019-08-17',19,30,0,30),(86,1,'2019-08-17',19,45,0,30),(87,1,'2019-08-17',20,0,0,30),(88,1,'2019-08-17',20,15,0,30),(89,1,'2019-08-17',20,30,0,30),(90,1,'2019-08-17',20,45,0,35),(91,1,'2019-08-17',21,0,0,45),(92,1,'2019-08-17',21,15,0,45),(93,1,'2019-08-17',21,30,0,45),(94,1,'2019-08-17',21,45,0,45),(95,1,'2019-08-17',22,0,0,45),(96,1,'2019-08-17',22,15,0,45),(97,1,'2019-08-17',22,30,0,30),(98,1,'2019-08-17',22,45,0,20),(99,1,'2019-08-17',23,0,0,20),(100,1,'2019-08-17',23,15,0,35),(101,1,'2019-08-17',23,30,0,35),(102,1,'2019-08-17',23,45,0,35),(107,2,'2019-08-17',8,0,0,5),(108,2,'2019-08-17',8,15,0,5),(109,2,'2019-08-17',8,30,0,5),(110,2,'2019-08-17',8,45,0,5),(111,2,'2019-08-17',9,0,0,5),(112,2,'2019-08-17',9,15,0,5),(114,2,'2019-08-17',9,45,0,10),(115,2,'2019-08-17',10,0,0,10),(116,2,'2019-08-17',10,15,0,25),(117,2,'2019-08-17',10,30,0,25),(118,2,'2019-08-17',10,45,0,25),(119,2,'2019-08-17',11,0,0,20),(120,2,'2019-08-17',11,15,0,20),(121,2,'2019-08-17',11,30,0,35),(122,2,'2019-08-17',11,45,0,35),(123,2,'2019-08-17',12,0,0,35),(124,2,'2019-08-17',12,15,0,20),(125,2,'2019-08-17',12,30,0,20),(126,2,'2019-08-17',12,45,0,45),(127,2,'2019-08-17',13,0,0,45),(128,2,'2019-08-17',13,15,0,45),(129,2,'2019-08-17',13,30,0,30),(132,2,'2019-08-17',14,15,0,20),(133,2,'2019-08-17',14,30,0,20),(134,2,'2019-08-17',14,45,0,20),(135,2,'2019-08-17',15,0,0,20),(139,2,'2019-08-17',16,0,0,10),(140,2,'2019-08-17',16,15,0,15),(141,2,'2019-08-17',16,30,0,15),(142,2,'2019-08-17',16,45,0,15),(143,2,'2019-08-17',17,0,0,15),(144,2,'2019-08-17',17,15,0,20),(145,2,'2019-08-17',17,30,0,20),(146,2,'2019-08-17',17,45,0,20),(147,2,'2019-08-17',18,0,0,20),(148,2,'2019-08-17',18,15,0,20),(149,2,'2019-08-17',18,30,0,20),(150,2,'2019-08-17',18,45,0,45),(151,2,'2019-08-17',19,0,0,35),(152,2,'2019-08-17',19,15,0,35),(153,2,'2019-08-17',19,30,0,25),(158,2,'2019-08-17',20,45,0,30),(159,2,'2019-08-17',21,0,0,30),(160,2,'2019-08-17',21,15,0,15),(161,2,'2019-08-17',21,30,0,15),(162,2,'2019-08-17',21,45,0,15),(163,2,'2019-08-17',22,0,0,20),(164,2,'2019-08-17',22,15,0,25),(165,2,'2019-08-17',22,30,0,15),(166,2,'2019-08-17',22,45,0,15),(167,2,'2019-08-17',23,0,0,15),(168,2,'2019-08-17',23,15,0,15),(169,2,'2019-08-17',23,30,0,15),(170,2,'2019-08-17',23,45,0,15),(171,3,'2019-08-17',7,0,0,15),(172,3,'2019-08-17',7,15,0,15),(174,3,'2019-08-17',7,45,0,15),(181,3,'2019-08-17',9,30,0,5),(182,3,'2019-08-17',9,45,0,5),(183,3,'2019-08-17',10,0,0,15),(184,3,'2019-08-17',10,15,0,10),(185,3,'2019-08-17',10,30,0,10),(186,3,'2019-08-17',10,45,0,10),(187,3,'2019-08-17',11,0,0,5),(188,3,'2019-08-17',11,15,0,5),(189,3,'2019-08-17',11,30,0,15),(190,3,'2019-08-17',11,45,0,15),(191,3,'2019-08-17',12,0,0,15),(192,3,'2019-08-17',12,15,0,15),(193,3,'2019-08-17',12,30,0,15),(194,3,'2019-08-17',12,45,0,15),(195,3,'2019-08-17',13,0,0,15),(196,3,'2019-08-17',13,15,0,15),(197,3,'2019-08-17',13,30,0,15),(198,3,'2019-08-17',13,45,0,15),(199,3,'2019-08-17',14,0,0,10),(200,3,'2019-08-17',14,15,0,15),(201,3,'2019-08-17',14,30,0,15),(202,3,'2019-08-17',14,45,0,15),(203,3,'2019-08-17',15,0,0,15),(204,3,'2019-08-17',15,15,0,15),(205,3,'2019-08-17',15,30,0,15),(206,3,'2019-08-17',15,45,0,15),(207,3,'2019-08-17',16,0,0,15),(208,3,'2019-08-17',16,15,0,5),(209,3,'2019-08-17',16,30,0,5),(212,3,'2019-08-17',17,15,0,15),(213,3,'2019-08-17',17,30,0,15),(214,3,'2019-08-17',17,45,0,15),(215,3,'2019-08-17',18,0,0,15),(216,3,'2019-08-17',18,15,0,15),(217,3,'2019-08-17',18,30,0,15),(218,3,'2019-08-17',18,45,0,15),(219,3,'2019-08-17',19,0,0,15),(220,3,'2019-08-17',19,15,0,15),(222,3,'2019-08-17',19,45,0,15),(223,3,'2019-08-17',20,0,0,15),(224,3,'2019-08-17',20,15,0,15),(225,3,'2019-08-17',20,30,0,15),(226,3,'2019-08-17',20,45,0,15),(227,3,'2019-08-17',21,0,0,20),(231,3,'2019-08-17',22,0,0,10),(232,3,'2019-08-17',22,15,0,10),(233,3,'2019-08-17',22,30,0,10),(234,3,'2019-08-17',22,45,0,10),(236,3,'2019-08-17',23,15,0,40),(239,4,'2019-08-17',7,0,0,30),(240,4,'2019-08-17',7,15,0,30),(244,4,'2019-08-17',8,15,0,15),(245,4,'2019-08-17',8,30,0,15),(246,4,'2019-08-17',8,45,0,15),(247,4,'2019-08-17',9,0,0,15),(248,4,'2019-08-17',9,15,0,10),(250,4,'2019-08-17',9,45,0,35),(251,4,'2019-08-17',10,0,0,35),(255,4,'2019-08-17',11,0,0,25),(256,4,'2019-08-17',11,15,0,35),(260,4,'2019-08-17',12,15,0,35),(261,4,'2019-08-17',12,30,0,35),(262,4,'2019-08-17',12,45,0,40),(264,4,'2019-08-17',13,15,0,40),(266,4,'2019-08-17',13,45,0,45),(267,4,'2019-08-17',14,0,0,45),(268,4,'2019-08-17',14,15,0,45),(269,4,'2019-08-17',14,30,0,45),(270,4,'2019-08-17',14,45,0,45),(271,4,'2019-08-17',15,0,0,45),(273,4,'2019-08-17',15,30,0,45),(274,4,'2019-08-17',15,45,0,40),(275,4,'2019-08-17',16,0,0,35),(276,4,'2019-08-17',16,15,0,40),(277,4,'2019-08-17',16,30,0,40),(278,4,'2019-08-17',16,45,0,40),(279,4,'2019-08-17',17,0,0,40),(280,4,'2019-08-17',17,15,0,40),(281,4,'2019-08-17',17,30,0,65),(282,4,'2019-08-17',17,45,0,45),(283,4,'2019-08-17',18,0,0,45),(284,4,'2019-08-17',18,15,0,45),(286,4,'2019-08-17',18,45,0,40),(287,4,'2019-08-17',19,0,0,40),(288,4,'2019-08-17',19,15,0,45),(289,4,'2019-08-17',19,30,0,45),(290,4,'2019-08-17',19,45,0,60),(291,4,'2019-08-17',20,0,0,60),(292,4,'2019-08-17',20,15,0,35),(293,4,'2019-08-17',20,30,0,35),(295,4,'2019-08-17',21,0,0,35),(296,4,'2019-08-17',21,15,0,35),(297,4,'2019-08-17',21,30,0,35),(298,4,'2019-08-17',21,45,0,35),(299,4,'2019-08-17',22,0,0,60),(300,4,'2019-08-17',22,15,0,60),(301,4,'2019-08-17',22,30,0,45),(302,4,'2019-08-17',22,45,0,30),(303,4,'2019-08-17',23,0,0,30),(304,4,'2019-08-17',23,15,0,25),(305,4,'2019-08-17',23,30,0,25),(306,4,'2019-08-17',23,45,0,20),(316,5,'2019-08-17',9,15,0,15),(317,5,'2019-08-17',9,30,0,15),(318,5,'2019-08-17',9,45,0,15),(322,5,'2019-08-17',10,45,0,40),(323,5,'2019-08-17',11,0,0,40),(324,5,'2019-08-17',11,15,0,40),(325,5,'2019-08-17',11,30,0,25),(331,5,'2019-08-17',13,0,0,30),(335,5,'2019-08-17',14,0,0,35),(336,5,'2019-08-17',14,15,0,35),(337,5,'2019-08-17',14,30,0,35),(338,5,'2019-08-17',14,45,0,35),(339,5,'2019-08-17',15,0,0,35),(340,5,'2019-08-17',15,15,0,25),(342,5,'2019-08-17',15,45,0,45),(343,5,'2019-08-17',16,0,0,45),(344,5,'2019-08-17',16,15,0,35),(352,5,'2019-08-17',18,15,0,35),(354,5,'2019-08-17',18,45,0,35),(359,5,'2019-08-17',20,0,0,40),(360,5,'2019-08-17',20,15,0,40),(364,5,'2019-08-17',21,15,0,30),(367,5,'2019-08-17',22,0,0,35),(368,5,'2019-08-17',22,15,0,35),(369,5,'2019-08-17',22,30,0,35),(370,5,'2019-08-17',22,45,0,35),(371,5,'2019-08-17',23,0,0,35),(372,5,'2019-08-17',23,15,0,5),(373,5,'2019-08-17',23,30,0,5),(374,5,'2019-08-17',23,45,0,5),(387,6,'2019-08-17',10,0,0,5),(388,6,'2019-08-17',10,15,0,5),(389,6,'2019-08-17',10,30,0,5),(391,6,'2019-08-17',11,0,0,10),(392,6,'2019-08-17',11,15,0,10),(393,6,'2019-08-17',11,30,0,10),(394,6,'2019-08-17',11,45,0,10),(395,6,'2019-08-17',12,0,0,10),(396,6,'2019-08-17',12,15,0,10),(397,6,'2019-08-17',12,30,0,10),(398,6,'2019-08-17',12,45,0,10),(399,6,'2019-08-17',13,0,0,10),(400,6,'2019-08-17',13,15,0,10),(401,6,'2019-08-17',13,30,0,10),(402,6,'2019-08-17',13,45,0,10),(404,6,'2019-08-17',14,15,0,10),(405,6,'2019-08-17',14,30,0,10),(406,6,'2019-08-17',14,45,0,10),(407,6,'2019-08-17',15,0,0,10),(408,6,'2019-08-17',15,15,0,10),(409,6,'2019-08-17',15,30,0,10),(410,6,'2019-08-17',15,45,0,10),(412,6,'2019-08-17',16,15,0,10),(413,6,'2019-08-17',16,30,0,10),(414,6,'2019-08-17',16,45,0,10),(415,6,'2019-08-17',17,0,0,10),(416,6,'2019-08-17',17,15,0,10),(417,6,'2019-08-17',17,30,0,10),(418,6,'2019-08-17',17,45,0,10),(419,6,'2019-08-17',18,0,0,10),(420,6,'2019-08-17',18,15,0,10),(421,6,'2019-08-17',18,30,0,10),(422,6,'2019-08-17',18,45,0,10),(423,6,'2019-08-17',19,0,0,45),(426,6,'2019-08-17',19,45,0,45),(427,6,'2019-08-17',20,0,0,45),(428,6,'2019-08-17',20,15,0,45),(429,6,'2019-08-17',20,30,0,45),(430,6,'2019-08-17',20,45,0,45),(438,6,'2019-08-17',22,45,0,45),(439,6,'2019-08-17',23,0,0,45),(440,6,'2019-08-17',23,15,0,20),(441,6,'2019-08-17',23,30,0,20),(443,7,'2019-08-17',7,0,0,10),(444,7,'2019-08-17',7,15,0,10),(445,7,'2019-08-17',7,30,0,10),(446,7,'2019-08-17',7,45,0,10),(490,7,'2019-08-17',19,0,0,25),(491,7,'2019-08-17',19,15,0,25),(493,7,'2019-08-17',19,45,0,25),(494,7,'2019-08-17',20,0,0,25),(495,7,'2019-08-17',20,15,0,25),(496,7,'2019-08-17',20,30,0,25),(497,7,'2019-08-17',20,45,0,25),(498,7,'2019-08-17',21,0,0,25),(499,7,'2019-08-17',21,15,0,25),(500,7,'2019-08-17',21,30,0,25),(501,7,'2019-08-17',21,45,0,25),(502,7,'2019-08-17',22,0,0,25),(504,7,'2019-08-17',22,30,0,25),(506,7,'2019-08-17',23,0,0,25),(509,7,'2019-08-17',23,45,0,25),(510,7,'2019-08-17',0,0,0,25),(526,8,'2019-08-17',10,45,0,5),(529,8,'2019-08-17',11,30,0,5),(530,8,'2019-08-17',11,45,0,5),(531,8,'2019-08-17',12,0,0,5),(532,8,'2019-08-17',12,15,0,5),(533,8,'2019-08-17',12,30,0,5),(534,8,'2019-08-17',12,45,0,5),(535,8,'2019-08-17',13,0,0,5),(536,8,'2019-08-17',13,15,0,5),(537,8,'2019-08-17',13,30,0,5),(544,8,'2019-08-17',15,15,0,20),(545,8,'2019-08-17',15,30,0,20),(546,8,'2019-08-17',15,45,0,20),(547,8,'2019-08-17',16,0,0,20),(548,8,'2019-08-17',16,15,0,20),(549,8,'2019-08-17',16,30,0,20),(550,8,'2019-08-17',16,45,0,20),(551,8,'2019-08-17',17,0,0,5),(552,8,'2019-08-17',17,15,0,5),(553,8,'2019-08-17',17,30,0,5),(554,8,'2019-08-17',17,45,0,5),(555,8,'2019-08-17',18,0,0,5),(556,8,'2019-08-17',18,15,0,5),(557,8,'2019-08-17',18,30,0,5),(558,8,'2019-08-17',18,45,0,5),(559,8,'2019-08-17',19,0,0,5),(561,8,'2019-08-17',19,30,0,15),(567,8,'2019-08-17',21,0,0,15),(568,8,'2019-08-17',21,15,0,10),(569,8,'2019-08-17',21,30,0,10),(570,8,'2019-08-17',21,45,0,10),(572,8,'2019-08-17',22,15,0,20),(573,8,'2019-08-17',22,30,0,5),(574,8,'2019-08-17',22,45,0,5),(575,8,'2019-08-17',23,0,0,5),(584,9,'2019-08-17',8,15,0,10),(585,9,'2019-08-17',8,30,0,10),(589,9,'2019-08-17',9,30,0,20),(596,9,'2019-08-17',11,15,0,25),(598,9,'2019-08-17',11,45,0,25),(599,9,'2019-08-17',12,0,0,25),(600,9,'2019-08-17',12,15,0,25),(601,9,'2019-08-17',12,30,0,25),(602,9,'2019-08-17',12,45,0,25),(603,9,'2019-08-17',13,0,0,25),(604,9,'2019-08-17',13,15,0,25),(605,9,'2019-08-17',13,30,0,35),(606,9,'2019-08-17',13,45,0,35),(607,9,'2019-08-17',14,0,0,40),(608,9,'2019-08-17',14,15,0,40),(609,9,'2019-08-17',14,30,0,40),(610,9,'2019-08-17',14,45,0,40),(611,9,'2019-08-17',15,0,0,40),(612,9,'2019-08-17',15,15,0,40),(613,9,'2019-08-17',15,30,0,40),(631,9,'2019-08-17',20,0,0,20),(632,9,'2019-08-17',20,15,0,20),(633,9,'2019-08-17',20,30,0,20),(634,9,'2019-08-17',20,45,0,20),(636,9,'2019-08-17',21,15,0,20),(637,9,'2019-08-17',21,30,0,20),(638,9,'2019-08-17',21,45,0,20),(641,9,'2019-08-17',22,30,0,20),(664,10,'2019-08-17',11,15,0,15),(680,10,'2019-08-17',15,15,0,35),(685,10,'2019-08-17',16,30,0,35),(686,10,'2019-08-17',16,45,0,35),(687,10,'2019-08-17',17,0,0,35),(688,10,'2019-08-17',17,15,0,35),(689,10,'2019-08-17',17,30,0,35),(690,10,'2019-08-17',17,45,0,25),(691,10,'2019-08-17',18,0,0,25),(692,10,'2019-08-17',18,15,0,25),(693,10,'2019-08-17',18,30,0,25),(694,10,'2019-08-17',18,45,0,25),(711,10,'2019-08-17',23,0,0,10),(719,11,'2019-08-17',8,0,0,15),(743,11,'2019-08-17',14,0,0,15),(758,11,'2019-08-17',17,45,0,40),(759,11,'2019-08-17',18,0,0,40),(770,11,'2019-08-17',21,0,0,10),(779,11,'2019-08-17',23,15,0,10),(780,11,'2019-08-17',23,30,0,10),(781,11,'2019-08-17',23,45,0,10),(782,11,'2019-08-17',0,0,0,10),(784,12,'2019-08-17',7,15,0,45),(785,12,'2019-08-17',7,30,0,15),(796,12,'2019-08-17',10,15,0,20),(797,12,'2019-08-17',10,30,0,15),(798,12,'2019-08-17',10,45,0,20),(806,12,'2019-08-17',12,45,0,35),(807,12,'2019-08-17',13,0,0,35),(810,12,'2019-08-17',13,45,0,40),(814,12,'2019-08-17',14,45,0,25),(822,12,'2019-08-17',16,45,0,45),(823,12,'2019-08-17',17,0,0,45),(824,12,'2019-08-17',17,15,0,45),(825,12,'2019-08-17',17,30,0,25),(827,12,'2019-08-17',18,0,0,50),(828,12,'2019-08-17',18,15,0,40),(829,12,'2019-08-17',18,30,0,35),(833,12,'2019-08-17',19,30,0,35),(841,12,'2019-08-17',21,30,0,30),(842,12,'2019-08-17',21,45,0,30),(844,12,'2019-08-17',22,15,0,40),(845,12,'2019-08-17',22,30,0,40),(851,13,'2019-08-17',7,0,0,45),(853,13,'2019-08-17',7,30,0,30),(856,13,'2019-08-17',8,15,0,25),(857,13,'2019-08-17',8,30,0,25),(858,13,'2019-08-17',8,45,0,25),(859,13,'2019-08-17',9,0,0,25),(860,13,'2019-08-17',9,15,0,25),(861,13,'2019-08-17',9,30,0,25),(862,13,'2019-08-17',9,45,0,25),(863,13,'2019-08-17',10,0,0,25),(864,13,'2019-08-17',10,15,0,40),(865,13,'2019-08-17',10,30,0,40),(866,13,'2019-08-17',10,45,0,35),(869,13,'2019-08-17',11,30,0,40),(870,13,'2019-08-17',11,45,0,40),(871,13,'2019-08-17',12,0,0,40),(872,13,'2019-08-17',12,15,0,40),(873,13,'2019-08-17',12,30,0,40),(874,13,'2019-08-17',12,45,0,50),(875,13,'2019-08-17',13,0,0,50),(876,13,'2019-08-17',13,15,0,60),(877,13,'2019-08-17',13,30,0,60),(880,13,'2019-08-17',14,15,0,70),(882,13,'2019-08-17',14,45,0,60),(883,13,'2019-08-17',15,0,0,60),(884,13,'2019-08-17',15,15,0,60),(886,13,'2019-08-17',15,45,0,50),(887,13,'2019-08-17',16,0,0,40),(888,13,'2019-08-17',16,15,0,50),(889,13,'2019-08-17',16,30,0,55),(890,13,'2019-08-17',16,45,0,55),(892,13,'2019-08-17',17,15,0,65),(894,13,'2019-08-17',17,45,0,65),(895,13,'2019-08-17',18,0,0,65),(896,13,'2019-08-17',18,15,0,65),(897,13,'2019-08-17',18,30,0,65),(898,13,'2019-08-17',18,45,0,65),(899,13,'2019-08-17',19,0,0,75),(900,13,'2019-08-17',19,15,0,75),(901,13,'2019-08-17',19,30,0,75),(902,13,'2019-08-17',19,45,0,75),(903,13,'2019-08-17',20,0,0,75),(904,13,'2019-08-17',20,15,0,60),(905,13,'2019-08-17',20,30,0,40),(906,13,'2019-08-17',20,45,0,40),(907,13,'2019-08-17',21,0,0,70),(908,13,'2019-08-17',21,15,0,70),(909,13,'2019-08-17',21,30,0,60),(912,13,'2019-08-17',22,15,0,50),(913,13,'2019-08-17',22,30,0,50),(914,13,'2019-08-17',22,45,0,50),(915,13,'2019-08-17',23,0,0,70),(916,13,'2019-08-17',23,15,0,30),(917,13,'2019-08-17',23,30,0,40),(939,14,'2019-08-17',12,0,0,20),(945,14,'2019-08-17',13,30,0,20),(949,14,'2019-08-17',14,30,0,55),(950,14,'2019-08-17',14,45,0,55),(951,14,'2019-08-17',15,0,0,55),(952,14,'2019-08-17',15,15,0,45),(953,14,'2019-08-17',15,30,0,35),(956,14,'2019-08-17',16,15,0,25),(961,14,'2019-08-17',17,30,0,40),(970,14,'2019-08-17',19,45,0,35),(971,14,'2019-08-17',20,0,0,35),(976,14,'2019-08-17',21,15,0,5),(977,14,'2019-08-17',21,30,0,5),(978,14,'2019-08-17',21,45,0,5),(979,14,'2019-08-17',22,0,0,15),(982,14,'2019-08-17',22,45,0,25),(988,15,'2019-08-17',7,15,0,20),(1013,15,'2019-08-17',13,30,0,25),(1014,15,'2019-08-17',13,45,0,25),(1015,15,'2019-08-17',14,0,0,25),(1016,15,'2019-08-17',14,15,0,25),(1017,15,'2019-08-17',14,30,0,25),(1027,15,'2019-08-17',17,0,0,25),(1028,15,'2019-08-17',17,15,0,25),(1035,15,'2019-08-17',19,0,0,10),(1082,16,'2019-08-17',13,45,0,5),(1083,16,'2019-08-17',14,0,0,5),(1084,16,'2019-08-17',14,15,0,5),(1085,16,'2019-08-17',14,30,0,5),(1086,16,'2019-08-17',14,45,0,5),(1087,16,'2019-08-17',15,0,0,5),(1088,16,'2019-08-17',15,15,0,5),(1089,16,'2019-08-17',15,30,0,5),(1090,16,'2019-08-17',15,45,0,5),(1091,16,'2019-08-17',16,0,0,5),(1094,16,'2019-08-17',16,45,0,5),(1104,16,'2019-08-17',19,15,0,10),(1105,16,'2019-08-17',19,30,0,10),(1106,16,'2019-08-17',19,45,0,10),(1107,16,'2019-08-17',20,0,0,10),(1108,16,'2019-08-17',20,15,0,10),(1109,16,'2019-08-17',20,30,0,10),(1110,16,'2019-08-17',20,45,0,10),(1115,16,'2019-08-17',22,0,0,5),(1116,16,'2019-08-17',22,15,0,15),(1198,18,'2019-08-17',8,45,0,10),(1199,18,'2019-08-17',9,0,0,10),(1258,18,'2019-08-17',0,0,0,15),(1277,19,'2019-08-17',11,30,0,45),(1278,19,'2019-08-17',11,45,0,45),(1279,19,'2019-08-17',12,0,0,45),(1280,19,'2019-08-17',12,15,0,45),(1281,19,'2019-08-17',12,30,0,45),(1285,19,'2019-08-17',13,30,0,45),(1294,19,'2019-08-17',15,45,0,35),(1302,19,'2019-08-17',17,45,0,35),(1303,19,'2019-08-17',18,0,0,35),(1330,20,'2019-08-17',7,45,0,30),(1331,20,'2019-08-17',8,0,0,30),(1337,20,'2019-08-17',9,30,0,45),(1341,20,'2019-08-17',10,30,0,20),(1364,20,'2019-08-17',16,15,0,45),(1365,20,'2019-08-17',16,30,0,50),(1366,20,'2019-08-17',16,45,0,50),(1370,20,'2019-08-17',17,45,0,55),(1371,20,'2019-08-17',18,0,0,55),(1378,20,'2019-08-17',19,45,0,40),(1382,20,'2019-08-17',21,0,0,40),(1383,20,'2019-08-17',21,15,0,40),(1384,20,'2019-08-17',21,30,0,40),(1385,20,'2019-08-17',21,45,0,40),(1386,20,'2019-08-17',22,0,0,40),(1389,20,'2019-08-17',22,45,0,40),(1390,20,'2019-08-17',23,0,0,40),(1393,20,'2019-08-17',23,45,0,40),(1394,20,'2019-08-17',0,0,0,40),(1398,21,'2019-08-17',7,45,0,25),(1400,21,'2019-08-17',8,15,0,35),(1401,21,'2019-08-17',8,30,0,60),(1402,21,'2019-08-17',8,45,0,90),(1403,21,'2019-08-17',9,0,0,95),(1404,21,'2019-08-17',9,15,0,95),(1405,21,'2019-08-17',9,30,0,90),(1406,21,'2019-08-17',9,45,0,90),(1407,21,'2019-08-17',10,0,0,85),(1408,21,'2019-08-17',10,15,0,80),(1409,21,'2019-08-17',10,30,0,80),(1410,21,'2019-08-17',10,45,0,75),(1411,21,'2019-08-17',11,0,0,75),(1412,21,'2019-08-17',11,15,0,75),(1413,21,'2019-08-17',11,30,0,75),(1414,21,'2019-08-17',11,45,0,75),(1415,21,'2019-08-17',12,0,0,75),(1416,21,'2019-08-17',12,15,0,70),(1417,21,'2019-08-17',12,30,0,70),(1418,21,'2019-08-17',12,45,0,65),(1419,21,'2019-08-17',13,0,0,65),(1420,21,'2019-08-17',13,15,0,65),(1421,21,'2019-08-17',13,30,0,65),(1422,21,'2019-08-17',13,45,0,65),(1423,21,'2019-08-17',14,0,0,65),(1424,21,'2019-08-17',14,15,0,60),(1425,21,'2019-08-17',14,30,0,60),(1426,21,'2019-08-17',14,45,0,65),(1429,21,'2019-08-17',15,30,0,60),(1430,21,'2019-08-17',15,45,0,60),(1431,21,'2019-08-17',16,0,0,60),(1432,21,'2019-08-17',16,15,0,60),(1433,21,'2019-08-17',16,30,0,60),(1434,21,'2019-08-17',16,45,0,65),(1435,21,'2019-08-17',17,0,0,60),(1436,21,'2019-08-17',17,15,0,55),(1437,21,'2019-08-17',17,30,0,60),(1440,21,'2019-08-17',18,15,0,55),(1441,21,'2019-08-17',18,30,0,55),(1442,21,'2019-08-17',18,45,0,55),(1443,21,'2019-08-17',19,0,0,55),(1444,21,'2019-08-17',19,15,0,55),(1445,21,'2019-08-17',19,30,0,60),(1446,21,'2019-08-17',19,45,0,55),(1447,21,'2019-08-17',20,0,0,55),(1448,21,'2019-08-17',20,15,0,55),(1449,21,'2019-08-17',20,30,0,55),(1450,21,'2019-08-17',20,45,0,60),(1451,21,'2019-08-17',21,0,0,55),(1452,21,'2019-08-17',21,15,0,50),(1455,21,'2019-08-17',22,0,0,50),(1462,21,'2019-08-17',23,45,0,30),(1468,22,'2019-08-17',8,15,0,30),(1469,22,'2019-08-17',8,30,0,30),(1470,22,'2019-08-17',8,45,0,30),(1479,22,'2019-08-17',11,0,0,45),(1480,22,'2019-08-17',11,15,0,45),(1485,22,'2019-08-17',12,30,0,60),(1490,22,'2019-08-17',13,45,0,60),(1510,22,'2019-08-17',18,45,0,60),(1522,22,'2019-08-17',22,0,0,30),(1523,22,'2019-08-17',22,15,0,30),(1528,22,'2019-08-17',23,30,0,30),(1530,22,'2019-08-17',0,0,0,30),(1559,23,'2019-08-17',14,0,0,20),(1571,23,'2019-08-17',17,0,0,20),(1580,23,'2019-08-17',19,15,0,20),(1599,24,'2019-08-17',7,0,0,20),(1603,24,'2019-08-17',8,0,0,35),(1605,24,'2019-08-17',8,30,0,35),(1606,24,'2019-08-17',8,45,0,35),(1607,24,'2019-08-17',9,0,0,35),(1608,24,'2019-08-17',9,15,0,35),(1611,24,'2019-08-17',10,0,0,40),(1615,24,'2019-08-17',11,0,0,35),(1624,24,'2019-08-17',13,15,0,35),(1635,24,'2019-08-17',16,0,0,50),(1640,24,'2019-08-17',17,15,0,50),(1641,24,'2019-08-17',17,30,0,50),(1642,24,'2019-08-17',17,45,0,50),(1644,24,'2019-08-17',18,15,0,50),(1645,24,'2019-08-17',18,30,0,50),(1646,24,'2019-08-17',18,45,0,50),(1647,24,'2019-08-17',19,0,0,50),(1648,24,'2019-08-17',19,15,0,50),(1649,24,'2019-08-17',19,30,0,50),(1650,24,'2019-08-17',19,45,0,50),(1651,24,'2019-08-17',20,0,0,50),(1653,24,'2019-08-17',20,30,0,50),(1654,24,'2019-08-17',20,45,0,50),(1655,24,'2019-08-17',21,0,0,60),(1664,24,'2019-08-17',23,15,0,50),(1665,24,'2019-08-17',23,30,0,50),(1666,24,'2019-08-17',23,45,0,50),(1683,25,'2019-08-17',11,0,0,15),(1851,26,'2019-08-17',19,15,0,5),(1852,26,'2019-08-17',19,30,0,5),(1853,26,'2019-08-17',19,45,0,5),(1854,26,'2019-08-17',20,0,0,5),(1855,26,'2019-08-17',20,15,0,5),(1856,26,'2019-08-17',20,30,0,5),(1857,26,'2019-08-17',20,45,0,5),(1858,26,'2019-08-17',21,0,0,5),(1863,26,'2019-08-17',22,15,0,5),(1870,26,'2019-08-17',0,0,0,5),(1889,27,'2019-08-17',11,30,0,20),(1890,27,'2019-08-17',11,45,0,20),(1894,27,'2019-08-17',12,45,0,20),(1895,27,'2019-08-17',13,0,0,20),(1896,27,'2019-08-17',13,15,0,20),(1918,27,'2019-08-17',18,45,0,20),(1919,27,'2019-08-17',19,0,0,20),(2043,29,'2019-08-17',16,0,0,25),(2193,31,'2019-08-17',19,30,0,20),(2226,32,'2019-08-17',10,45,0,15),(2238,32,'2019-08-17',13,45,0,50),(2239,32,'2019-08-17',14,0,0,50),(2240,32,'2019-08-17',14,15,0,50),(2243,32,'2019-08-17',15,0,0,70),(2244,32,'2019-08-17',15,15,0,65),(2245,32,'2019-08-17',15,30,0,65),(2246,32,'2019-08-17',15,45,0,65),(2249,32,'2019-08-17',16,30,0,45),(2253,32,'2019-08-17',17,30,0,45),(2257,32,'2019-08-17',18,30,0,45),(2398,34,'2019-08-17',19,45,0,20),(2424,35,'2019-08-17',9,15,0,60),(2425,35,'2019-08-17',9,30,0,60),(2426,35,'2019-08-17',9,45,0,60),(2427,35,'2019-08-17',10,0,0,45),(2430,35,'2019-08-17',10,45,0,60),(2431,35,'2019-08-17',11,0,0,100),(2432,35,'2019-08-17',11,15,0,100),(2433,35,'2019-08-17',11,30,0,100),(2434,35,'2019-08-17',11,45,0,100),(2435,35,'2019-08-17',12,0,0,100),(2442,35,'2019-08-17',13,45,0,75),(2443,35,'2019-08-17',14,0,0,75),(2444,35,'2019-08-17',14,15,0,75),(2445,35,'2019-08-17',14,30,0,75),(2446,35,'2019-08-17',14,45,0,75),(2447,35,'2019-08-17',15,0,0,75),(2450,35,'2019-08-17',15,45,0,70),(2451,35,'2019-08-17',16,0,0,70),(2452,35,'2019-08-17',16,15,0,85),(2453,35,'2019-08-17',16,30,0,85),(2454,35,'2019-08-17',16,45,0,85),(2455,35,'2019-08-17',17,0,0,85),(2457,35,'2019-08-17',17,30,0,75),(2462,35,'2019-08-17',18,45,0,100),(2463,35,'2019-08-17',19,0,0,110),(2467,35,'2019-08-17',20,0,0,85),(2471,35,'2019-08-17',21,0,0,75),(2472,35,'2019-08-17',21,15,0,75),(2473,35,'2019-08-17',21,30,0,75),(2474,35,'2019-08-17',21,45,0,75),(2475,35,'2019-08-17',22,0,0,90),(2476,35,'2019-08-17',22,15,0,90),(2477,35,'2019-08-17',22,30,0,105),(2478,35,'2019-08-17',22,45,0,105),(2479,35,'2019-08-17',23,0,0,105),(2480,35,'2019-08-17',23,15,0,70),(2481,35,'2019-08-17',23,30,0,70),(2482,35,'2019-08-17',23,45,0,80),(2503,36,'2019-08-17',12,0,0,55),(2505,36,'2019-08-17',12,30,0,55),(2506,36,'2019-08-17',12,45,0,55),(2507,36,'2019-08-17',13,0,0,55),(2508,36,'2019-08-17',13,15,0,55),(2514,36,'2019-08-17',14,45,0,80),(2515,36,'2019-08-17',15,0,0,80),(2516,36,'2019-08-17',15,15,0,80),(2517,36,'2019-08-17',15,30,0,80),(2518,36,'2019-08-17',15,45,0,80),(2519,36,'2019-08-17',16,0,0,80),(2520,36,'2019-08-17',16,15,0,80),(2521,36,'2019-08-17',16,30,0,80),(2522,36,'2019-08-17',16,45,0,80),(2523,36,'2019-08-17',17,0,0,80),(2524,36,'2019-08-17',17,15,0,80),(2525,36,'2019-08-17',17,30,0,80),(2526,36,'2019-08-17',17,45,0,80),(2527,36,'2019-08-17',18,0,0,80),(2531,36,'2019-08-17',19,0,0,65),(2532,36,'2019-08-17',19,15,0,65),(2533,36,'2019-08-17',19,30,0,65),(2534,36,'2019-08-17',19,45,0,65),(2535,36,'2019-08-17',20,0,0,65),(2536,36,'2019-08-17',20,15,0,65),(2537,36,'2019-08-17',20,30,0,65),(2538,36,'2019-08-17',20,45,0,65),(2539,36,'2019-08-17',21,0,0,65),(2555,37,'2019-08-17',8,0,0,25),(2556,37,'2019-08-17',8,15,0,40),(2557,37,'2019-08-17',8,30,0,40),(2561,37,'2019-08-17',9,30,0,35),(2565,37,'2019-08-17',10,30,0,35),(2568,37,'2019-08-17',11,15,0,50),(2569,37,'2019-08-17',11,30,0,50),(2570,37,'2019-08-17',11,45,0,50),(2583,37,'2019-08-17',15,0,0,50),(2588,37,'2019-08-17',16,15,0,65),(2589,37,'2019-08-17',16,30,0,65),(2591,37,'2019-08-17',17,0,0,55),(2605,37,'2019-08-17',20,30,0,120),(2606,37,'2019-08-17',20,45,0,100),(2613,37,'2019-08-17',22,30,0,60),(2614,37,'2019-08-17',22,45,0,60);
166/*!40000 ALTER TABLE `predicted_times` ENABLE KEYS */;
167UNLOCK TABLES;
168
169--
170-- Table structure for table `rides`
171--
172
173DROP TABLE IF EXISTS `rides`;
174/*!40101 SET @saved_cs_client = @@character_set_client */;
175/*!40101 SET character_set_client = utf8 */;
176CREATE TABLE `rides` (
177 `id` int(11) NOT NULL AUTO_INCREMENT,
178 `ride` varchar(50) DEFAULT NULL,
179 PRIMARY KEY (`id`)
180) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8;
181/*!40101 SET character_set_client = @saved_cs_client */;
182
183--
184-- Dumping data for table `rides`
185--
186
187LOCK TABLES `rides` WRITE;
188/*!40000 ALTER TABLE `rides` DISABLE KEYS */;
189INSERT INTO `rides` VALUES (1,'Alice in Wonderland'),(2,'Astro Orbitor'),(3,'Autopia'),(4,'Big Thunder Mountain Railroad'),(5,'Buzz Lightyear Astro Blasters'),(6,'Casey Jr. Circus Train'),(7,'Davy Crockett\\\'s Explorer Canoes'),(8,'Disneyland Monorail'),(9,'Dumbo the Flying Elephant'),(10,'Finding Nemo Submarine Voyage'),(11,'Gadget\\\'s Go Coaster'),(12,'Haunted Mansion'),(13,'Indiana Jones Adventure'),(14,'\\\"it\\\'s a small world\\\"'),(15,'Jungle Cruise'),(16,'King Arthur Carrousel'),(17,'Mad Tea Party'),(18,'Mark Twain Riverboat'),(19,'Matterhorn Bobsleds'),(20,'Mickey\\\'s House and Meet Mickey'),(21,'Millennium Falcon: Smugglers Run'),(22,'Minnie\\\'s House'),(23,'Mr. Toad\\\'s Wild Ride'),(24,'Peter Pan\\\'s Flight'),(25,'Pinocchio\\\'s Daring Journey'),(26,'Pirate\\\'s Lair on Tom Sawyer Island'),(27,'Pirates of the Caribbean'),(28,'Disneyland Railroad Main Street Station'),(29,'Disneyland Railroad New Orleans Square Station'),(30,'Disneyland Railroad Tomorrowland Station'),(31,'Disneyland Railroad Mickey\\\'s Toontown'),(32,'Roger Rabbit\\\'s Car Toon Spin'),(33,'Sailing Ship Columbia'),(34,'Snow White\\\'s Scary Adventures'),(35,'Space Mountain'),(36,'Splash Mountain'),(37,'Star Tours: The Adventures Continue'),(38,'Storybook Land Canal Boats'),(39,'The Many Adventures of Winnie the Pooh');
190/*!40000 ALTER TABLE `rides` ENABLE KEYS */;
191UNLOCK TABLES;
192/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
193
194/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
195/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
196/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
197/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
198/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
199/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
200/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
201
202-- Dump completed on 2019-08-18 20:34:11