sql
stringlengths
6
1.05M
<filename>config/db.sql DROP DATABASE IF EXISTS p4blog; CREATE DATABASE p4blog CHARACTER SET 'utf8'; USE p4blog; -- ***** Tables for the Blog part ***** CREATE TABLE Posts ( id SMALLINT(5) UNSIGNED PRIMARY KEY AUTO_INCREMENT, title VARCHAR(50) NOT NULL UNIQUE, content LONGTEXT NOT NULL, created_date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=INNODB DEFAULT CHARSET=utf8; CREATE TABLE Admin ( id SMALLINT(5) UNSIGNED PRIMARY KEY AUTO_INCREMENT, first_name VARCHAR(50) NOT NULL, last_name VARCHAR(50) NOT NULL, nickname VARCHAR(50) NOT NULL, email VARCHAR(100) NOT NULL UNIQUE, pass VARCHAR(100) NOT NULL, status SET('admin','member','visitor') NOT NULL DEFAULT 'visitor' ) ENGINE=INNODB DEFAULT CHARSET=utf8; CREATE TABLE Comments ( id SMALLINT(5) UNSIGNED PRIMARY KEY AUTO_INCREMENT, author varchar(50) NOT NULL, content TEXT NOT NULL, created_date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, post_id SMALLINT(5) UNSIGNED NOT NULL, user_id SMALLINT(5) UNSIGNED NOT NULL, reported tinyint(1) NOT NULL, CONSTRAINT fk_post_id FOREIGN KEY (post_id) REFERENCES Posts(id), CONSTRAINT fk_user_id FOREIGN KEY (user_id) REFERENCES Admin(id) ) ENGINE=INNODB DEFAULT CHARSET=utf8;
/****** Object: StoredProcedure [system_p].[GetShotInfoPreplotLineInfo] Script Date: 01.07.2019 19:40:14 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [system_p].[GetShotInfoPreplotLineInfo] ( @KeyList nvarchar(max) ) AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON ; with preplot_coords as ( select pp.sailline_num, pp.shotpoint_num, pp.src_easting, pp.src_northing from [acquisition].[ShotInfo] si join survey.PreplotShotpoint pp on pp.sailline_num = si.sailline_num and pp.shotpoint_num = si.shotpoint_num where ShotInfoID in (select value from openjson ( @KeyList )) ) , min_max_shotpoint_nums as ( select sailline_num, min(shotpoint_num) min_shotpoint_num, max(shotpoint_num) max_shotpoint_num from survey.PreplotShotpoint group by sailline_num ) , min_shotpoints as ( select pp.sailline_num, pp.shotpoint_num, pp.sail_easting, pp.sail_northing from survey.PreplotShotpoint pp join min_max_shotpoint_nums mn on mn.min_shotpoint_num = pp.shotpoint_num and mn.sailline_num = pp.sailline_num ) , max_shotpoints as ( select pp.sailline_num, pp.shotpoint_num, pp.sail_easting, pp.sail_northing from survey.PreplotShotpoint pp join min_max_shotpoint_nums mx on mx.max_shotpoint_num = pp.shotpoint_num and mx.sailline_num = pp.sailline_num ) select preplot_coords.sailline_num, preplot_coords.shotpoint_num, preplot_coords.src_easting, preplot_coords.src_northing, min_shotpoints.sail_northing min_sail_northing, min_shotpoints.sail_easting min_sail_easting, max_shotpoints.sail_northing max_sail_northing, max_shotpoints.sail_easting max_sail_easting from preplot_coords join max_shotpoints on max_shotpoints.sailline_num = preplot_coords.sailline_num join min_shotpoints on min_shotpoints.sailline_num = preplot_coords.sailline_num END GO
<reponame>NYCPlanning/civic-data-loader -- create table to load csv from the nyc open data portal DROP TABLE IF EXISTS nysdec_facilities_solidwaste; CREATE TABLE nysdec_facilities_solidwaste ( Facility_Name text, Location_Address text, Location_Address2 text, City text, State text, Zip_Code text, County text, Region text, Phone_Number text, Owner_Name text, Owner_Type text, Activity_Desc text, Activity_Number text, Active text, East_Coordinate double precision, North_Coordinate double precision, Accuracy_Code text, Waste_Types text, Regulatory_Status text, Authorization_Number text, Authorization_Issue_Date date, Expiration_Date date, Location text )
<gh_stars>1-10 CREATE TABLE [dbo].[dnn_Assemblies] ( [AssemblyID] INT IDENTITY (1, 1) NOT NULL, [PackageID] INT NULL, [AssemblyName] NVARCHAR (250) NOT NULL, [Version] NVARCHAR (20) NOT NULL, CONSTRAINT [PK_dnn_PackageAssemblies] PRIMARY KEY CLUSTERED ([AssemblyID] ASC), CONSTRAINT [FK_dnn_PackageAssemblies_PackageAssemblies] FOREIGN KEY ([PackageID]) REFERENCES [dbo].[dnn_Packages] ([PackageID]) ON DELETE CASCADE );
<filename>backend/prisma/migrations/20201231122158_init/migration.sql -- CreateTable CREATE TABLE "Project" ( "id" SERIAL, "title" TEXT NOT NULL, "userId" INTEGER NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "User" ( "id" SERIAL, "email" TEXT NOT NULL, "name" TEXT, "password" TEXT, PRIMARY KEY ("id") ); -- CreateIndex CREATE UNIQUE INDEX "Project.userId_unique" ON "Project"("userId"); -- CreateIndex CREATE UNIQUE INDEX "User.email_unique" ON "User"("email"); -- AddForeignKey ALTER TABLE "Project" ADD FOREIGN KEY("userId")REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
<reponame>semanticinsight/BIML-DataProvisioning-Framework<filename>BIML.Framework.RDBMS/SemanticInsight.Weave/SemanticInsight.SSISDB/semanticinsight/Stored Procedures/get_data_object_mapping_id.sql  CREATE procedure [semanticinsight].[get_data_object_mapping_id] ( @@source_component_application_name nvarchar(50), @@source_data_schema_name nvarchar(132), @@source_data_object_name nvarchar(150), @@destination_component_application_name nvarchar(50), @@destination_data_schema_name nvarchar(132), @@destination_data_object_name nvarchar(150) ) as begin select dom.data_object_mapping_id from semanticinsight.data_object_mapping dom join semanticinsight.data_object sdo on dom.source_data_object_id = sdo.data_object_id and sdo.name = @@source_data_object_name join semanticinsight.data_schema sds on sdo.data_schema_id = sds.data_schema_id and sds.schema_name = @@source_data_schema_name join semanticinsight.system_component scs on scs.system_component_id = sds.system_component_id and scs.component_application_name = @@source_component_application_name join semanticinsight.data_object ddo on dom.destination_data_object_id = ddo.data_object_id and ddo.name = @@destination_data_object_name join semanticinsight.data_schema dds on ddo.data_schema_id = dds.data_schema_id and dds.schema_name = @@destination_data_schema_name join semanticinsight.system_component dcs on dcs.system_component_id = dds.system_component_id and dcs.component_application_name = @@destination_component_application_name end
<reponame>zjustus/ShelbyArena<gh_stars>1-10 DECLARE @event_id int = 1086 /* SELECT reg.person_id, phone.phone_number, phone.sms_enabled FROM dbo.evnt_registrant as reg LEFT JOIN dbo.core_person_phone as phone on reg.person_id = phone.person_id where profile_id = @event_id */ /** This updates phone numbers of a given event tag to enable SMS to true **/ UPDATE dbo.core_person_phone SET sms_enabled = 1 where person_id IN (SELECT person_id from dbo.evnt_registrant where profile_id = @event_id) AND phone_number IS NOT NULL
<filename>egov/egov-commons/src/main/resources/db/migration/main/V20160127144355__common_jpa_changes_revertfile.sql ALTER TABLE Accountdetailtype Drop COLUMN version ; ALTER TABLE Bank Drop COLUMN version ; ALTER TABLE Bankbranch Drop COLUMN version ; ALTER TABLE ChartOfACcountDetail Drop COLUMN version ; ALTER TABLE ChartOfACcounts Drop COLUMN version ; ALTER TABLE FinancialYear Drop COLUMN version ; ALTER TABLE Function Drop COLUMN version ; ALTER TABLE GeneralLedger Drop COLUMN version ; ALTER TABLE GeneralLedgerDetail Drop COLUMN version ; ALTER TABLE Eg_Surrendered_Cheques Drop COLUMN version ; ALTER TABLE Financial_Institution Drop COLUMN version ; ALTER TABLE Functionary Drop COLUMN version ; ALTER TABLE Fund Drop COLUMN version ; ALTER TABLE Fundsource Drop COLUMN version ; ALTER TABLE Scheme Drop COLUMN version ; ALTER TABLE Sub_Scheme Drop COLUMN version ; ALTER TABLE Accountdetailtype Drop COLUMN createdby ; ALTER TABLE Accountdetailtype Drop COLUMN createdDate ; ALTER TABLE Accountdetailtype Drop COLUMN lastModifiedBy ; ALTER TABLE Accountdetailtype Drop COLUMN lastModifiedDate ; ALTER TABLE Bank Drop COLUMN createdby ; ALTER TABLE Bank Drop COLUMN createdDate ; ALTER TABLE Bank Drop COLUMN lastModifiedBy ; ALTER TABLE Bank Drop COLUMN lastModifiedDate ; ALTER TABLE Bankbranch Drop COLUMN createdby ; ALTER TABLE Bankbranch Drop COLUMN createdDate ; ALTER TABLE Bankbranch Drop COLUMN lastModifiedBy ; ALTER TABLE Bankbranch Drop COLUMN lastModifiedDate ; ALTER TABLE ChartOfACcountDetail Drop COLUMN createdby ; ALTER TABLE ChartOfACcountDetail Drop COLUMN createdDate ; ALTER TABLE ChartOfACcountDetail Drop COLUMN lastModifiedBy ; ALTER TABLE ChartOfACcountDetail Drop COLUMN lastModifiedDate ; ALTER TABLE ChartOfACcounts Drop COLUMN createdby ; ALTER TABLE ChartOfACcounts Drop COLUMN createdDate ; ALTER TABLE ChartOfACcounts Drop COLUMN lastModifiedBy ; ALTER TABLE ChartOfACcounts Drop COLUMN lastModifiedDate ; ALTER TABLE FinancialYear Drop COLUMN createdby ; ALTER TABLE FinancialYear Drop COLUMN createdDate ; ALTER TABLE FinancialYear Drop COLUMN lastModifiedBy ; ALTER TABLE FinancialYear Drop COLUMN lastModifiedDate ; ALTER TABLE Function Drop COLUMN createdby ; ALTER TABLE Function Drop COLUMN createdDate ; ALTER TABLE Function Drop COLUMN lastModifiedBy ; ALTER TABLE Function Drop COLUMN lastModifiedDate ; ALTER TABLE Functionary Drop COLUMN createdby ; ALTER TABLE Functionary Drop COLUMN createdDate ; ALTER TABLE Functionary Drop COLUMN lastModifiedBy ; ALTER TABLE Functionary Drop COLUMN lastModifiedDate ; ALTER TABLE Fund Drop COLUMN createdby ; ALTER TABLE Fund Drop COLUMN createdDate ; ALTER TABLE Fund Drop COLUMN lastModifiedBy ; ALTER TABLE Fund Drop COLUMN lastModifiedDate ; ALTER TABLE Fundsource Drop COLUMN createdby ; ALTER TABLE Fundsource Drop COLUMN createdDate ; ALTER TABLE Fundsource Drop COLUMN lastModifiedBy ; ALTER TABLE Fundsource Drop COLUMN lastModifiedDate ; ALTER TABLE accountdetailtype ADD COLUMN created date; ALTER TABLE accountdetailtype ADD COLUMN lastmodified date; ALTER TABLE accountdetailtype ADD COLUMN modifiedby bigint; ALTER TABLE Bank ADD COLUMN created date; ALTER TABLE Bank ADD COLUMN lastmodified date; ALTER TABLE Bank ADD COLUMN modifiedby bigint; ALTER TABLE Bankbranch ADD COLUMN created date; ALTER TABLE Bankbranch ADD COLUMN lastmodified date; ALTER TABLE Bankbranch ADD COLUMN modifiedby bigint; ALTER TABLE ChartOfACcountDetail ADD COLUMN createdby bigint; ALTER TABLE ChartOfACcountDetail ADD COLUMN createddate date; ALTER TABLE ChartOfACcountDetail ADD COLUMN modifieddate date; ALTER TABLE ChartOfACcountDetail ADD COLUMN modifiedby bigint; ALTER TABLE ChartOfACcounts ADD COLUMN created date; ALTER TABLE ChartOfACcounts ADD COLUMN createdby bigint; ALTER TABLE ChartOfACcounts ADD COLUMN lastmodified date ; ALTER TABLE ChartOfACcounts ADD COLUMN modifiedby bigint; ALTER TABLE FinancialYear ADD COLUMN created date; ALTER TABLE FinancialYear ADD COLUMN lastmodified date ; ALTER TABLE FinancialYear ADD COLUMN modifiedby bigint; ALTER TABLE Function ADD COLUMN created date; ALTER TABLE Function ADD COLUMN createdby bigint; ALTER TABLE Function ADD COLUMN lastmodified date ; ALTER TABLE Function ADD COLUMN modifiedby bigint; ALTER TABLE Functionary ADD COLUMN createtimestamp date; ALTER TABLE Functionary ADD COLUMN updatetimestamp date; ALTER TABLE Fund ADD COLUMN created date; ALTER TABLE Fund ADD COLUMN lastmodified date ; ALTER TABLE Fund ADD COLUMN modifiedby bigint; ALTER TABLE Fund ADD COLUMN createdby bigint; ALTER TABLE Fundsource ADD COLUMN created date; ALTER TABLE Fundsource ADD COLUMN createdby bigint; ALTER TABLE Fundsource ADD COLUMN lastmodifieddate date; ALTER TABLE Fundsource ADD COLUMN lastmodifiedby bigint;
<filename>samples/applications/iot-smart-grid/Db/dbo/Stored Procedures/InsertMeterMeasurement.sql  CREATE PROCEDURE [dbo].[InsertMeterMeasurement] @Batch AS dbo.udtMeterMeasurement READONLY, @BatchSize INT WITH NATIVE_COMPILATION, SCHEMABINDING AS BEGIN ATOMIC WITH (TRANSACTION ISOLATION LEVEL=SNAPSHOT, LANGUAGE=N'English') DECLARE @i INT = 1 DECLARE @MeterID INT DECLARE @MeasurementInkWh DECIMAL(9, 4) DECLARE @PostalCode NVARCHAR(10) DECLARE @MeasurementDate DATETIME2(7) WHILE (@i <= @BatchSize) BEGIN SELECT @MeterID = MeterID, @MeasurementInkWh = MeasurementInkWh, @MeasurementDate = MeasurementDate, @PostalCode = PostalCode FROM @Batch WHERE RowID = @i UPDATE dbo.MeterMeasurement SET MeasurementInkWh += @MeasurementInkWh, MeasurementDate = @MeasurementDate, PostalCode = @PostalCode WHERE MeterID = @MeterID IF(@@ROWCOUNT = 0) BEGIN INSERT INTO dbo.MeterMeasurement (MeterID, MeasurementInkWh, PostalCode, MeasurementDate) VALUES (@MeterID, @MeasurementInkWh, @PostalCode, @MeasurementDate); END SET @i += 1 END END
<gh_stars>1-10 CREATE INDEX "userid_idx" on requests ("userid");
<filename>core/db/migrations/2.sql ALTER TABLE `page` ADD UNIQUE KEY `time_insert` (`time_insert`); ALTER TABLE `post` ADD UNIQUE KEY `time_insert` (`time_insert`); ALTER TABLE `user` ADD UNIQUE KEY `time_insert` (`time_insert`);
drop database inholland; create database inholland; use inholland; SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; CREATE TABLE IF NOT EXISTS `admin` ( `adminID` varchar(6) NOT NULL DEFAULT 'admin', `password` varchar(45) NOT NULL DEFAULT '<PASSWORD>' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `admin` (`adminID`, `password`) VALUES ('admin', '<PASSWORD>'); CREATE TABLE IF NOT EXISTS `course` ( `courseID` varchar(7) NOT NULL, `name` varchar(300) NOT NULL, `capacity` tinyint(1) unsigned NOT NULL, `studyload` tinyint(1) unsigned NOT NULL, `offer` bit(1) NOT NULL DEFAULT b'1' COMMENT '0 for not being offered, 1 for being offered' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; INSERT INTO `course` (`courseID`, `name`, `capacity`, `studyload`, `offer`) VALUES ('IBIS001', '3D printing: from Design to Print', 20, 40, b'1'), ('IBIS002', 'Advance your English! Cambridge English Advanced', 20, 40, b'1'), ('IBIS003', 'Advanced Selling Techniques: telephone acquisition', 20, 24, b'1'), ('IBIS004', 'Brain Food: Food for Thought', 20, 20, b'1'), ('IBIS005', 'Breaking Booking.com', 20, 18, b'1'), ('IBIS006', 'China and the West, a cultural and historical background', 20, 20, b'1'), ('IBIS007', 'Creative Urban Renewal', 20, 28, b'1'), ('IBIS008', 'Dutch Language and Culture for Beginners+', 20, 40, b'1'), ('IBIS009', 'Exploring possibilities of Virtual Reality', 20, 24, b'1'), ('IBIS010', 'Fast reading', 20, 6, b'1'), ('IBIS011', 'French, slightly advanced', 20, 56, b'1'), ('IBIS012', 'Growth hacking - how to get marketing attention without a marketing budget', 20, 24, b'1'), ('IBIS013', 'How we can learn to innovate from creative users and some mad designers and scientists', 20, 28, b'1'), ('IBIS014', 'Introduction to Graphic Design', 20, 20, b'1'), ('IBIS015', 'Introduction to Psychology', 20, 20, b'1'), ('IBIS016', 'Magazine making & Innovation', 20, 36, b'1'), ('IBIS017', 'Meaning in Music: The semiotics of Music in Culture', 20, 12, b'1'), ('IBIS018', 'Microsoft Excel for any level', 20, 28, b'1'), ('IBIS019', 'Movietime: stories for Business', 20, 36, b'1'), ('IBIS020', 'NLP: Key to be more effective in work and communication', 20, 14, b'1'), ('IBIS021', 'New Science of the Mind & Neuromarketing', 20, 24, b'1'), ('IBIS022', 'Opening the black box: how to develop a clever experience?', 20, 20, b'1'), ('IBIS023', 'Personal Branding & Networking', 20, 15, b'1'), ('IBIS024', 'Photoshop Fundamentals', 20, 56, b'1'), ('IBIS025', 'Religious or not: that’s the question', 20, 24, b'1'), ('IBIS026', 'Russia; an eagle looking in two directions', 20, 20, b'1'), ('IBIS027', 'Social Media Monitoring & Marketing', 20, 20, b'1'), ('IBIS028', 'Spain as a Brand', 20, 20, b'1'), ('IBIS029', 'Spanish A1/A2 (beginners)', 20, 56, b'1'), ('IBIS030', 'Speaking with Confidence', 20, 20, b'1'), ('IBIS031', 'Visual Harvesting: The Power of Visual Stories', 20, 8, b'1'), ('IBIS032', 'Website fundamental', 20, 24, b'1'); CREATE TABLE IF NOT EXISTS `enrolledstudent` ( `registrationID` char(10) NOT NULL, `studentID` varchar(6) NOT NULL, `courseID` varchar(7) NOT NULL, `grade` tinyint(1) unsigned DEFAULT NULL, `status` bit(1) DEFAULT NULL COMMENT '0 for fail, 1 for pass, null for currently taking' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `guestlecturer` ( `guestID` varchar(6) NOT NULL, `courseID` varchar(7) NOT NULL, `contactperson` varchar(50) DEFAULT NULL, `remark` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `lesson` ( `courseID` varchar(7) NOT NULL, `roomnumber` varchar(6) NOT NULL, `date` date NOT NULL, `time_start` time NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; INSERT INTO `lesson` (`courseID`, `roomnumber`, `date`, `time_start`) VALUES ('IBIS001', 'E-10', '2015-05-04', '09:00:00'), ('IBIS001', 'E-10', '2015-05-22', '12:00:00'), ('IBIS001', 'E-11', '2015-06-19', '09:00:00'), ('IBIS001', 'E-15', '2015-06-05', '09:00:00'), ('IBIS001', 'E-20', '2015-05-29', '12:00:00'), ('IBIS001', 'E-20', '2015-06-05', '12:00:00'), ('IBIS001', 'E-21', '2015-06-05', '15:00:00'), ('IBIS001', 'E-22', '2015-06-04', '09:00:00'), ('IBIS001', 'E-23', '2015-06-04', '12:00:00'), ('IBIS001', 'E-24', '2015-06-04', '15:00:00'), ('IBIS001', 'E-34', '2015-06-08', '09:00:00'), ('IBIS002', 'E-10', '2015-04-29', '09:00:00'), ('IBIS002', 'E-10', '2015-05-01', '12:00:00'), ('IBIS002', 'E-10', '2015-06-01', '09:00:00'), ('IBIS002', 'E-11', '2015-05-22', '12:00:00'), ('IBIS002', 'E-12', '2015-06-19', '12:00:00'), ('IBIS002', 'E-21', '2015-05-29', '12:00:00'), ('IBIS002', 'E-25', '2015-06-04', '12:00:00'), ('IBIS003', 'E-10', '2015-05-13', '09:00:00'), ('IBIS003', 'E-10', '2015-06-08', '12:00:00'), ('IBIS003', 'E-11', '2015-06-08', '15:00:00'), ('IBIS003', 'E-22', '2015-06-05', '09:00:00'), ('IBIS003', 'E-23', '2015-06-05', '12:00:00'), ('IBIS003', 'E-30', '2015-06-04', '09:00:00'), ('IBIS003', 'E-31', '2015-06-04', '12:00:00'), ('IBIS003', 'E-32', '2015-06-04', '15:00:00'), ('IBIS003', 'E-35', '2015-06-08', '09:00:00'), ('IBIS004', 'E-12', '2015-05-22', '12:00:00'), ('IBIS004', 'E-13', '2015-06-19', '15:00:00'), ('IBIS004', 'E-21', '2015-06-12', '15:00:00'), ('IBIS004', 'E-22', '2015-05-29', '12:00:00'), ('IBIS005', 'E-10', '2015-05-07', '15:00:00'), ('IBIS005', 'E-11', '2015-05-01', '12:00:00'), ('IBIS005', 'E-11', '2015-05-13', '09:00:00'), ('IBIS006', 'E-14', '2015-06-19', '12:00:00'), ('IBIS006', 'E-22', '2015-06-12', '09:00:00'), ('IBIS006', 'E-23', '2015-05-29', '09:00:00'), ('IBIS007', 'E-10', '2015-05-28', '15:00:00'), ('IBIS007', 'E-11', '2015-05-07', '15:00:00'), ('IBIS007', 'E-13', '2015-05-22', '12:00:00'), ('IBIS007', 'E-20', '2015-04-30', '15:00:00'), ('IBIS007', 'E-24', '2015-05-29', '15:00:00'), ('IBIS008', 'E-12', '2015-06-08', '12:00:00'), ('IBIS008', 'E-14', '2015-05-22', '12:00:00'), ('IBIS008', 'E-15', '2015-06-19', '12:00:00'), ('IBIS008', 'E-23', '2015-06-12', '12:00:00'), ('IBIS008', 'E-24', '2015-06-05', '12:00:00'), ('IBIS008', 'E-24', '2015-06-12', '15:00:00'), ('IBIS008', 'E-25', '2015-05-29', '12:00:00'), ('IBIS009', 'E-10', '2015-05-11', '09:00:00'), ('IBIS009', 'E-11', '2015-04-29', '09:00:00'), ('IBIS009', 'E-12', '2015-05-01', '15:00:00'), ('IBIS009', 'E-15', '2015-05-22', '15:00:00'), ('IBIS010', 'E-13', '2015-05-01', '09:00:00'), ('IBIS011', 'E-10', '2015-04-28', '15:00:00'), ('IBIS011', 'E-11', '2015-05-11', '09:00:00'), ('IBIS011', 'E-11', '2015-05-28', '15:00:00'), ('IBIS011', 'E-13', '2015-06-08', '12:00:00'), ('IBIS011', 'E-20', '2015-06-19', '12:00:00'), ('IBIS011', 'E-25', '2015-06-12', '12:00:00'), ('IBIS011', 'E-33', '2015-06-04', '12:00:00'), ('IBIS012', 'E-10', '2015-05-08', '09:00:00'), ('IBIS012', 'E-12', '2015-05-28', '15:00:00'), ('IBIS012', 'E-20', '2015-05-22', '09:00:00'), ('IBIS012', 'E-34', '2015-06-04', '15:00:00'), ('IBIS013', 'E-12', '2015-05-11', '09:00:00'), ('IBIS013', 'E-14', '2015-06-08', '12:00:00'), ('IBIS013', 'E-30', '2015-05-29', '09:00:00'), ('IBIS013', 'E-35', '2015-06-04', '12:00:00'), ('IBIS014', 'E-11', '2015-05-08', '15:00:00'), ('IBIS014', 'E-12', '2015-04-29', '09:00:00'), ('IBIS014', 'E-21', '2015-05-22', '15:00:00'), ('IBIS014', 'E-31', '2015-05-29', '15:00:00'), ('IBIS015', 'E-12', '2015-05-08', '12:00:00'), ('IBIS015', 'E-14', '2015-05-01', '12:00:00'), ('IBIS015', 'E-22', '2015-05-22', '12:00:00'), ('IBIS015', 'E-32', '2015-05-29', '12:00:00'), ('IBIS016', 'E-10', '2015-06-04', '15:00:00'), ('IBIS016', 'E-11', '2015-05-04', '09:00:00'), ('IBIS016', 'E-23', '2015-05-22', '12:00:00'), ('IBIS016', 'E-33', '2015-05-29', '12:00:00'), ('IBIS017', 'E-13', '2015-05-11', '09:00:00'), ('IBIS017', 'E-24', '2015-05-22', '09:00:00'), ('IBIS017', 'E-25', '2015-06-05', '09:00:00'), ('IBIS018', 'E-12', '2015-05-04', '09:00:00'), ('IBIS018', 'E-12', '2015-05-13', '09:00:00'), ('IBIS018', 'E-21', '2015-06-19', '09:00:00'), ('IBIS018', 'E-30', '2015-06-05', '09:00:00'), ('IBIS018', 'E-30', '2015-06-12', '09:00:00'), ('IBIS019', 'E-11', '2015-04-28', '15:00:00'), ('IBIS019', 'E-12', '2015-06-02', '15:00:00'), ('IBIS019', 'E-13', '2015-05-08', '15:00:00'), ('IBIS019', 'E-15', '2015-05-01', '15:00:00'), ('IBIS019', 'E-25', '2015-05-22', '15:00:00'), ('IBIS019', 'E-31', '2015-06-12', '15:00:00'), ('IBIS019', 'E-34', '2015-05-29', '15:00:00'), ('IBIS020', 'E-11', '2015-06-04', '15:00:00'), ('IBIS020', 'E-13', '2015-05-28', '15:00:00'), ('IBIS020', 'E-13', '2015-06-02', '15:00:00'), ('IBIS021', 'E-13', '2015-04-29', '09:00:00'), ('IBIS021', 'E-13', '2015-05-13', '09:00:00'), ('IBIS021', 'E-15', '2015-06-08', '09:00:00'), ('IBIS021', 'E-20', '2015-06-03', '09:00:00'), ('IBIS022', 'E-10', '2015-05-12', '15:00:00'), ('IBIS022', 'E-13', '2015-05-04', '09:00:00'), ('IBIS022', 'E-14', '2015-04-29', '09:00:00'), ('IBIS022', 'E-35', '2015-05-29', '09:00:00'), ('IBIS023', 'E-22', '2015-06-19', '15:00:00'), ('IBIS023', 'E-32', '2015-06-12', '15:00:00'), ('IBIS024', 'E-11', '2015-05-12', '15:00:00'), ('IBIS024', 'E-12', '2015-04-28', '15:00:00'), ('IBIS024', 'E-12', '2015-05-07', '15:00:00'), ('IBIS024', 'E-12', '2015-06-04', '15:00:00'), ('IBIS024', 'E-14', '2015-05-28', '15:00:00'), ('IBIS025', 'E-14', '2015-06-02', '15:00:00'), ('IBIS025', 'E-23', '2015-06-19', '12:00:00'), ('IBIS025', 'E-31', '2015-06-05', '12:00:00'), ('IBIS025', 'E-33', '2015-06-12', '12:00:00'), ('IBIS026', 'E-12', '2015-05-12', '15:00:00'), ('IBIS026', 'E-13', '2015-04-28', '15:00:00'), ('IBIS026', 'E-13', '2015-06-04', '15:00:00'), ('IBIS026', 'E-30', '2015-05-22', '12:00:00'), ('IBIS027', 'E-13', '2015-05-12', '15:00:00'), ('IBIS027', 'E-20', '2015-05-01', '09:00:00'), ('IBIS028', 'E-20', '2015-06-08', '12:00:00'), ('IBIS028', 'E-21', '2015-06-03', '09:00:00'), ('IBIS028', 'E-32', '2015-06-05', '09:00:00'), ('IBIS029', 'E-11', '2015-06-01', '09:00:00'), ('IBIS029', 'E-14', '2015-05-04', '09:00:00'), ('IBIS029', 'E-14', '2015-05-11', '09:00:00'), ('IBIS029', 'E-14', '2015-06-04', '12:00:00'), ('IBIS029', 'E-15', '2015-04-29', '09:00:00'), ('IBIS029', 'E-24', '2015-06-19', '12:00:00'), ('IBIS029', 'E-34', '2015-06-12', '12:00:00'), ('IBIS030', 'E-13', '2015-05-07', '15:00:00'), ('IBIS030', 'E-14', '2015-04-28', '15:00:00'), ('IBIS030', 'E-15', '2015-05-11', '09:00:00'), ('IBIS030', 'E-15', '2015-05-28', '15:00:00'), ('IBIS031', 'E-25', '2015-06-19', '15:00:00'), ('IBIS031', 'E-35', '2015-06-12', '15:00:00'), ('IBIS032', 'E-10', '2015-06-12', '12:00:00'), ('IBIS032', 'E-15', '2015-06-02', '15:00:00'), ('IBIS032', 'E-30', '2015-06-19', '12:00:00'), ('IBIS032', 'E-33', '2015-06-05', '12:00:00'); CREATE TABLE IF NOT EXISTS `person` ( `personID` varchar(6) NOT NULL, `firstName` varchar(45) NOT NULL, `lastName` varchar(45) NOT NULL, `type` enum('student','teacher','guest-lecturer','admin') NOT NULL, `current` enum('0','1') NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `person` (`personID`, `firstName`, `lastName`, `type`, `current`) VALUES ('11111', 'Harald', 'Drillenburg', 'teacher', '1'), ('22222', 'Kroes', 'Belinda', 'teacher', '1'), ('33333', 'Penning', 'Margje', 'teacher', '1'), ('44444', 'Reeb-Gruber', 'Sandra', 'teacher', '1'), ('523001', 'Shamil', 'Karimli', 'student', '0'), ('552301', 'Sasmita', 'Santoso', 'student', '1'), ('557797', 'Abraham', 'Foto', 'student', '1'), ('559942', 'Louis', 'Le', 'student', '1'), ('admin', 'admin', 'admin', 'admin', '1'), ('ext001', 'Michael', 'Guirella', 'guest-lecturer', '1'), ('ext002', 'Jan', 'Bakker', 'guest-lecturer', '1'), ('ext003', 'Tim', 'Timmerman', 'guest-lecturer', '1'); CREATE TABLE IF NOT EXISTS `registration` ( `registrationID` mediumint(6) NOT NULL, `opendate` date NOT NULL, `closedate` date DEFAULT NULL, `closedate2` date NOT NULL, `type` enum('first','second') NOT NULL DEFAULT 'first', `minimumstudents` int(2) NOT NULL DEFAULT '0', `minimumcredits` tinyint(3) unsigned NOT NULL, `current` enum('1','0') NOT NULL DEFAULT '0' ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `room` ( `room_number` varchar(6) NOT NULL, `capacity` tinyint(1) unsigned DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `room` (`room_number`, `capacity`) VALUES ('E-10', 20), ('E-11', 20), ('E-12', 20), ('E-13', 30), ('E-14', 30), ('E-15', 20), ('E-20', 20), ('E-21', 20), ('E-22', 30), ('E-23', 30), ('E-24', 20), ('E-25', 20), ('E-30', 20), ('E-31', 20), ('E-32', 30), ('E-33', 30), ('E-34', 20), ('E-35', 20); CREATE TABLE IF NOT EXISTS `student` ( `studentID` varchar(6) NOT NULL, `email` varchar(30) NOT NULL, `sent` tinyint(1) unsigned DEFAULT NULL, `password` varchar(32) DEFAULT NULL, `set_code` varchar(8) DEFAULT NULL, `allowToReg` bit(1) DEFAULT b'0' COMMENT '0 for not allowed, 1 for allowed' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `student` (`studentID`, `email`, `sent`, `password`, `set_code`, `allowToReg`) VALUES ('523001', '<EMAIL>', 0, 'f65deaf5fea7a7936e8fd8413c224023', NULL, b'1'), ('552301', '<EMAIL>', 0, 'f65deaf5fea7a7936e8fd8413c224023', NULL, b'1'), ('557797', '<EMAIL>', 0, 'f65deaf5fea7a7936e8fd8413c224023', NULL, b'1'), ('559942', '<EMAIL>', 5, 'f65deaf5fea7a7936e8fd8413c224023', 'SJ1QD3WL', b'1'); CREATE TABLE IF NOT EXISTS `teacher` ( `teacherID` varchar(6) NOT NULL, `courseID` varchar(7) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; INSERT INTO `teacher` (`teacherID`, `courseID`) VALUES ('44444', 'IBIS001'), ('11111', 'IBIS002'), ('22222', 'IBIS003'), ('44444', 'IBIS004'), ('11111', 'IBIS005'), ('22222', 'IBIS006'), ('33333', 'IBIS007'), ('44444', 'IBIS008'), ('11111', 'IBIS009'), ('22222', 'IBIS010'), ('33333', 'IBIS011'), ('44444', 'IBIS012'), ('11111', 'IBIS013'), ('22222', 'IBIS014'), ('33333', 'IBIS015'), ('44444', 'IBIS016'), ('11111', 'IBIS017'), ('22222', 'IBIS018'), ('33333', 'IBIS019'), ('44444', 'IBIS020'), ('11111', 'IBIS021'), ('22222', 'IBIS022'), ('33333', 'IBIS023'), ('44444', 'IBIS024'), ('11111', 'IBIS025'), ('22222', 'IBIS026'), ('33333', 'IBIS027'), ('44444', 'IBIS028'), ('11111', 'IBIS029'), ('22222', 'IBIS030'), ('33333', 'IBIS031'), ('44444', 'IBIS032'); ALTER TABLE `course` ADD PRIMARY KEY (`courseID`); ALTER TABLE `enrolledstudent` ADD PRIMARY KEY (`registrationID`,`studentID`,`courseID`); ALTER TABLE `person` ADD PRIMARY KEY (`personID`), ADD KEY `personID` (`personID`); ALTER TABLE `registration` ADD PRIMARY KEY (`registrationID`); ALTER TABLE `room` ADD PRIMARY KEY (`room_number`); ALTER TABLE `student` ADD PRIMARY KEY (`studentID`), ADD KEY `fk_student_person1_idx` (`studentID`); ALTER TABLE `teacher` ADD PRIMARY KEY (`teacherID`,`courseID`), ADD KEY `courseID_FK_idx` (`courseID`); ALTER TABLE `registration` MODIFY `registrationID` mediumint(6) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=13; ALTER TABLE `student` ADD CONSTRAINT `fk_student_person1` FOREIGN KEY (`studentID`) REFERENCES `person` (`personID`) ON DELETE NO ACTION ON UPDATE NO ACTION;
<reponame>fivetran-jamie/dbt_asana with __dbt__CTE__asana_task_followers as ( with task_follower as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_task_follower` ), asana_user as ( select * from `dbt-package-testing`.`dbt_jamie`.`stg_asana_user` ), agg_followers as ( select task_follower.task_id, string_agg(asana_user.user_name, ', ') as followers, count(*) as number_of_followers from task_follower join asana_user on asana_user.user_id = task_follower.user_id group by 1 ) select * from agg_followers )select count(*) as validation_errors from __dbt__CTE__asana_task_followers where task_id is null
<filename>src/test/resources/tpch_test_query/presto_new/query21.sql select s_name, count(1) as numwait from ( select s_name from ( select s_name, t2.orderkey, l_suppkey, countsuppkey, maxsuppkey from ( select l.orderkey, count(l.suppkey) countsuppkey, max(l.suppkey) as maxsuppkey from SCRAMBLE_SCHEMA.lineitem l where l.receiptdate > l.commitdate and l.orderkey is not null group by l.orderkey) as t2 right outer join (select s_name, l_orderkey, l_suppkey from (select s_name, t1.orderkey as l_orderkey, l2.suppkey as l_suppkey, countsuppkey, maxsuppkey from (select l.orderkey, count(l.suppkey) as countsuppkey, max(l.suppkey) as maxsuppkey from SCRAMBLE_SCHEMA.lineitem l where l.orderkey is not null group by l.orderkey) as t1 join (select s_name, l1.orderkey, l1.suppkey from SCRAMBLE_SCHEMA.orders o join (select s."name" as s_name, l.orderkey, l.suppkey from TPCH_SCHEMA.nation n join TPCH_SCHEMA.supplier s on s.nationkey = n.nationkey join SCRAMBLE_SCHEMA.lineitem l on s.suppkey = l.suppkey where l.receiptdate > l.commitdate and l.orderkey is not null) l1 on o.orderkey = l1.orderkey ) l2 on l2.orderkey = t1.orderkey ) a where (countsuppkey > 1) or ((countsuppkey=1) and (l_suppkey <> maxsuppkey)) ) l3 on l_orderkey = t2.orderkey ) b where (countsuppkey is null) or ((countsuppkey=1) and (l_suppkey = maxsuppkey)) ) c group by s_name order by numwait desc, s_name
<reponame>shanghai-edu/oauth-server-lite<gh_stars>1-10 create database oauth DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_general_ci; USE oauth; SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; DROP TABLE IF EXISTS `oauth_access_token`; CREATE TABLE `oauth_access_token` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `access_token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `scope` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `client_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `user_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `expired_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE INDEX `uix_oauth_access_token_access_token`(`access_token`), INDEX `idx_oauth_access_token_user_id`(`user_id`) ) ENGINE = InnoDB CHARACTER SET = utf8mb4; DROP TABLE IF EXISTS `oauth_client`; CREATE TABLE `oauth_client` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `client_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `client_secret` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `grant_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `domain` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `white_ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `scope` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE INDEX `uix_oauth_client_client_id`(`client_id`) ) ENGINE = InnoDB CHARACTER SET = utf8mb4; DROP TABLE IF EXISTS `oauth_refresh_token`; CREATE TABLE `oauth_refresh_token` ( `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `refresh_token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `client_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `user_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '', `expired_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE INDEX `uix_oauth_refresh_token_refresh_token`(`refresh_token`), INDEX `idx_oauth_refresh_token_user_id`(`user_id`) ) ENGINE = InnoDB CHARACTER SET = utf8mb4;
select date, count(*) c from {{ ref('noaa_gsod') }} group by 1 order by 1 desc limit 10
<filename>db/Stored Procedures/UpdateDocument.sql<gh_stars>1-10  CREATE PROCEDURE [dbo].[UpdateDocument] ( @ID UNIQUEIDENTIFIER, @ParentID UNIQUEIDENTIFIER, @Title NVARCHAR(128), @Body NVARCHAR(max), @Slug NVARCHAR(256), @Username NVARCHAR(128), @Tags [dbo].[TagList] READONLY, @IsPublic BIT ) AS BEGIN SET NOCOUNT ON DECLARE @RandomSlug NVARCHAR(5) WHILE EXISTS (SELECT * FROM Documents WHERE Slug = @Slug AND ID != @ID) BEGIN SET @RandomSlug = (SELECT LOWER(LEFT(NEWID(), 5))) SET @Slug = @Slug + '-' + @RandomSlug END UPDATE Documents SET ParentID = @ParentID, Title = @Title, Body = @Body, Slug = @Slug, Username = @Username, IsPublic = @IsPublic, Updated = GETDATE() WHERE ID = @ID EXEC UpdateDocumentLocations EXEC UpdateTags @ID, @Tags END
<filename>ddcms/sqlTemplate/articleType/index.sql ###ArticleType分页查询 带模糊查询功能 #sql("getPage") SELECT * FROM dms_article_type WHERE ( dms_article_type.name LIKE #para(searchKey) ) AND dms_article_type.create_time BETWEEN #para(dateStartStr) AND #para(dateEndStr) #if(sortName!=null) ORDER BY dms_article_type.#(sortName) dms_article_type.#(sortOrder) #else ORDER BY dms_article_type.create_time DESC #end #end
<gh_stars>1-10 #-- Copyright 2022 Google LLC #-- #-- Licensed under the Apache License, Version 2.0 (the "License"); #-- you may not use this file except in compliance with the License. #-- You may obtain a copy of the License at #-- #-- https://www.apache.org/licenses/LICENSE-2.0 #-- #-- Unless required by applicable law or agreed to in writing, software #-- distributed under the License is distributed on an "AS IS" BASIS, #-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #-- See the License for the specific language governing permissions and #-- limitations under the License. CREATE OR REPLACE VIEW `{{ project_id_tgt }}.{{ dataset_reporting_tgt }}.CurrencyConvUtil` OPTIONS( descriptiON = "Utility for Currency Conversion" ) AS WITH tcurf AS ( SELECT mandt, kurst, fcurr, tcurr, gdatu, ffact, tfact, CAST( gdatu AS DECIMAL) AS decGDATU FROM `{{ project_id_src }}.{{ dataset_cdc_processed }}.tcurf` WHERE kurst = 'M' AND mandt = '{{ mandt }}' ), maxCURR AS ( SELECT tc1.mandt, tc1.fcurr, tc1.tcurr, tc1.decGDATU AS decFROMGDATU, tc2.decGDATU AS decToGDATU FROM tcurf AS tc1 INNER JOIN tcurf AS tc2 ON tc1.mandt = tc2.mandt WHERE tc1.decGDATU > tc2.decGDATU AND tc1.mandt = '{{ mandt }}' ), currUNI AS ( SELECT mandt, fcurr, tcurr, decFROMGDATU AS FROMGDATU, MAX(decToGDATU) AS ToGDATU FROM maxCURR WHERE mandt = '{{ mandt }}' GROUP BY mandt, fcurr, tcurr, decFROMGDATU UNION ALL SELECT mandt, fcurr, tcurr, MIN(decGDATU) AS GDATU, MIN(decGDATU) AS minGDATU FROM tcurf WHERE mandt = '{{ mandt }}' GROUP BY mandt, fcurr, tcurr ) SELECT curr.mandt AS Client_mandt, curr.fcurr AS SourceCurrency_FCURR, curr.tcurr AS TargetCurrency_TCURR, curr.FROMGDATU AS DateFROM, curr.ToGDATU AS DateTo, t.FFACT, t.TFACT, IF(x.currdec IS NULL, 2, x.currdec) AS FROMCurrDecimal, IF(y.currdec IS NULL, 2, y.currdec) AS toCurrDecimal, ( 10 * ( IF(y.currdec IS NULL, 2, y.currdec) - IF(x.currdec IS NULL, 2, x.currdec) ) ) * (t.FFACT / t.TFACT) AS ConversionFactor, ( 99999999 - curr.FROMGDATU ) AS validFROMDate, ( 99999998 - curr.ToGDATU ) AS validToDate FROM currUNI AS curr INNER JOIN tcurf AS t ON curr.mandt = t.mandt AND curr.fcurr = t.fcurr AND curr.tcurr = t.tcurr AND curr.FROMGDATU = t.decGDATU INNER JOIN `{{ project_id_src }}.{{ dataset_cdc_processed }}.tcurx` AS x ON curr.fcurr = x.currkey INNER JOIN `{{ project_id_src }}.{{ dataset_cdc_processed }}.tcurx` AS y ON curr.tcurr = y.currkey AND curr.mandt = '{{ mandt }}'
SELECT * FROM t1 AS t1 WHERE EXISTS (SELECT 1 FROM t2 AS t2 WHERE t1.col1 = t2.col1);
CREATE OR REPLACE FUNCTION concat_array_elements(text[]) RETURNS TEXT AS $$ my $arg = shift; my $result = ""; return undef if (!defined $arg); # as an array reference for (@$arg) { $result .= $_; } # also works as a string $result .= $arg; return $result; $$ LANGUAGE plperl; SELECT concat_array_elements(ARRAY['PL','/','Perl']);
/* Navicat MySQL Data Transfer Source Server : localhoat Source Server Version : 50505 Source Host : localhost:3306 Source Database : arz Target Server Type : MYSQL Target Server Version : 50505 File Encoding : 65001 Date: 2016-09-29 22:44:32 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for bank -- ---------------------------- DROP TABLE IF EXISTS `bank`; CREATE TABLE `bank` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `trid` int(11) NOT NULL, `sts` tinyint(4) NOT NULL, `close` tinyint(1) NOT NULL, `bank_code` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `response_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of bank -- ---------------------------- -- ---------------------------- -- Table structure for bid -- ---------------------------- DROP TABLE IF EXISTS `bid`; CREATE TABLE `bid` ( `bid` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tid` int(10) unsigned DEFAULT NULL, `tbl` smallint(6) DEFAULT NULL, PRIMARY KEY (`bid`) ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of bid -- ---------------------------- INSERT INTO `bid` VALUES ('1', '2', '1'); INSERT INTO `bid` VALUES ('2', '3', '1'); INSERT INTO `bid` VALUES ('3', '3', '2'); INSERT INTO `bid` VALUES ('4', '4', '2'); INSERT INTO `bid` VALUES ('5', '12', '3'); INSERT INTO `bid` VALUES ('6', '5', '2'); INSERT INTO `bid` VALUES ('7', '13', '3'); INSERT INTO `bid` VALUES ('8', '6', '2'); INSERT INTO `bid` VALUES ('9', '14', '3'); INSERT INTO `bid` VALUES ('10', '7', '2'); INSERT INTO `bid` VALUES ('11', '4', '1'); INSERT INTO `bid` VALUES ('12', '5', '1'); INSERT INTO `bid` VALUES ('13', '1', '2'); INSERT INTO `bid` VALUES ('14', '6', '1'); INSERT INTO `bid` VALUES ('15', '7', '1'); INSERT INTO `bid` VALUES ('16', '8', '1'); INSERT INTO `bid` VALUES ('17', '9', '1'); INSERT INTO `bid` VALUES ('18', '3', '2'); INSERT INTO `bid` VALUES ('19', '4', '2'); INSERT INTO `bid` VALUES ('20', '5', '2'); INSERT INTO `bid` VALUES ('21', '6', '2'); INSERT INTO `bid` VALUES ('22', '8', '2'); INSERT INTO `bid` VALUES ('23', '10', '1'); INSERT INTO `bid` VALUES ('24', '11', '1'); INSERT INTO `bid` VALUES ('25', '12', '1'); INSERT INTO `bid` VALUES ('26', '13', '1'); INSERT INTO `bid` VALUES ('27', '14', '1'); INSERT INTO `bid` VALUES ('28', '15', '1'); INSERT INTO `bid` VALUES ('29', '16', '1'); INSERT INTO `bid` VALUES ('30', '17', '1'); -- ---------------------------- -- Table structure for coupon -- ---------------------------- DROP TABLE IF EXISTS `coupon`; CREATE TABLE `coupon` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of coupon -- ---------------------------- -- ---------------------------- -- Table structure for customer -- ---------------------------- DROP TABLE IF EXISTS `customer`; CREATE TABLE `customer` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `bid` bigint(20) unsigned NOT NULL, `fname` varchar(40) COLLATE utf8_unicode_ci NOT NULL, `lname` varchar(40) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL, `type` tinyint(4) NOT NULL, `password` varchar(60) COLLATE utf8_unicode_ci NOT NULL, `mobile` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL, `phone2` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL, `phone3` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL, `count_transaction` int(11) NOT NULL, `sts` tinyint(4) NOT NULL, `active` tinyint(1) DEFAULT NULL, `personal_picture` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `ncode` varchar(20) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of customer -- ---------------------------- INSERT INTO `customer` VALUES ('1', '13', 'asd', 'asd', '<EMAIL>', '0', 'aslmmasm ', '09124522125', null, null, '0', '0', null, null, '2016-09-24 10:52:44', '2016-09-24 10:52:44', null, ''); INSERT INTO `customer` VALUES ('3', '18', 'ahma', 'azizan', '<EMAIL>', '0', '$2y$10$tBBGQX.kX0vnZA/meEF4temf2Nv2DNcH7rYXmHVCBomSD0dIVjf7S', '09124531254', null, null, '0', '0', null, null, '2016-09-25 08:54:06', '2016-09-25 08:54:06', null, '1270058673'); INSERT INTO `customer` VALUES ('4', '19', 'ahmadreza', 'azizan', '<EMAIL>', '0', '$2y$10$1ReqpxVAL29IGaQvHSiqzOE6qFupMSl3wkK1RCNBdbUoEn6ZVb46O', '09125631472', null, null, '0', '0', null, null, '2016-09-25 13:40:07', '2016-09-25 13:40:07', null, '1250070586'); INSERT INTO `customer` VALUES ('5', '20', 'ahmadreza', 'azizan', '<EMAIL>', '0', '$2y$10$xmHJu/Z/JUaW6mFZGvPX7u1Fdk.M7mFV2Tkg975djzJrzlAFDFJyS', '09125631452', null, null, '0', '0', null, null, '2016-09-25 13:41:00', '2016-09-26 10:28:44', null, '2505055500'); INSERT INTO `customer` VALUES ('6', '21', 'ahmadreza', 'azizan', '<EMAIL>', '0', '$2y$10$SUqg90umAnUgIr.nFRxAHew06rDc/dS8pgt9d0DppS5RZVm9pc4Kq', '09125631472', null, null, '0', '0', null, null, '2016-09-25 13:42:08', '2016-09-26 00:12:14', null, '250505551250'); INSERT INTO `customer` VALUES ('8', '22', 'ahmas', 'asas', '<EMAIL>', '1', 'as', '989135631472', '', '', '0', '0', '1', null, '2016-09-25 23:52:08', '2016-09-25 23:52:08', null, '125'); -- ---------------------------- -- Table structure for email -- ---------------------------- DROP TABLE IF EXISTS `email`; CREATE TABLE `email` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of email -- ---------------------------- -- ---------------------------- -- Table structure for fee -- ---------------------------- DROP TABLE IF EXISTS `fee`; CREATE TABLE `fee` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `currency` mediumint(9) NOT NULL, `percent` double(8,2) NOT NULL, `max` int(11) NOT NULL, `sts` tinyint(4) NOT NULL, `title` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `to` mediumint(9) NOT NULL, `to_title` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `icon` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, `to_icon` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of fee -- ---------------------------- INSERT INTO `fee` VALUES ('1', '2016-09-24 21:18:00', '2016-09-24 21:18:39', '3', '12500.00', '12500', '1', 'Iran', '4', 'United States', 'ir', 'us'); INSERT INTO `fee` VALUES ('2', '2015-09-03 23:19:00', '2016-09-03 23:19:34', '4', '12.25', '122020', '1', '', '0', '', null, null); INSERT INTO `fee` VALUES ('3', '2016-09-06 09:26:00', '2016-09-06 09:26:45', '2', '2500.00', '12220', '1', 'lsd', '0', '', null, null); INSERT INTO `fee` VALUES ('4', '2016-09-06 09:27:00', '2016-09-06 09:27:22', '1', '250000.00', '12540', '1', 'usd', '0', '', null, null); INSERT INTO `fee` VALUES ('6', '2016-09-25 10:01:00', '2016-09-25 10:02:19', '3', '12500.00', '225000', '1', 'Iran', '2', 'Australia', 'ir', 'au'); INSERT INTO `fee` VALUES ('7', '2016-09-24 15:38:00', '2016-09-24 15:41:17', '0', '1250.00', '1125', '1', 'Australia', '0', 'Afghanistan', null, null); INSERT INTO `fee` VALUES ('8', '2016-09-06 10:32:00', '2016-09-06 10:32:28', '1', '250.00', '10000', '1', 'usd', '2', 'lsd', null, null); INSERT INTO `fee` VALUES ('9', '2016-09-06 10:36:00', '2016-09-25 11:01:29', '3', '25000.00', '10000', '1', 'rils', '3', 'rils', null, null); INSERT INTO `fee` VALUES ('10', '2016-09-23 17:39:00', '2016-09-25 10:59:10', '3', '25000.00', '1000000', '1', 'rils', '5', 'uoro', null, null); INSERT INTO `fee` VALUES ('11', '2016-09-24 15:38:00', '2016-09-25 10:59:21', '2', '1350.00', '1125', '1', 'Australia', '1', 'Afghanistan', null, null); -- ---------------------------- -- Table structure for fee_history -- ---------------------------- DROP TABLE IF EXISTS `fee_history`; CREATE TABLE `fee_history` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `currency` mediumint(9) NOT NULL, `percent` double(8,2) NOT NULL, `max` int(11) NOT NULL, `sts` tinyint(4) NOT NULL, `to` mediumint(9) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of fee_history -- ---------------------------- INSERT INTO `fee_history` VALUES ('1', '2015-06-06 10:20:00', '2016-09-04 23:25:10', '2', '12500.00', '122000', '1', '0'); INSERT INTO `fee_history` VALUES ('2', '2016-09-04 23:32:00', '2016-09-04 23:33:06', '3', '25500.00', '2250000', '1', '0'); INSERT INTO `fee_history` VALUES ('3', '2016-09-06 09:26:00', '2016-09-06 09:26:45', '2', '2500.00', '12220', '1', '0'); INSERT INTO `fee_history` VALUES ('4', '2016-09-06 09:27:00', '2016-09-06 09:27:22', '1', '250000.00', '12540', '1', '0'); INSERT INTO `fee_history` VALUES ('5', '2016-09-06 10:05:00', '2016-09-06 10:08:03', '3', '10.25', '100250', '1', '0'); INSERT INTO `fee_history` VALUES ('6', '2016-10-22 10:20:00', '2016-09-06 10:08:37', '3', '25000.00', '1000', '1', '0'); INSERT INTO `fee_history` VALUES ('7', '2016-10-20 10:20:00', '2016-09-06 10:09:57', '3', '255000.00', '11000', '1', '0'); INSERT INTO `fee_history` VALUES ('8', '2016-10-20 10:20:00', '2016-09-06 10:12:29', '2', '25000.00', '1000', '1', '0'); INSERT INTO `fee_history` VALUES ('9', '2016-09-06 10:32:00', '2016-09-06 10:32:28', '1', '250.00', '10000', '1', '2'); INSERT INTO `fee_history` VALUES ('10', '2016-09-06 10:36:00', '2016-09-06 10:36:37', '3', '2500.00', '10000', '1', '3'); INSERT INTO `fee_history` VALUES ('11', '2016-09-06 10:47:00', '2016-09-06 10:47:57', '3', '250000.00', '1000', '1', '2'); INSERT INTO `fee_history` VALUES ('12', '2016-09-23 17:39:00', '2016-09-23 17:39:26', '3', '2500.00', '1000000', '1', '5'); INSERT INTO `fee_history` VALUES ('13', '2016-09-24 15:38:00', '2016-09-24 15:42:54', '2', '1250.00', '1125', '1', '1'); INSERT INTO `fee_history` VALUES ('14', '2016-09-24 21:16:00', '2016-09-24 21:16:37', '3', '120.00', '10000', '1', '4'); INSERT INTO `fee_history` VALUES ('15', '2016-09-24 21:18:00', '2016-09-24 21:18:39', '3', '12500.00', '12500', '1', '4'); INSERT INTO `fee_history` VALUES ('16', '2016-09-25 10:01:00', '2016-09-25 10:02:19', '3', '12500.00', '225000', '1', '2'); -- ---------------------------- -- Table structure for file -- ---------------------------- DROP TABLE IF EXISTS `file`; CREATE TABLE `file` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `order` int(10) unsigned NOT NULL, `cid` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `file_order_foreign` (`order`), KEY `file_cid_foreign` (`cid`), CONSTRAINT `file_cid_foreign` FOREIGN KEY (`cid`) REFERENCES `customer` (`id`) ON DELETE CASCADE, CONSTRAINT `file_order_foreign` FOREIGN KEY (`order`) REFERENCES `order` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of file -- ---------------------------- INSERT INTO `file` VALUES ('1', '2016-09-24 23:51:28', '2016-09-24 23:51:28', '/storage/orders/1/1474748409.png', '9', '1'); INSERT INTO `file` VALUES ('2', '2016-09-26 10:53:52', '2016-09-26 10:53:52', '/storage/orders/1/1474874621.jpg', '10', '1'); INSERT INTO `file` VALUES ('3', '2016-09-26 11:58:59', '2016-09-26 11:58:59', '/storage/orders/1/1474878537.png', '11', '1'); -- ---------------------------- -- Table structure for iban -- ---------------------------- DROP TABLE IF EXISTS `iban`; CREATE TABLE `iban` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `iban` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `bank` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `bank_code` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `cid` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `fname` varchar(40) COLLATE utf8_unicode_ci NOT NULL, `lname` varchar(40) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `iban_cid_foreign` (`cid`), CONSTRAINT `iban_cid_foreign` FOREIGN KEY (`cid`) REFERENCES `customer` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of iban -- ---------------------------- INSERT INTO `iban` VALUES ('3', '12505025025002500125', '', '', '6', '2016-09-25 13:42:09', '2016-09-25 13:42:09', 'ahmadreza', 'azizan'); INSERT INTO `iban` VALUES ('4', '124521254512545412254551', '12as', '', '8', '2016-09-25 23:52:08', '2016-09-25 23:52:08', 'ahmas', 'asas'); -- ---------------------------- -- Table structure for jobs -- ---------------------------- DROP TABLE IF EXISTS `jobs`; CREATE TABLE `jobs` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `payload` longtext COLLATE utf8_unicode_ci NOT NULL, `attempts` tinyint(3) unsigned NOT NULL, `reserved` tinyint(3) unsigned NOT NULL, `reserved_at` int(10) unsigned DEFAULT NULL, `available_at` int(10) unsigned NOT NULL, `created_at` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_reserved_reserved_at_index` (`queue`,`reserved`,`reserved_at`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of jobs -- ---------------------------- INSERT INTO `jobs` VALUES ('1', 'default', '{\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"data\":{\"commandName\":\"App\\\\Jobs\\\\RemoveExcelForm\",\"command\":\"O:24:\\\"App\\\\Jobs\\\\RemoveExcelForm\\\":5:{s:7:\\\"\\u0000*\\u0000name\\\";s:17:\\\"950612120305.xlsx\\\";s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:5:\\\"delay\\\";i:60;s:6:\\\"\\u0000*\\u0000job\\\";N;}\"}}', '0', '0', null, '1472801862', '1472801802'); INSERT INTO `jobs` VALUES ('2', 'default', '{\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"data\":{\"commandName\":\"App\\\\Jobs\\\\RemoveExcelForm\",\"command\":\"O:24:\\\"App\\\\Jobs\\\\RemoveExcelForm\\\":5:{s:7:\\\"\\u0000*\\u0000name\\\";s:17:\\\"950614111843.xlsx\\\";s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:5:\\\"delay\\\";i:60;s:6:\\\"\\u0000*\\u0000job\\\";N;}\"}}', '0', '0', null, '1472971784', '1472971724'); INSERT INTO `jobs` VALUES ('3', 'default', '{\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"data\":{\"commandName\":\"App\\\\Jobs\\\\RemoveExcelForm\",\"command\":\"O:24:\\\"App\\\\Jobs\\\\RemoveExcelForm\\\":5:{s:7:\\\"\\u0000*\\u0000name\\\";s:17:\\\"950702055912.xlsx\\\";s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:5:\\\"delay\\\";i:60;s:6:\\\"\\u0000*\\u0000job\\\";N;}\"}}', '0', '0', null, '1474641013', '1474640953'); INSERT INTO `jobs` VALUES ('4', 'default', '{\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"data\":{\"commandName\":\"App\\\\Jobs\\\\RemoveExcelForm\",\"command\":\"O:24:\\\"App\\\\Jobs\\\\RemoveExcelForm\\\":5:{s:7:\\\"\\u0000*\\u0000name\\\";s:17:\\\"950702055914.xlsx\\\";s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:5:\\\"delay\\\";i:60;s:6:\\\"\\u0000*\\u0000job\\\";N;}\"}}', '0', '0', null, '1474641015', '1474640955'); INSERT INTO `jobs` VALUES ('5', 'default', '{\"job\":\"Illuminate\\\\Queue\\\\CallQueuedHandler@call\",\"data\":{\"commandName\":\"App\\\\Jobs\\\\RemoveExcelForm\",\"command\":\"O:24:\\\"App\\\\Jobs\\\\RemoveExcelForm\\\":5:{s:7:\\\"\\u0000*\\u0000name\\\";s:17:\\\"950708102500.xlsx\\\";s:10:\\\"connection\\\";N;s:5:\\\"queue\\\";N;s:5:\\\"delay\\\";i:60;s:6:\\\"\\u0000*\\u0000job\\\";N;}\"}}', '0', '0', null, '1475175362', '1475175302'); -- ---------------------------- -- Table structure for log -- ---------------------------- DROP TABLE IF EXISTS `log`; CREATE TABLE `log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(40) COLLATE utf8_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `creator` int(10) unsigned DEFAULT NULL, `severity` tinyint(4) DEFAULT NULL, `blob` blob NOT NULL, `at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of log -- ---------------------------- -- ---------------------------- -- Table structure for menu -- ---------------------------- DROP TABLE IF EXISTS `menu`; CREATE TABLE `menu` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `url` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `where` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `w` tinyint(4) NOT NULL, `active` tinyint(1) NOT NULL, `parent` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of menu -- ---------------------------- INSERT INTO `menu` VALUES ('1', 'sad', 'asd', '3', '0', '1', null); INSERT INTO `menu` VALUES ('2', 'asd', 'adsad', '3', '0', '1', '1'); INSERT INTO `menu` VALUES ('3', 'in the name', 'adsasddsad', '3', '0', '1', null); INSERT INTO `menu` VALUES ('4', 'Find', 'url', '2', '0', '1', null); INSERT INTO `menu` VALUES ('5', 'Two Menu', 'Iran', '2', '0', '1', '4'); -- ---------------------------- -- Table structure for migrations -- ---------------------------- DROP TABLE IF EXISTS `migrations`; CREATE TABLE `migrations` ( `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of migrations -- ---------------------------- INSERT INTO `migrations` VALUES ('2014_10_12_000000_create_users_table', '1'); INSERT INTO `migrations` VALUES ('2014_10_12_100000_create_password_resets_table', '1'); INSERT INTO `migrations` VALUES ('2016_03_17_185510_create_bid_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_094252_create_jobs_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101031_create_customer_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101050_create_transaction_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101106_create_log_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101125_create_sms_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101134_create_email_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101200_create_payment_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101210_create_fee_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101226_create_fee_history_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101241_create_setting_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101251_create_file_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101317_create_coupon_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101353_create_permission_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_18_101421_create_node_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_27_101811_create_bank_gate_table', '1'); INSERT INTO `migrations` VALUES ('2016_08_30_175338_menus', '1'); INSERT INTO `migrations` VALUES ('2016_09_01_222731_node_table', '2'); INSERT INTO `migrations` VALUES ('2016_09_03_102532_fee_table', '3'); INSERT INTO `migrations` VALUES ('2016_09_04_124208_add_parent_to_menu', '4'); INSERT INTO `migrations` VALUES ('2016_09_04_232314_fee_history', '5'); INSERT INTO `migrations` VALUES ('2016_09_06_092246_add_currency_title', '6'); INSERT INTO `migrations` VALUES ('2016_09_06_100111_add_to_fee', '7'); INSERT INTO `migrations` VALUES ('2016_09_06_101114_add_to_title', '8'); INSERT INTO `migrations` VALUES ('2016_09_06_101522_add_to_fee_history', '9'); INSERT INTO `migrations` VALUES ('2016_09_06_135641_order_table', '10'); INSERT INTO `migrations` VALUES ('2016_09_06_225804_add_close_at', '11'); INSERT INTO `migrations` VALUES ('2016_09_06_231407_add_close_type', '12'); INSERT INTO `migrations` VALUES ('2016_09_23_174342_persmission_table', '13'); INSERT INTO `migrations` VALUES ('2016_09_24_211248_icon_fee', '14'); INSERT INTO `migrations` VALUES ('2016_09_24_212818_iban_table', '15'); INSERT INTO `migrations` VALUES ('2016_09_24_233046_file_table', '16'); INSERT INTO `migrations` VALUES ('2016_09_24_235918_iban_order', '17'); INSERT INTO `migrations` VALUES ('2016_09_25_081429_fname_iban', '18'); INSERT INTO `migrations` VALUES ('2016_09_26_124933_customer_order', '19'); -- ---------------------------- -- Table structure for node -- ---------------------------- DROP TABLE IF EXISTS `node`; CREATE TABLE `node` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `body` text COLLATE utf8_unicode_ci NOT NULL, `parent` int(11) NOT NULL, `url` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `type` tinyint(4) NOT NULL, `sts` tinyint(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of node -- ---------------------------- INSERT INTO `node` VALUES ('1', '2016-09-01 22:38:49', '2016-09-01 22:38:49', 'in the name of allah', '<p>url is the best commonly target&nbsp;</p>\n', '0', 'url', '1', '1'); INSERT INTO `node` VALUES ('2', '2016-09-02 10:41:30', '2016-09-02 10:41:30', 'Page Two Example', '<p>the Body&nbsp;</p>\n', '0', 'Url in list', '1', '1'); -- ---------------------------- -- Table structure for order -- ---------------------------- DROP TABLE IF EXISTS `order`; CREATE TABLE `order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `bid` bigint(20) unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `from` mediumint(9) NOT NULL, `from_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `to` mediumint(9) NOT NULL, `to_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `fee` double(8,2) NOT NULL, `price` double NOT NULL, `closed` tinyint(1) NOT NULL, `type` tinyint(4) NOT NULL, `creator` int(10) unsigned DEFAULT NULL, `acceptor` int(10) unsigned DEFAULT NULL, `rollback` tinyint(1) NOT NULL, `sts` tinyint(4) NOT NULL, `msg` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `close_at` timestamp NULL DEFAULT '0000-00-00 00:00:00', `close_type` tinyint(4) NOT NULL, `description` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `iban` int(10) unsigned DEFAULT NULL, `cid` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `order_bid_foreign` (`bid`), KEY `order_creator_foreign` (`creator`), KEY `order_acceptor_foreign` (`acceptor`), KEY `order_iban_foreign` (`iban`), KEY `order_cid_foreign` (`cid`), CONSTRAINT `order_acceptor_foreign` FOREIGN KEY (`acceptor`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `order_bid_foreign` FOREIGN KEY (`bid`) REFERENCES `bid` (`bid`) ON DELETE CASCADE, CONSTRAINT `order_cid_foreign` FOREIGN KEY (`cid`) REFERENCES `customer` (`id`) ON DELETE CASCADE, CONSTRAINT `order_creator_foreign` FOREIGN KEY (`creator`) REFERENCES `users` (`id`) ON DELETE CASCADE, CONSTRAINT `order_iban_foreign` FOREIGN KEY (`iban`) REFERENCES `iban` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of order -- ---------------------------- INSERT INTO `order` VALUES ('1', null, '2016-09-06 14:13:21', '2016-09-06 14:13:21', '3', '', '4', '', '25000.00', '2500', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '0', '', null, null); INSERT INTO `order` VALUES ('2', null, '2016-09-06 14:13:48', '2016-09-06 14:13:48', '3', '', '4', '', '25000.00', '2500', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '0', '', null, null); INSERT INTO `order` VALUES ('3', null, '2016-09-06 17:37:09', '2016-09-06 23:19:26', '3', 'lsd', '4', 'usd', '25000.00', '2500', '0', '0', '1', '1', '0', '1', '', null, '2016-09-06 23:19:26', '2', 'asdasd', null, null); INSERT INTO `order` VALUES ('4', null, '2016-09-09 23:02:34', '2016-09-09 23:02:34', '1', 'rils', '2', 'lsd', '250000.00', '25000', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '0', '', null, null); INSERT INTO `order` VALUES ('5', null, '2016-09-09 23:26:52', '2016-09-09 23:26:52', '3', 'lsd', '1', 'usd', '25000.00', '1120', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '0', '', null, null); INSERT INTO `order` VALUES ('6', null, '2016-09-24 23:28:17', '2016-09-24 23:28:17', '1', 'Iran', '2', 'lsd', '250.00', '1250', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '0', '', null, null); INSERT INTO `order` VALUES ('7', null, '2016-09-24 23:50:11', '2016-09-24 23:50:11', '1', 'Iran', '2', 'lsd', '250.00', '123', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '3', '', null, null); INSERT INTO `order` VALUES ('8', null, '2016-09-24 23:50:31', '2016-09-24 23:50:31', '1', 'Iran', '2', 'lsd', '250.00', '123', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '3', '', null, null); INSERT INTO `order` VALUES ('9', null, '2016-09-24 23:51:28', '2016-09-25 00:32:52', '1', 'Iran', '2', 'lsd', '250.00', '123', '0', '0', '1', '1', '0', '1', '', null, '2016-09-25 00:32:52', '2', '', null, null); INSERT INTO `order` VALUES ('10', null, '2016-09-26 10:53:51', '2016-09-26 10:53:51', '1', 'Afghanistan', '2', 'lsd', '250.00', '1250500', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '2', '', null, null); INSERT INTO `order` VALUES ('11', null, '2016-09-26 11:58:59', '2016-09-26 11:58:59', '3', 'Iran', '3', 'rils', '25000.00', '12500', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '2', '', '4', null); INSERT INTO `order` VALUES ('12', null, '2016-09-26 12:36:23', '2016-09-26 12:36:23', '3', 'Iran', '4', 'United States', '12500.00', '12250', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '2', '', '4', null); INSERT INTO `order` VALUES ('13', null, '2016-09-26 12:37:24', '2016-09-26 12:37:24', '3', 'Iran', '4', 'United States', '12500.00', '12250', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '2', '', '4', null); INSERT INTO `order` VALUES ('14', null, '2016-09-26 12:46:27', '2016-09-26 12:46:27', '3', 'Iran', '4', 'United States', '12500.00', '12250', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '2', '', '4', null); INSERT INTO `order` VALUES ('15', null, '2016-09-26 13:09:27', '2016-09-26 13:09:27', '3', 'Iran', '4', 'United States', '12500.00', '250', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '2', '', '3', null); INSERT INTO `order` VALUES ('16', null, '2016-09-26 13:16:39', '2016-09-26 13:16:39', '3', 'Iran', '2', 'Australia', '12500.00', '22500', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '2', '', '4', null); INSERT INTO `order` VALUES ('17', null, '2016-09-26 13:17:49', '2016-09-26 13:17:49', '3', 'Iran', '2', 'Australia', '12500.00', '110', '0', '0', '1', null, '0', '-1', '', null, '0000-00-00 00:00:00', '1', '', '4', '8'); -- ---------------------------- -- Table structure for password_resets -- ---------------------------- DROP TABLE IF EXISTS `password_resets`; CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, KEY `password_resets_email_index` (`email`), KEY `password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of password_resets -- ---------------------------- -- ---------------------------- -- Table structure for payment -- ---------------------------- DROP TABLE IF EXISTS `payment`; CREATE TABLE `payment` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of payment -- ---------------------------- -- ---------------------------- -- Table structure for permission -- ---------------------------- DROP TABLE IF EXISTS `permission`; CREATE TABLE `permission` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `rid` int(11) NOT NULL, `utid` tinyint(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of permission -- ---------------------------- -- ---------------------------- -- Table structure for setting -- ---------------------------- DROP TABLE IF EXISTS `setting`; CREATE TABLE `setting` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of setting -- ---------------------------- -- ---------------------------- -- Table structure for sms -- ---------------------------- DROP TABLE IF EXISTS `sms`; CREATE TABLE `sms` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `text` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `type` tinyint(4) NOT NULL, `is_group` tinyint(1) NOT NULL, `mobile` varchar(13) COLLATE utf8_unicode_ci DEFAULT NULL, `send_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `send` tinyint(1) NOT NULL, `sts` tinyint(4) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of sms -- ---------------------------- -- ---------------------------- -- Table structure for transaction -- ---------------------------- DROP TABLE IF EXISTS `transaction`; CREATE TABLE `transaction` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `bid` bigint(20) unsigned NOT NULL, `type` tinyint(4) NOT NULL, `close` tinyint(1) DEFAULT NULL, `currency` int(10) unsigned DEFAULT NULL, `currency_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `unit` int(10) unsigned DEFAULT NULL, `nerkh` double(8,2) DEFAULT NULL, `creator` int(10) unsigned NOT NULL, `acceptor` int(10) unsigned DEFAULT NULL, `rollback` tinyint(1) DEFAULT NULL, `msg` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `sts` tinyint(4) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of transaction -- ---------------------------- -- ---------------------------- -- Table structure for users -- ---------------------------- DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cid` int(10) unsigned DEFAULT NULL, `bid` bigint(20) unsigned NOT NULL, `fname` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `lname` varchar(30) COLLATE utf8_unicode_ci NOT NULL, `username` varchar(60) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `password` varchar(60) COLLATE utf8_unicode_ci NOT NULL, `type` tinyint(4) NOT NULL, `last_login` datetime DEFAULT NULL, `sts` tinyint(4) NOT NULL, `active` tinyint(1) DEFAULT NULL, `active_key` varchar(60) COLLATE utf8_unicode_ci DEFAULT NULL, `personal_picture` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_username_unique` (`username`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of users -- ---------------------------- INSERT INTO `users` VALUES ('1', '1', '0', 'ahmadreza', 'azizanx', 'programmer', '<EMAIL>', '$2y$10$9o.xVzJ1pPvtyu7zEnFZ1.Pn0lBcX23iFnDpkoHKTD8PDPZClD7WS', '1', null, '0', null, null, null, 'TAqAe22NI1WI2gaMLAB2OYkiEWGhYLFUznNKLdu1dOG4UAHbU0YJfIKbo4oQ', '2016-09-01 17:57:27', '2016-09-29 22:43:23', null);
-- Restart DB DELETE FROM credentials; DELETE FROM platform; DELETE FROM userbase; DELETE FROM client; DELETE FROM user_data; DELETE FROM "user"; ALTER SEQUENCE credentials_id_seq RESTART WITH 1; ALTER SEQUENCE platform_id_seq RESTART WITH 1; ALTER SEQUENCE userbase_id_seq RESTART WITH 1; ALTER SEQUENCE client_id_seq RESTART WITH 1; ALTER SEQUENCE user_id_seq RESTART WITH 1;
<reponame>Hamza-seniorDev/ci-wo -- -------------------------------------------------------- -- 主机: 127.0.0.1 -- 服务器版本: 10.1.31-MariaDB - mariadb.org binary distribution -- 服务器操作系统: Win32 -- HeidiSQL 版本: 9.5.0.5239 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET NAMES utf8 */; /*!50503 SET NAMES utf8mb4 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -- 导出 wishkick 的数据库结构 CREATE DATABASE IF NOT EXISTS `wishkick` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `wishkick`; -- 导出 表 wishkick.addresses 结构 CREATE TABLE IF NOT EXISTS `addresses` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `name` varchar(150) NOT NULL, `address_line` varchar(150) NOT NULL, `suite` varchar(150) DEFAULT NULL, `city` varchar(150) DEFAULT NULL, `state` varchar(150) DEFAULT NULL, `zip` varchar(150) DEFAULT NULL, `type` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0:default, 1: billing, 2: delivery', `set_default` tinyint(2) NOT NULL DEFAULT '0' COMMENT '1: default', `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0: normal, 1:deleted', `reg_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.addresses 的数据:~0 rows (大约) /*!40000 ALTER TABLE `addresses` DISABLE KEYS */; /*!40000 ALTER TABLE `addresses` ENABLE KEYS */; -- 导出 表 wishkick.assigned_products 结构 CREATE TABLE IF NOT EXISTS `assigned_products` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `video_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.assigned_products 的数据:~0 rows (大约) /*!40000 ALTER TABLE `assigned_products` DISABLE KEYS */; /*!40000 ALTER TABLE `assigned_products` ENABLE KEYS */; -- 导出 表 wishkick.carts 结构 CREATE TABLE IF NOT EXISTS `carts` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL DEFAULT '0', `video_id` bigint(20) NOT NULL DEFAULT '0', `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0: normal 1: deleted', `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.carts 的数据:~0 rows (大约) /*!40000 ALTER TABLE `carts` DISABLE KEYS */; /*!40000 ALTER TABLE `carts` ENABLE KEYS */; -- 导出 表 wishkick.categories 结构 CREATE TABLE IF NOT EXISTS `categories` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(150) NOT NULL, `description` text NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1: deleted', `reg_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.categories 的数据:~6 rows (大约) /*!40000 ALTER TABLE `categories` DISABLE KEYS */; INSERT INTO `categories` (`id`, `name`, `description`, `status`, `reg_date`) VALUES (1, 'Popular', 'This is popular category', 0, '2020-10-16 06:17:20'), (2, 'Clothes', 'This is Clothes Category', 0, '2020-10-16 06:52:28'), (3, 'Food', 'This is Food Category', 0, '2020-10-17 10:47:16'), (4, 'Deserts', 'This is Desert Category', 0, '2020-10-17 10:47:31'), (5, 'Toy', 'This is Toy Category', 0, '2020-10-17 10:47:43'), (6, 'Womens', 'This is Womens Category', 0, '0000-00-00 00:00:00'); /*!40000 ALTER TABLE `categories` ENABLE KEYS */; -- 导出 表 wishkick.orders 结构 CREATE TABLE IF NOT EXISTS `orders` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `order_id` varchar(50) NOT NULL, `product_id` bigint(20) NOT NULL DEFAULT '0', `quantity` bigint(20) NOT NULL DEFAULT '0', `order_date` datetime NOT NULL, `delivered_date` datetime NOT NULL, `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0: order, 1:delivered 2: deleted', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.orders 的数据:~0 rows (大约) /*!40000 ALTER TABLE `orders` DISABLE KEYS */; /*!40000 ALTER TABLE `orders` ENABLE KEYS */; -- 导出 表 wishkick.payments 结构 CREATE TABLE IF NOT EXISTS `payments` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `card_name` varchar(150) DEFAULT NULL, `card_number` varchar(150) DEFAULT NULL, `expire_date` date DEFAULT NULL, `paypal_email` varchar(150) DEFAULT NULL, `type` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0: card, 1: paypal, 2: deleted', `reg_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.payments 的数据:~0 rows (大约) /*!40000 ALTER TABLE `payments` DISABLE KEYS */; /*!40000 ALTER TABLE `payments` ENABLE KEYS */; -- 导出 表 wishkick.products 结构 CREATE TABLE IF NOT EXISTS `products` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(150) NOT NULL, `image` text NOT NULL, `description` longtext NOT NULL, `category_id` bigint(20) NOT NULL DEFAULT '0', `new_price` float NOT NULL DEFAULT '0', `old_price` float NOT NULL DEFAULT '0', `points` int(11) NOT NULL DEFAULT '0', `amount` bigint(20) NOT NULL DEFAULT '0', `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0: normal, 1: deleted', `reg_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.products 的数据:~8 rows (大约) /*!40000 ALTER TABLE `products` DISABLE KEYS */; INSERT INTO `products` (`id`, `name`, `image`, `description`, `category_id`, `new_price`, `old_price`, `points`, `amount`, `status`, `reg_date`) VALUES (1, 'Noodle', 'c8a325f5d3ae10dbb8cae937ee4a9168.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\n\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\n\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\n\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 3, 50.5, 120, 0, 50, 0, '2020-10-18 02:57:43'), (2, 'Apple', '162fbae777ff369d115717fe1cd661a1.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\r\n\r\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\r\n\r\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\r\n\r\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 4, 12, 120, 0, 50, 0, '2020-10-18 03:00:49'), (3, 'Apple1', '162fbae777ff369d115717fe1cd661a1.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\r\n\r\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\r\n\r\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\r\n\r\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 4, 12, 120, 0, 50, 0, '2020-10-18 03:01:07'), (4, 'Mango', 'c8a325f5d3ae10dbb8cae937ee4a9168.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\n\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\n\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\n\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 4, 50, 120, 0, 30, 0, '2020-10-18 03:03:59'), (5, 'Mango32', '2d963f9b70dc8d9e9283e779ab3bcf4c.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\r\n\r\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\r\n\r\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\r\n\r\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 4, 50, 120, 0, 30, 0, '2020-10-18 03:04:50'), (6, 'asdf12', '3371f969cd1e8372a640eec02381b6f1.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, <NAME>.\r\n\r\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\r\n\r\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\r\n\r\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 3, 34, 23, 0, 23, 1, '2020-10-18 03:05:23'), (7, 'Spagetti', '7075d9e9cb3958870fcba2249b13efdd.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\r\n\r\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\r\n\r\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\r\n\r\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 3, 30, 30, 0, 30, 0, '2020-10-18 03:05:59'), (8, 'asdf23', '2d963f9b70dc8d9e9283e779ab3bcf4c.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\n\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\n\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\n\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 1, 0, 0, 0, 0, 0, '2020-10-18 03:11:07'), (9, 'asdf1', 'ad58475d7268c1248514f2662962cd0e.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\r\n\r\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\r\n\r\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\r\n\r\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing Paula Cracker as the band\'s lead guitarist. ', 3, 0, 0, 0, 0, 0, '2020-10-18 03:11:27'), (10, 'asdf123', 'e9c27437d178bb19c418ec384d48758b.png', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo.\r\n\r\nNoodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1]\r\n\r\nAfter killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.\r\n\r\nNoodle arrived at the doorstep of Kong Studios in 1998, in a FedEx crate. Once the crate was taken inside, Noodle sprung out of the box and performed a guitar solo (which 2-D described as "200 demons screaming in Arabic. Brilliant!"). She ended her solo with a 20-foot high karate kick and saying a few words in Japanese before bowing and saying the word "Noodle". This resulted in her earning the name "Noodle" (her only currently known name) and replacing <NAME> as the band\'s lead guitarist. ', 3, 0, 0, 0, 0, 0, '2020-10-18 03:14:47'); /*!40000 ALTER TABLE `products` ENABLE KEYS */; -- 导出 表 wishkick.users 结构 CREATE TABLE IF NOT EXISTS `users` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(150) NOT NULL, `password` varchar(150) NOT NULL, `first_name` varchar(150) DEFAULT NULL, `last_name` varchar(150) DEFAULT NULL, `username` varchar(150) DEFAULT NULL, `phone` varchar(150) DEFAULT NULL, `photo` varchar(150) DEFAULT NULL, `role` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0: user 1: admin', `google_id` varchar(150) DEFAULT NULL, `facebook_id` varchar(150) DEFAULT NULL, `point` bigint(20) DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0: normal, 1:deleted', `reg_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.users 的数据:~0 rows (大约) /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` (`id`, `email`, `password`, `first_name`, `last_name`, `username`, `phone`, `photo`, `role`, `google_id`, `facebook_id`, `point`, `status`, `reg_date`) VALUES (1, '<EMAIL>', '<PASSWORD>', 'Jhone', 'Doe', 'Admin', NULL, NULL, 1, NULL, NULL, NULL, 0, '2020-10-15 00:00:00'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; -- 导出 表 wishkick.videos 结构 CREATE TABLE IF NOT EXISTS `videos` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `category_id` bigint(20) NOT NULL DEFAULT '0', `title` varchar(150) NOT NULL, `description` longtext NOT NULL, `video` text NOT NULL, `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0: normal, 1: deleted', `reg_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- 正在导出表 wishkick.videos 的数据:~0 rows (大约) /*!40000 ALTER TABLE `videos` DISABLE KEYS */; INSERT INTO `videos` (`id`, `category_id`, `title`, `description`, `video`, `status`, `reg_date`) VALUES (1, 2, 'asdf', 'Noodle was born in Osaka, Japan on October 31, 1990. She spent a portion of her childhood in Japan as a subject of a classified Japanese super soldier project under the management of the Japanese scientist, Mr. Kyuzo. Noodle, along with 22 other children, were trained with the sole purpose of fighting as soldiers of the Japanese military and government. After the children were deemed too dangerous and unstable for combat, the project was scrapped. Mr. Kyuzo was then ordered to dispose of all possible traces of the failed experiment, as well as its participants. [1] After killing the other 22 children, Kyuzo was reluctant in killing Noodle. Rather than killing her, Kyuzo placed her in a state of amnesia through the use of verbal commands. The phrase used to place Noodle in her state of amnesia was known as Ocean Bacon. After temporarily clearing her memory of the project, Kyuzo smuggled Noodle to the United Kingdom in a FedEx crate and falsely reported her death (along with the other 22 children) to his superiors.', '12df1e6f16763b8ebf08f3ad17e1cd26.mp4', 0, '2020-10-18 06:38:36'); /*!40000 ALTER TABLE `videos` ENABLE KEYS */; /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; /*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-- phpMyAdmin SQL Dump -- version 4.1.14 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jan 07, 2015 at 06:24 PM -- Server version: 5.6.17 -- PHP Version: 5.5.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `pp` -- -- -------------------------------------------------------- -- -- Table structure for table `command` -- CREATE TABLE IF NOT EXISTS `command` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nick` varchar(25) NOT NULL, `time` varchar(10) NOT NULL, `game` varchar(20) NOT NULL, `button` varchar(20) NOT NULL, `ip` varchar(16) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=92 ; -- -- Dumping data for table `command` -- INSERT INTO `command` (`id`, `nick`, `time`, `game`, `button`, `ip`) VALUES (50, 'Javier', '10:11:49', 'gba', 'R', '::1'), (51, 'Javier', '10:11:50', 'gba', 'R', '::1'), (52, 'Javier', '10:11:52', 'gba', 'B', '::1'), (53, 'Javier', '10:11:11', 'gba', 'Down', '::1'), (54, 'Javier', '10:11:12', 'gba', 'Up', '::1'), (55, 'Javier', '10:11:13', 'gba', 'Down', '::1'), (56, 'Javier', '10:11:14', 'gba', 'Down', '::1'), (57, 'Javier', '10:11:15', 'gba', 'Left', '::1'), (58, 'Javier', '10:11:09', 'gba', 'R', '::1'), (59, 'Javier', '10:11:11', 'gba', 'L', '::1'), (60, 'Javier', '10:11:12', 'gba', 'B', '::1'), (61, 'Javier', '10:11:13', 'gba', 'A', '::1'), (62, 'Javier', '10:11:15', 'gba', 'B', '::1'), (63, 'Javier', '10:11:16', 'gba', 'L', '::1'), (64, 'Javier', '10:11:37', 'gba', 'L', '::1'), (65, 'Javier', '10:11:38', 'gba', 'B', '::1'), (66, 'Javier', '10:11:41', 'gba', 'A', '::1'), (67, 'Javier', '10:11:42', 'gba', 'B', '::1'), (68, 'Javier', '10:11:43', 'gba', 'R', '::1'), (69, 'Javier', '10:11:53', 'gba', 'A', '::1'), (70, 'Javier', '10:11:55', 'gba', 'B', '::1'), (71, 'Javier', '10:11:36', 'gba', 'L', '::1'), (72, 'Javier', '10:11:38', 'gba', 'B', '::1'), (73, 'Javier', '10:11:40', 'gba', 'A', '::1'), (74, 'Javier', '10:11:42', 'gba', 'Up', '::1'), (75, 'Javier', '10:11:44', 'gba', 'Up', '::1'), (76, 'Javier', '10:11:46', 'gba', 'Up', '::1'), (77, 'Javier', '10:11:47', 'gba', 'Up', '::1'), (78, 'Holi', '07:01:36', 'gba', 'Start', '::1'), (79, 'Holi', '07:01:44', 'gba', 'A', '::1'), (80, 'Holi', '07:01:46', 'gba', 'B', '::1'), (81, 'Holi', '07:01:47', 'gba', 'L', '::1'), (82, 'Holi', '08:01:54', 'gba', 'B', '::1'), (83, 'Holi', '08:01:55', 'gba', 'A', '::1'), (84, 'Holi', '08:01:56', 'gba', 'Up', '::1'), (85, 'Holi', '08:01:24', 'gba', 'B', '::1'), (86, 'Holi', '08:01:25', 'gba', 'A', '::1'), (87, 'Holi', '08:01:05', 'gba', 'L', '::1'), (88, 'Holi', '08:01:06', 'gba', 'B', '::1'), (89, 'Holi', '08:01:07', 'gba', 'A', '::1'), (90, 'Holi', '08:01:13', 'gba', 'R', '::1'), (91, 'holi', '06:01:02', 'gba', 'R', '::1'); -- -------------------------------------------------------- -- -- Table structure for table `democracy` -- CREATE TABLE IF NOT EXISTS `democracy` ( `id` int(11) NOT NULL AUTO_INCREMENT, `id_system_status` int(11) NOT NULL, `iteration` int(11) NOT NULL DEFAULT '1', `keypress` varchar(11) NOT NULL, PRIMARY KEY (`id`), KEY `id_system_status` (`id_system_status`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=51 ; -- -- Dumping data for table `democracy` -- INSERT INTO `democracy` (`id`, `id_system_status`, `iteration`, `keypress`) VALUES (26, 29, 1, 'r'), (27, 29, 1, 'r'), (28, 29, 1, 'x'), (29, 31, 1, 'w'), (30, 31, 1, 's'), (31, 31, 1, 's'), (32, 31, 1, 'a'), (33, 39, 1, 'l'), (34, 39, 1, 'x'), (35, 45, 1, 'z'), (36, 45, 1, 'x'), (37, 73, 1, 'm'), (38, 73, 1, 'z'), (39, 73, 1, 'x'), (40, 73, 1, 'l'), (41, 73, 1, 'x'), (42, 73, 1, 'z'), (43, 73, 1, 'w'), (44, 73, 1, 'x'), (45, 73, 1, 'z'), (46, 73, 1, 'l'), (47, 73, 1, 'x'), (48, 73, 1, 'z'), (49, 73, 1, 'r'), (50, 73, 1, 'r'); -- -------------------------------------------------------- -- -- Table structure for table `system_status` -- CREATE TABLE IF NOT EXISTS `system_status` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` int(11) NOT NULL, `time` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=74 ; -- -- Dumping data for table `system_status` -- INSERT INTO `system_status` (`id`, `status`, `time`) VALUES (1, 0, '0'), (28, 1, '1415741183'), (29, 0, '1415741208'), (30, 1, '1415741228'), (31, 0, '1415741231'), (32, 1, '1415742448'), (33, 0, '1415742453'), (34, 1, '1415742458'), (35, 0, '1415742463'), (36, 1, '1415742467'), (37, 0, '1415742601'), (38, 1, '1415742606'), (39, 0, '1415742610'), (40, 1, '1415742613'), (41, 0, '1415742618'), (42, 1, '1415742621'), (43, 0, '1415742626'), (44, 1, '1415742815'), (45, 0, '1415742831'), (46, 1, '1415742847'), (47, 0, '1415742873'), (48, 1, '1415742889'), (49, 0, '1415742917'), (50, 1, '1415742932'), (51, 0, '1415742948'), (52, 1, '1415743361'), (53, 0, '1415743374'), (54, 1, '1415743387'), (55, 0, '1415743400'), (56, 1, '1415743414'), (57, 0, '1415743428'), (58, 1, '1415743441'), (59, 0, '1415743455'), (60, 1, '1415743470'), (61, 0, '1415743483'), (62, 1, '1415743497'), (63, 0, '1415743511'), (64, 1, '1415743526'), (65, 0, '1415743540'), (66, 1, '1415743554'), (67, 0, '1415743567'), (68, 1, '1415743581'), (69, 0, '1415743605'), (70, 1, '1415743619'), (71, 0, '1415743632'), (72, 1, '1415743647'), (73, 0, '1415743660'); -- -- Constraints for dumped tables -- -- -- Constraints for table `democracy` -- ALTER TABLE `democracy` ADD CONSTRAINT `democracy_ibfk_1` FOREIGN KEY (`id_system_status`) REFERENCES `system_status` (`id`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 29-01-2018 a las 02:17:12 -- Versión del servidor: 10.1.30-MariaDB -- Versión de PHP: 7.2.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `tym_db` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `guests` -- CREATE TABLE `guests` ( `guest_id` int(11) NOT NULL, `created` datetime DEFAULT NULL, `modified` datetime NOT NULL, `name` varchar(55) DEFAULT NULL, `surname` varchar(55) DEFAULT NULL, `undertwelve` tinyint(1) NOT NULL DEFAULT '0', `vegan_menu` tinyint(1) NOT NULL DEFAULT '0', `confirmed` double NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `guests` -- INSERT INTO `guests` (`guest_id`, `created`, `modified`, `name`, `surname`, `undertwelve`, `vegan_menu`, `confirmed`) VALUES (1, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Thiago', 'da Silveira', 0, 0, 0), (2, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Mariana', 'Gerali', 0, 0, 0), (3, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Izabel', 'Vargas', 0, 0, 0), (4, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'João', '<NAME>', 0, 0, 0), (5, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Aline', 'Machado', 0, 0, 0), (6, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Mathaeus', '<NAME>', 0, 0, 0), (7, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Bruna', 'Gauterio', 0, 0, 0), (8, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Ezequiel', '<NAME>', 0, 0, 0), (9, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Clara', '<NAME>', 0, 0, 0), (10, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Patricia', '<NAME>', 0, 0, 0), (11, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Marcelo', 'Medina', 0, 0, 0), (12, '2018-01-28 17:59:52', '0000-00-00 00:00:00', '<NAME>', '<NAME>', 0, 0, 0), (13, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Rejane', '<NAME>', 0, 0, 0), (14, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Nadia', 'Vargas', 0, 0, 0), (15, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Vera', 'Pacheco', 0, 0, 0), (16, '2018-01-28 17:59:52', '0000-00-00 00:00:00', '<NAME>', 'Rodríguez', 0, 0, 0), (17, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Florencia', 'Gerali', 0, 0, 0), (18, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Carlos', 'Rodríguez', 0, 0, 0), (19, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Carmen', 'Cammarano', 0, 0, 0), (20, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Alejandra', 'Rodríguez', 0, 0, 0), (21, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'José', 'Bossano', 0, 0, 0), (22, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Agustín', 'Bossano', 1, 0, 0), (23, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Gustavo', 'Gerali', 0, 0, 0), (24, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Wanda', 'Baldassari', 0, 0, 0), (25, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Rodrigo', 'Romero', 0, 0, 0), (26, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Flavia', 'Cigarán', 0, 0, 0), (27, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Teresita', 'Olivieri', 0, 0, 0), (28, '2018-01-28 17:59:52', '0000-00-00 00:00:00', '<NAME>', 'Varela', 0, 0, 0), (29, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Gabriel', 'Durante', 0, 0, 0), (30, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Carol', 'Sarmento', 0, 0, 0), (31, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Leandro', 'Ramos', 0, 0, 0), (32, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Luiz', 'Ribeiro', 0, 0, 0), (33, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Douglas', 'Gubert', 0, 0, 0), (34, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Camila', 'Veiga', 0, 0, 0), (35, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Alan', 'Gubert', 1, 0, 0), (36, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Victor', 'Fleitas', 0, 0, 0), (37, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Ivana', 'Baldassari', 0, 0, 0), (38, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Germán', 'Fleitas', 0, 0, 0), (39, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Francina', 'Fleitas', 0, 0, 0), (40, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Lorena', 'Baldassari', 0, 0, 0), (41, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Jorge', 'Díaz', 0, 0, 0), (42, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Adriana', 'Díaz', 0, 0, 0), (43, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Enrique', 'Patrón', 0, 0, 0), (44, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Federico', 'Díaz', 1, 0, 0), (45, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Constanza', 'Díaz', 1, 0, 0), (46, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Sheila', 'Lima', 0, 0, 0), (47, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Rafael', 'Szarblewski', 0, 0, 0), (48, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Estela', 'Morelle', 0, 0, 0), (49, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Bianca', 'Darski', 0, 0, 0), (50, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Marden', 'Müller', 0, 0, 0), (51, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Roberta', 'Grudzinski', 0, 0, 0), (52, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Claudio', 'Coutto', 0, 0, 0), (53, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Jennifer', 'Salaberry', 0, 0, 0), (54, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Raúl', 'Díaz', 0, 0, 0), (55, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Ingrid', 'Machado', 0, 0, 0), (56, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Hernán', 'García', 0, 0, 0), (57, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Nicolás', 'Licandro', 0, 0, 0), (58, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Sofía', 'Pinto', 0, 0, 0), (59, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Matías', 'Vain', 0, 0, 0), (60, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Néstor', 'Ferreira', 0, 0, 0), (61, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Rodolfo', 'Pereira', 0, 0, 0), (62, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Valentina', 'Blanco', 0, 0, 0), (63, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Nicolás', 'Zuccotti', 0, 0, 0), (64, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Rodrigo', 'Tranquilo', 0, 0, 0), (65, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Tatiana', 'Díaz', 0, 0, 0), (66, '2018-01-28 17:59:52', '0000-00-00 00:00:00', 'Brian', 'Flores', 0, 0, 0); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `guestsusers` -- CREATE TABLE `guestsusers` ( `guestusers_id` int(11) NOT NULL, `father_id` int(11) NOT NULL, `child_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `guestsusers` -- INSERT INTO `guestsusers` (`guestusers_id`, `father_id`, `child_id`) VALUES (1, 3, 4), (2, 3, 5), (3, 3, 13), (4, 4, 5), (5, 4, 3), (6, 6, 7), (7, 7, 6), (8, 8, 9), (9, 8, 45), (10, 11, 12), (11, 12, 11), (12, 13, 3), (13, 13, 14), (14, 14, 13), (15, 14, 3), (16, 15, 16), (17, 15, 17), (18, 15, 18), (19, 15, 19), (20, 15, 20), (21, 15, 21), (22, 16, 15), (23, 16, 17), (24, 17, 15), (25, 17, 16), (26, 17, 18), (27, 17, 19), (28, 17, 20), (29, 17, 21), (30, 17, 22), (31, 16, 18), (32, 22, 24), (33, 22, 16), (34, 23, 22), (35, 23, 24), (36, 23, 25), (37, 24, 25), (38, 26, 27), (39, 28, 29), (40, 32, 33), (41, 32, 34), (42, 33, 34), (43, 35, 36), (44, 35, 37), (45, 35, 38), (46, 39, 40), (47, 40, 43), (48, 40, 44), (49, 42, 43), (50, 46, 47), (51, 49, 50), (52, 51, 52), (53, 60, 61); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `texts` -- CREATE TABLE `texts` ( `texto_id` int(11) NOT NULL, `created` datetime NOT NULL, `modified` datetime DEFAULT NULL, `body` longtext NOT NULL, `slug` varchar(55) NOT NULL, `language` char(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `texts` -- INSERT INTO `texts` (`texto_id`, `created`, `modified`, `body`, `slug`, `language`) VALUES (1, '2018-01-20 08:15:00', NULL, 'Tudo começa em um dia qualquer, de um ano qualquer, mas de uma forma atípica: a golpes. O kendo foi o responsável pelo nosso primeiro encontro. A pesar da distância que nos separava, o vínculo que haviamos criado tornava-se cada vez mais forte. Finalmente, em um 29 de janeiro pudemos entender o que sentiamos um pelo outro. Dessa forma prometemos tentar o \"nós dois\" apesar das fronteiras.', 'tudo começa em', 'pt'), (2, '2018-01-20 08:17:00', NULL, 'Todo se inicia en un día cualquiera, de un año cualquiera, pero de una forma atípica: a los golpes. El kendo fue el responsable de nuestro primer encuentro. A pesar de la distancia que nos separaba, el vínculo que habíamos creado se hacía cada vez más fuerte. Finalmente, un 29 de enero pudimos entender qué sentíamos el uno por el otro. De esta forma nos prometimos intentar el \"nosotros\" a pesar de las fronteras.', 'tudo começa em', 'es'), (3, '2018-01-20 08:17:00', NULL, 'A meses indo e vindo, lutando contra o tempo e vencendo os quilômetros, foi em uma tarde de setembro que tudo mudou. Quando alguém se sente muito unido ao outro, a euforia dos encontros e o vazio da separação, podem jogar fardos pesados. E assim nos propusemos um novo objetivo: não deixar que o ano terminasse com o \"nós dois\" à distância. Agora a promessa se converteu em pacto.', 'a meses indo', 'pt'), (4, '2018-01-20 08:19:00', NULL, 'Tras meses yendo y viniendo, de pelear contra el tiempo y los kilómetros; en una tarde de setiembre, simplemente todo cambió. Cuando alguien se siente muy unido al otro, la euforia de los encuentros y el vacío tras la separación, pueden jugar malas pasadas. Así que nos propusimos un nuevo objetivo: no dejaríamos que el año terminara con \"nosotros\" a distancia. Ahora la promesa, se volvió un pacto.', 'a meses indo', 'es'), (5, '2018-01-20 08:22:00', NULL, 'Desde aquele setembro, cada dia que passava, aumentavam as certezas e não víamos a hora de cumprir com nosso pacto... Finalmente chega dezembro. Junto com ele, não somente a mudança do novo ano, mas a grande mudança de nossas vidas. Já não havia espaço para dúvidas ou medos. Uma passagem de ida, que ainda não tem par de volta, fora o suficiente quitar espaço para dúvidas e medos.', 'desde aquele setembro', 'pt'), (6, '2018-01-20 08:22:00', NULL, 'Desde aquel setiembre, cada día que pasaba, se volvía certeza, y no veíamos la hora de cumplir con nuestro pacto... Finalmente, diciembre llegó, y con él, no sólo el cambio de año, sino de vida. No existían ya dudas ni miedos. Bastó con un pasaje de ida, que hasta ahora no tiene retorno.', 'desde aquele setembro', 'es'), (7, '2018-01-21 13:13:00', NULL, 'Existem pessoas que acreditam em coincidências. Janeiro é nossa linda coincidência. Em janeiro inicio nosso amor. Em janeiro deixamos para trás a distância. Agora em janeiro, decidimos que queremos que o “nós dois” perdure pelo tempo.', 'existem pessoas que', 'pt'), (8, '2018-01-21 13:14:00', NULL, 'Hay personas que creen en las coincidencias. Enero es nuestra hermosa coincidencia. En enero se inició nuestro amor, en enero dejamos atrás la distancia, y ahora, en enero, decidimos que queremos que el \"nosotros\" perdure en el tiempo.', 'existem pessoas que', 'es'), (9, '2018-01-21 20:07:00', NULL, 'Por favor, no formulário de confirmação de presença, indique quem virá contigo e se deseja menu vegano.', 'por favor,', 'pt'), (10, '2018-01-21 20:06:00', NULL, 'Por favor, a continuación complete la planilla de asistencia. Debe indicar su nombre y qué tipo de menú desea. (Los menores de diez años tendrán un menú infantil, que está contemplado dentro del menú clásico).\r\nAsí mismo, queremos que participe con nosotros de la selección de la música para la noche. Lo invitamos a que escoja un tema que le gustaría bailar (optativo).', 'por favor,', 'es'), (11, '2018-01-23 18:00:00', NULL, 'Breve relato das viagens, horas e distâncias com um lindo final. Seria só o começo?', 'breve relato de', 'pt'), (12, '2018-01-23 18:00:00', NULL, 'Breve relato de viajes, horas y distancias, y con un hermoso final. ¿O comienzo?.', 'breve relato de', 'es'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `users` -- CREATE TABLE `users` ( `user_id` int(11) NOT NULL, `created` datetime NOT NULL, `modified` datetime DEFAULT NULL, `name` varchar(55) NOT NULL, `login` varchar(55) NOT NULL, `password` varchar(255) NOT NULL, `salt` varchar(16) NOT NULL, `category` char(1) NOT NULL, `confirmed` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `users` -- INSERT INTO `users` (`user_id`, `created`, `modified`, `name`, `login`, `password`, `salt`, `category`, `confirmed`) VALUES (1, '2018-01-24 20:00:00', NULL, '<NAME>', 'mariana', '<PASSWORD>9765d90f187', 'a1c52bf898c46752', 'A', 1), (2, '2018-01-24 20:00:00', NULL, '<NAME>', 'thiago', '0cac58de7efec4f462dab435e26c75d64d4f0d03d01101cfbfde3c8a2d9a01c88ad2bb3681d1c1a13a32328829bde7eb6b7c528417f923911da10aa909e1b144', '9e77065de451c2f7', 'A', 1); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `guests` -- ALTER TABLE `guests` ADD PRIMARY KEY (`guest_id`); -- -- Indices de la tabla `guestsusers` -- ALTER TABLE `guestsusers` ADD PRIMARY KEY (`guestusers_id`); -- -- Indices de la tabla `texts` -- ALTER TABLE `texts` ADD PRIMARY KEY (`texto_id`); -- -- Indices de la tabla `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`user_id`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `guests` -- ALTER TABLE `guests` MODIFY `guest_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=67; -- -- AUTO_INCREMENT de la tabla `guestsusers` -- ALTER TABLE `guestsusers` MODIFY `guestusers_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54; -- -- AUTO_INCREMENT de la tabla `texts` -- ALTER TABLE `texts` MODIFY `texto_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT de la tabla `users` -- ALTER TABLE `users` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 11 Nov 2016 pada 10.10 -- Versi Server: 10.1.16-MariaDB -- PHP Version: 7.0.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `luthansa` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `sales_orders` -- CREATE TABLE `sales_orders` ( `id` int(11) NOT NULL, `source` tinyint(1) NOT NULL, `number` varchar(100) NOT NULL, `order_date` date NOT NULL, `due_date` date NOT NULL, `booking_from_date` date NOT NULL, `booking_to_date` date NOT NULL, `pick_up_point` varchar(255) NOT NULL, `destination` varchar(255) NOT NULL, `customer_id` int(11) NOT NULL, `customer_email` varchar(100) NOT NULL, `customer_phone_number` varchar(18) NOT NULL, `status` tinyint(1) NOT NULL, `total` double NOT NULL, `expense` double NOT NULL, `created_at` datetime NOT NULL, `created_by` int(11) NOT NULL, `updated_at` datetime NOT NULL, `updated_by` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `sales_orders` -- INSERT INTO `sales_orders` (`id`, `source`, `number`, `order_date`, `due_date`, `booking_from_date`, `booking_to_date`, `pick_up_point`, `destination`, `customer_id`, `customer_email`, `customer_phone_number`, `status`, `total`, `expense`, `created_at`, `created_by`, `updated_at`, `updated_by`) VALUES (1, 0, '-', '2016-11-02', '2016-11-10', '0000-00-00', '0000-00-00', '', '', 1, '', '', 0, 0, 0, '2016-11-02 16:56:54', 1, '0000-00-00 00:00:00', 0), (4, 0, '-', '2016-11-04', '2016-11-11', '0000-00-00', '0000-00-00', '', '', 2, '', '', 1, 2780000, 50000, '2016-11-04 12:10:04', 1, '2016-11-04 12:59:17', 1), (6, 0, '-', '2016-11-07', '2016-11-26', '0000-00-00', '0000-00-00', '', '', 2, '', '', 1, 6000000, 50000, '2016-11-07 14:39:21', 1, '0000-00-00 00:00:00', 0), (7, 0, '-', '2016-12-04', '2016-12-10', '0000-00-00', '0000-00-00', '', '', 1, '', '', 1, 5850000, 60000, '2016-11-09 09:37:24', 1, '2016-11-09 09:39:23', 1), (8, 1, '', '2016-11-10', '0000-00-00', '2016-11-10', '2016-11-24', 'Jalan petukangan Utara No.8 Jakarta Selatan', 'Hotel Nakamura Bogor 52', 4, '', '', 2, 0, 0, '2016-11-10 09:51:42', 4, '0000-00-00 00:00:00', 0), (9, 1, '', '2016-11-11', '0000-00-00', '2016-11-11', '2016-11-14', 'Jln Pelana No.90 Jakarta Selatan', 'Jln District 4 Bandung ', 6, '<EMAIL>', '08522208555', 2, 0, 0, '2016-11-11 07:22:43', 6, '0000-00-00 00:00:00', 0), (10, 1, '', '2016-11-11', '0000-00-00', '2016-11-11', '2016-11-14', 'Jln Pelana No.90 Jakarta Selatan', 'Jln District 4 Bandung ', 6, '<EMAIL>', '08522208555', 2, 0, 0, '2016-11-11 07:23:37', 6, '0000-00-00 00:00:00', 0), (11, 1, '', '2016-11-11', '0000-00-00', '2016-11-10', '2016-11-12', 'Test', 'Test', 6, '<EMAIL>', '08522208555', 2, 0, 0, '2016-11-11 07:25:22', 6, '0000-00-00 00:00:00', 0), (12, 1, '', '2016-11-11', '0000-00-00', '2016-11-10', '2016-11-12', 'Test', 'Test', 6, '<EMAIL>', '08522208555', 2, 0, 0, '2016-11-11 08:59:44', 6, '0000-00-00 00:00:00', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `sales_orders` -- ALTER TABLE `sales_orders` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `sales_orders` -- ALTER TABLE `sales_orders` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
CREATE OR REPLACE PACKAGE TT_Timer_Set AS /*************************************************************************************************** Name: tt_timer_set.pks Author: <NAME> Date: 29-Jan-2019 Package spec component in the Oracle timer_set_oracle module. This module facilitates code timing for instrumentation and other purposes, with very small footprint in both code and resource usage. GitHub: https://github.com/BrenPatF/timer_set_oracle There is an example main program and package showing how to use the Timer_Set package, and a unit test program. Unit testing is optional and depends on the module trapit_oracle_tester ==================================================================================================== | Main/Test | Unit Module | Notes | |==================================================================================================| | main_col_group | Col_Group | Simple file-reading and group-counting module, with logging | | | | to file. Example of usage of Timer_Set package | |------------------|----------------|--------------------------------------------------------------| | r_tests | *TT_Timer_Set* | Unit testing the Timer_Set package. Trapit_Run is installed | | | Trapit_Run | aa part of a separate module, trapit_oracle_tester | ==================================================================================================== This file has the TT_Timer_Set unit test package spec. Note that the test package is called by the unit test utility package Trapit_Run, which reads the unit test details from a table, tt_units, populated by the install scripts. The test program follows 'The Math Function Unit Testing design pattern': GitHub: https://github.com/BrenPatF/trapit_nodejs_tester Note that the unit test program generates an output file, tt_timer_set.purely_wrap_timer_set_out.json, that is processed by a separate nodejs program, npm package trapit (see README for further details). The output JSON file contains arrays of expected and actual records by group and scenario, in the format expected by the nodejs program. This program produces listings of the results in HTML and/or text format, and a sample set of listings is included in the folder test_data\test_output ***************************************************************************************************/ FUNCTION Purely_Wrap_Timer_Set( p_inp_3lis L3_chr_arr) RETURN L2_chr_arr; END TT_Timer_Set; /
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 1192.168.3.11 -- Generation Time: Oct 31, 2020 at 05:36 PM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.3.16 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `opencarts` -- DELIMITER $$ -- -- Functions -- CREATE DEFINER=`root`@`localhost` FUNCTION `get_url_path_of_category` (`categoryId` INT, `localeCode` VARCHAR(255)) RETURNS VARCHAR(255) CHARSET utf8mb4 BEGIN DECLARE urlPath VARCHAR(255); IF NOT EXISTS ( SELECT id FROM categories WHERE id = categoryId AND parent_id IS NULL ) THEN SELECT GROUP_CONCAT(parent_translations.slug SEPARATOR '/') INTO urlPath FROM categories AS node, categories AS parent JOIN category_translations AS parent_translations ON parent.id = parent_translations.category_id WHERE node._lft >= parent._lft AND node._rgt <= parent._rgt AND node.id = categoryId AND node.parent_id IS NOT NULL AND parent.parent_id IS NOT NULL AND parent_translations.locale = localeCode GROUP BY node.id; IF urlPath IS NULL THEN SET urlPath = (SELECT slug FROM category_translations WHERE category_translations.category_id = categoryId); END IF; ELSE SET urlPath = ''; END IF; RETURN urlPath; END$$ DELIMITER ; -- -------------------------------------------------------- -- -- Table structure for table `addresses` -- CREATE TABLE `addresses` ( `id` int(10) UNSIGNED NOT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'null if guest checkout', `cart_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'only for cart_addresses', `order_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'only for order_addresses', `first_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `gender` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address1` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `address2` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `postcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vat_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_address` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'only for customer_addresses', `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `api_token` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `role_id` int(10) UNSIGNED NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `admins` -- INSERT INTO `admins` (`id`, `company_id`, `name`, `email`, `password`, `api_token`, `status`, `role_id`, `remember_token`, `created_at`, `updated_at`) VALUES (2, 2, '<NAME>', '<EMAIL>', <PASSWORD>', NULL, 1, 2, NULL, '2020-10-31 18:02:15', '2020-10-31 18:02:15'); -- -------------------------------------------------------- -- -- Table structure for table `admin_password_resets` -- CREATE TABLE `admin_password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `admin_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `validation` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) DEFAULT NULL, `is_required` tinyint(1) NOT NULL DEFAULT 0, `is_unique` tinyint(1) NOT NULL DEFAULT 0, `value_per_locale` tinyint(1) NOT NULL DEFAULT 0, `value_per_channel` tinyint(1) NOT NULL DEFAULT 0, `is_filterable` tinyint(1) NOT NULL DEFAULT 0, `is_configurable` tinyint(1) NOT NULL DEFAULT 0, `is_user_defined` tinyint(1) NOT NULL DEFAULT 1, `is_visible_on_front` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `swatch_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL, `use_in_flat` tinyint(1) NOT NULL DEFAULT 1, `is_comparable` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `attribute_families` -- CREATE TABLE `attribute_families` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `is_user_defined` tinyint(1) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `attribute_groups` -- CREATE TABLE `attribute_groups` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `position` int(11) NOT NULL, `is_user_defined` tinyint(1) NOT NULL DEFAULT 1, `attribute_family_id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `attribute_group_mappings` -- CREATE TABLE `attribute_group_mappings` ( `attribute_id` int(10) UNSIGNED NOT NULL, `attribute_group_id` int(10) UNSIGNED NOT NULL, `position` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `attribute_options` -- CREATE TABLE `attribute_options` ( `id` int(10) UNSIGNED NOT NULL, `admin_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sort_order` int(11) DEFAULT NULL, `attribute_id` int(10) UNSIGNED NOT NULL, `swatch_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `attribute_option_translations` -- CREATE TABLE `attribute_option_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `label` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute_option_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `attribute_translations` -- CREATE TABLE `attribute_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `bookings` -- CREATE TABLE `bookings` ( `id` bigint(20) UNSIGNED NOT NULL, `qty` int(11) DEFAULT 0, `from` int(11) DEFAULT NULL, `to` int(11) DEFAULT NULL, `order_item_id` int(10) UNSIGNED DEFAULT NULL, `booking_product_event_ticket_id` int(10) UNSIGNED DEFAULT NULL, `order_id` int(10) UNSIGNED DEFAULT NULL, `product_id` int(10) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `booking_products` -- CREATE TABLE `booking_products` ( `id` int(10) UNSIGNED NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `qty` int(11) DEFAULT 0, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `show_location` tinyint(1) NOT NULL DEFAULT 0, `available_every_week` tinyint(1) DEFAULT NULL, `available_from` datetime DEFAULT NULL, `available_to` datetime DEFAULT NULL, `product_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `booking_product_appointment_slots` -- CREATE TABLE `booking_product_appointment_slots` ( `id` int(10) UNSIGNED NOT NULL, `duration` int(11) DEFAULT NULL, `break_time` int(11) DEFAULT NULL, `same_slot_all_days` tinyint(1) DEFAULT NULL, `slots` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`slots`)), `booking_product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `booking_product_default_slots` -- CREATE TABLE `booking_product_default_slots` ( `id` int(10) UNSIGNED NOT NULL, `booking_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `duration` int(11) DEFAULT NULL, `break_time` int(11) DEFAULT NULL, `slots` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`slots`)), `booking_product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `booking_product_event_tickets` -- CREATE TABLE `booking_product_event_tickets` ( `id` int(10) UNSIGNED NOT NULL, `price` decimal(12,4) DEFAULT 0.0000, `qty` int(11) DEFAULT 0, `special_price` decimal(12,4) DEFAULT NULL, `special_price_from` datetime DEFAULT NULL, `special_price_to` datetime DEFAULT NULL, `booking_product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `booking_product_event_ticket_translations` -- CREATE TABLE `booking_product_event_ticket_translations` ( `id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `booking_product_event_ticket_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `booking_product_rental_slots` -- CREATE TABLE `booking_product_rental_slots` ( `id` int(10) UNSIGNED NOT NULL, `renting_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `daily_price` decimal(12,4) DEFAULT 0.0000, `hourly_price` decimal(12,4) DEFAULT 0.0000, `same_slot_all_days` tinyint(1) DEFAULT NULL, `slots` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`slots`)), `booking_product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `booking_product_table_slots` -- CREATE TABLE `booking_product_table_slots` ( `id` int(10) UNSIGNED NOT NULL, `price_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `guest_limit` int(11) NOT NULL DEFAULT 0, `duration` int(11) NOT NULL, `break_time` int(11) NOT NULL, `prevent_scheduling_before` int(11) NOT NULL, `same_slot_all_days` tinyint(1) DEFAULT NULL, `slots` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`slots`)), `booking_product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart` -- CREATE TABLE `cart` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_gift` tinyint(1) NOT NULL DEFAULT 0, `items_count` int(11) DEFAULT NULL, `items_qty` decimal(12,4) DEFAULT NULL, `exchange_rate` decimal(12,4) DEFAULT NULL, `global_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `base_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cart_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `grand_total` decimal(12,4) DEFAULT 0.0000, `base_grand_total` decimal(12,4) DEFAULT 0.0000, `sub_total` decimal(12,4) DEFAULT 0.0000, `base_sub_total` decimal(12,4) DEFAULT 0.0000, `tax_total` decimal(12,4) DEFAULT 0.0000, `base_tax_total` decimal(12,4) DEFAULT 0.0000, `discount_amount` decimal(12,4) DEFAULT 0.0000, `base_discount_amount` decimal(12,4) DEFAULT 0.0000, `checkout_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(1) DEFAULT NULL, `is_active` tinyint(1) DEFAULT 1, `conversion_time` datetime DEFAULT NULL, `customer_id` int(10) UNSIGNED DEFAULT NULL, `channel_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `applied_cart_rule_ids` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_items` -- CREATE TABLE `cart_items` ( `id` int(10) UNSIGNED NOT NULL, `quantity` int(10) UNSIGNED NOT NULL DEFAULT 0, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` decimal(12,4) NOT NULL DEFAULT 0.0000, `total_weight` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_total_weight` decimal(12,4) NOT NULL DEFAULT 0.0000, `price` decimal(12,4) NOT NULL DEFAULT 1.0000, `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000, `total` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_total` decimal(12,4) NOT NULL DEFAULT 0.0000, `tax_percent` decimal(12,4) DEFAULT 0.0000, `tax_amount` decimal(12,4) DEFAULT 0.0000, `base_tax_amount` decimal(12,4) DEFAULT 0.0000, `discount_percent` decimal(12,4) NOT NULL DEFAULT 0.0000, `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000, `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)), `parent_id` int(10) UNSIGNED DEFAULT NULL, `product_id` int(10) UNSIGNED NOT NULL, `cart_id` int(10) UNSIGNED NOT NULL, `tax_category_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `custom_price` decimal(12,4) DEFAULT NULL, `applied_cart_rule_ids` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_item_inventories` -- CREATE TABLE `cart_item_inventories` ( `id` int(10) UNSIGNED NOT NULL, `qty` int(10) UNSIGNED NOT NULL DEFAULT 0, `inventory_source_id` int(10) UNSIGNED DEFAULT NULL, `cart_item_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_payment` -- CREATE TABLE `cart_payment` ( `id` int(10) UNSIGNED NOT NULL, `method` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cart_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_rules` -- CREATE TABLE `cart_rules` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `starts_from` datetime DEFAULT NULL, `ends_till` datetime DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `coupon_type` int(11) NOT NULL DEFAULT 1, `use_auto_generation` tinyint(1) NOT NULL DEFAULT 0, `usage_per_customer` int(11) NOT NULL DEFAULT 0, `uses_per_coupon` int(11) NOT NULL DEFAULT 0, `times_used` int(10) UNSIGNED NOT NULL DEFAULT 0, `condition_type` tinyint(1) NOT NULL DEFAULT 1, `conditions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`conditions`)), `end_other_rules` tinyint(1) NOT NULL DEFAULT 0, `uses_attribute_conditions` tinyint(1) NOT NULL DEFAULT 0, `action_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000, `discount_quantity` int(11) NOT NULL DEFAULT 1, `discount_step` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `apply_to_shipping` tinyint(1) NOT NULL DEFAULT 0, `free_shipping` tinyint(1) NOT NULL DEFAULT 0, `sort_order` int(10) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_rule_channels` -- CREATE TABLE `cart_rule_channels` ( `cart_rule_id` int(10) UNSIGNED NOT NULL, `channel_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_rule_coupons` -- CREATE TABLE `cart_rule_coupons` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `usage_limit` int(10) UNSIGNED NOT NULL DEFAULT 0, `usage_per_customer` int(10) UNSIGNED NOT NULL DEFAULT 0, `times_used` int(10) UNSIGNED NOT NULL DEFAULT 0, `type` int(10) UNSIGNED NOT NULL DEFAULT 0, `is_primary` tinyint(1) NOT NULL DEFAULT 0, `expired_at` date DEFAULT NULL, `cart_rule_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_rule_coupon_usage` -- CREATE TABLE `cart_rule_coupon_usage` ( `id` int(10) UNSIGNED NOT NULL, `times_used` int(11) NOT NULL DEFAULT 0, `cart_rule_coupon_id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_rule_customers` -- CREATE TABLE `cart_rule_customers` ( `id` int(10) UNSIGNED NOT NULL, `times_used` bigint(20) UNSIGNED NOT NULL DEFAULT 0, `cart_rule_id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_rule_customer_groups` -- CREATE TABLE `cart_rule_customer_groups` ( `cart_rule_id` int(10) UNSIGNED NOT NULL, `customer_group_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_rule_translations` -- CREATE TABLE `cart_rule_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `label` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cart_rule_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cart_shipping_rates` -- CREATE TABLE `cart_shipping_rates` ( `id` int(10) UNSIGNED NOT NULL, `carrier` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `carrier_title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double DEFAULT 0, `base_price` double DEFAULT 0, `cart_address_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `catalog_rules` -- CREATE TABLE `catalog_rules` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `starts_from` date DEFAULT NULL, `ends_till` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `condition_type` tinyint(1) NOT NULL DEFAULT 1, `conditions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`conditions`)), `end_other_rules` tinyint(1) NOT NULL DEFAULT 0, `action_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000, `sort_order` int(10) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `catalog_rule_channels` -- CREATE TABLE `catalog_rule_channels` ( `catalog_rule_id` int(10) UNSIGNED NOT NULL, `channel_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `catalog_rule_customer_groups` -- CREATE TABLE `catalog_rule_customer_groups` ( `catalog_rule_id` int(10) UNSIGNED NOT NULL, `customer_group_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `catalog_rule_products` -- CREATE TABLE `catalog_rule_products` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `starts_from` datetime DEFAULT NULL, `ends_till` datetime DEFAULT NULL, `end_other_rules` tinyint(1) NOT NULL DEFAULT 0, `action_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000, `sort_order` int(10) UNSIGNED NOT NULL DEFAULT 0, `product_id` int(10) UNSIGNED NOT NULL, `customer_group_id` int(10) UNSIGNED NOT NULL, `catalog_rule_id` int(10) UNSIGNED NOT NULL, `channel_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `catalog_rule_product_prices` -- CREATE TABLE `catalog_rule_product_prices` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `price` decimal(12,4) NOT NULL DEFAULT 0.0000, `rule_date` date NOT NULL, `starts_from` datetime DEFAULT NULL, `ends_till` datetime DEFAULT NULL, `product_id` int(10) UNSIGNED NOT NULL, `customer_group_id` int(10) UNSIGNED NOT NULL, `catalog_rule_id` int(10) UNSIGNED NOT NULL, `channel_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `position` int(11) NOT NULL DEFAULT 0, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `_lft` int(10) UNSIGNED NOT NULL DEFAULT 0, `_rgt` int(10) UNSIGNED NOT NULL DEFAULT 0, `parent_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `display_mode` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'products_and_description', `category_icon_path` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Triggers `categories` -- DELIMITER $$ CREATE TRIGGER `trig_categories_insert` AFTER INSERT ON `categories` FOR EACH ROW BEGIN DECLARE urlPath VARCHAR(255); DECLARE localeCode VARCHAR(255); DECLARE done INT; DECLARE curs CURSOR FOR (SELECT category_translations.locale FROM category_translations WHERE category_id = NEW.id); DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1; IF EXISTS ( SELECT * FROM category_translations WHERE category_id = NEW.id ) THEN OPEN curs; SET done = 0; REPEAT FETCH curs INTO localeCode; SELECT get_url_path_of_category(NEW.id, localeCode) INTO urlPath; IF NEW.parent_id IS NULL THEN SET urlPath = ''; END IF; UPDATE category_translations SET url_path = urlPath WHERE category_translations.category_id = NEW.id AND category_translations.locale = localeCode; UNTIL done END REPEAT; CLOSE curs; END IF; END $$ DELIMITER ; DELIMITER $$ CREATE TRIGGER `trig_categories_update` AFTER UPDATE ON `categories` FOR EACH ROW BEGIN DECLARE urlPath VARCHAR(255); DECLARE localeCode VARCHAR(255); DECLARE done INT; DECLARE curs CURSOR FOR (SELECT category_translations.locale FROM category_translations WHERE category_id = NEW.id); DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1; IF EXISTS ( SELECT * FROM category_translations WHERE category_id = NEW.id ) THEN OPEN curs; SET done = 0; REPEAT FETCH curs INTO localeCode; SELECT get_url_path_of_category(NEW.id, localeCode) INTO urlPath; IF NEW.parent_id IS NULL THEN SET urlPath = ''; END IF; UPDATE category_translations SET url_path = urlPath WHERE category_translations.category_id = NEW.id AND category_translations.locale = localeCode; UNTIL done END REPEAT; CLOSE curs; END IF; END $$ DELIMITER ; -- -------------------------------------------------------- -- -- Table structure for table `category_filterable_attributes` -- CREATE TABLE `category_filterable_attributes` ( `category_id` int(10) UNSIGNED NOT NULL, `attribute_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `category_translations` -- CREATE TABLE `category_translations` ( `id` int(10) UNSIGNED NOT NULL, `name` text COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `locale_id` int(10) UNSIGNED DEFAULT NULL, `url_path` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'maintained by database triggers' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Triggers `category_translations` -- DELIMITER $$ CREATE TRIGGER `trig_category_translations_insert` BEFORE INSERT ON `category_translations` FOR EACH ROW BEGIN DECLARE parentUrlPath varchar(255); DECLARE urlPath varchar(255); IF NOT EXISTS ( SELECT id FROM categories WHERE id = NEW.category_id AND parent_id IS NULL ) THEN SELECT GROUP_CONCAT(parent_translations.slug SEPARATOR '/') INTO parentUrlPath FROM categories AS node, categories AS parent JOIN category_translations AS parent_translations ON parent.id = parent_translations.category_id WHERE node._lft >= parent._lft AND node._rgt <= parent._rgt AND node.id = (SELECT parent_id FROM categories WHERE id = NEW.category_id) AND node.parent_id IS NOT NULL AND parent.parent_id IS NOT NULL AND parent_translations.locale = NEW.locale GROUP BY node.id; IF parentUrlPath IS NULL THEN SET urlPath = NEW.slug; ELSE SET urlPath = concat(parentUrlPath, '/', NEW.slug); END IF; SET NEW.url_path = urlPath; END IF; END $$ DELIMITER ; DELIMITER $$ CREATE TRIGGER `trig_category_translations_update` BEFORE UPDATE ON `category_translations` FOR EACH ROW BEGIN DECLARE parentUrlPath varchar(255); DECLARE urlPath varchar(255); IF NOT EXISTS ( SELECT id FROM categories WHERE id = NEW.category_id AND parent_id IS NULL ) THEN SELECT GROUP_CONCAT(parent_translations.slug SEPARATOR '/') INTO parentUrlPath FROM categories AS node, categories AS parent JOIN category_translations AS parent_translations ON parent.id = parent_translations.category_id WHERE node._lft >= parent._lft AND node._rgt <= parent._rgt AND node.id = (SELECT parent_id FROM categories WHERE id = NEW.category_id) AND node.parent_id IS NOT NULL AND parent.parent_id IS NOT NULL AND parent_translations.locale = NEW.locale GROUP BY node.id; IF parentUrlPath IS NULL THEN SET urlPath = NEW.slug; ELSE SET urlPath = concat(parentUrlPath, '/', NEW.slug); END IF; SET NEW.url_path = urlPath; END IF; END $$ DELIMITER ; -- -------------------------------------------------------- -- -- Table structure for table `channels` -- CREATE TABLE `channels` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `timezone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `theme` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `hostname` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `favicon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `home_page_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `footer_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_locale_id` int(10) UNSIGNED NOT NULL, `base_currency_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `root_category_id` int(10) UNSIGNED DEFAULT NULL, `home_seo` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`home_seo`)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `channel_currencies` -- CREATE TABLE `channel_currencies` ( `channel_id` int(10) UNSIGNED NOT NULL, `currency_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `channel_inventory_sources` -- CREATE TABLE `channel_inventory_sources` ( `channel_id` int(10) UNSIGNED NOT NULL, `inventory_source_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `channel_locales` -- CREATE TABLE `channel_locales` ( `channel_id` int(10) UNSIGNED NOT NULL, `locale_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cms_pages` -- CREATE TABLE `cms_pages` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `layout` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cms_page_channels` -- CREATE TABLE `cms_page_channels` ( `cms_page_id` int(10) UNSIGNED NOT NULL, `channel_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `cms_page_translations` -- CREATE TABLE `cms_page_translations` ( `id` int(10) UNSIGNED NOT NULL, `page_title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `url_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `html_content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cms_page_id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `companies` -- CREATE TABLE `companies` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `domain` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cname` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `more_info` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`more_info`)), `is_active` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `channel_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `companies` -- INSERT INTO `companies` (`id`, `name`, `email`, `username`, `domain`, `cname`, `description`, `more_info`, `is_active`, `created_at`, `updated_at`, `channel_id`) VALUES (2, 'edesigner', '<EMAIL>', 'hamid', 'hamid.shopcarts.co', NULL, NULL, '{\"created\":true,\"seeded\":false}', 1, '2020-10-31 18:02:14', '2020-10-31 18:02:14', 0); -- -------------------------------------------------------- -- -- Table structure for table `company_addresses` -- CREATE TABLE `company_addresses` ( `id` int(10) UNSIGNED NOT NULL, `address1` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address2` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `misc` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`misc`)), `company_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `company_personal_details` -- CREATE TABLE `company_personal_details` ( `id` int(10) UNSIGNED NOT NULL, `first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `skype` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL, `more_info` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`more_info`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `company_personal_details` -- INSERT INTO `company_personal_details` (`id`, `first_name`, `last_name`, `email`, `skype`, `company_id`, `more_info`, `created_at`, `updated_at`, `phone`) VALUES (2, 'hamid', 'lahouiri', '<EMAIL>', NULL, 2, NULL, '2020-10-31 18:02:15', '2020-10-31 18:02:15', NULL); -- -------------------------------------------------------- -- -- Table structure for table `core_config` -- CREATE TABLE `core_config` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, `channel_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `locale_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `countries` -- CREATE TABLE `countries` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `country_states` -- CREATE TABLE `country_states` ( `id` int(10) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_id` int(10) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `country_state_translations` -- CREATE TABLE `country_state_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `default_name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_state_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `country_translations` -- CREATE TABLE `country_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `currency_exchange_rates` -- CREATE TABLE `currency_exchange_rates` ( `id` int(10) UNSIGNED NOT NULL, `rate` decimal(24,12) NOT NULL, `target_currency` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `customers` -- CREATE TABLE `customers` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `first_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `gender` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date_of_birth` date DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 1, `password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `api_token` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_group_id` int(10) UNSIGNED DEFAULT NULL, `subscribed_to_news_letter` tinyint(1) NOT NULL DEFAULT 0, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `is_verified` tinyint(1) NOT NULL DEFAULT 0, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `customer_groups` -- CREATE TABLE `customer_groups` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `is_user_defined` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `customer_password_resets` -- CREATE TABLE `customer_password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `customer_social_accounts` -- CREATE TABLE `customer_social_accounts` ( `id` int(10) UNSIGNED NOT NULL, `provider_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `provider_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `downloadable_link_purchased` -- CREATE TABLE `downloadable_link_purchased` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `product_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `download_bought` int(11) NOT NULL DEFAULT 0, `download_used` int(11) NOT NULL DEFAULT 0, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `order_id` int(10) UNSIGNED NOT NULL, `order_item_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `inventory_sources` -- CREATE TABLE `inventory_sources` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `contact_email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `contact_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `contact_fax` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `street` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `postcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `priority` int(11) NOT NULL DEFAULT 0, `latitude` decimal(10,5) DEFAULT NULL, `longitude` decimal(10,5) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `invoices` -- CREATE TABLE `invoices` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `increment_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_sent` tinyint(1) NOT NULL DEFAULT 0, `total_qty` int(11) DEFAULT NULL, `base_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_total` decimal(12,4) DEFAULT 0.0000, `base_sub_total` decimal(12,4) DEFAULT 0.0000, `grand_total` decimal(12,4) DEFAULT 0.0000, `base_grand_total` decimal(12,4) DEFAULT 0.0000, `shipping_amount` decimal(12,4) DEFAULT 0.0000, `base_shipping_amount` decimal(12,4) DEFAULT 0.0000, `tax_amount` decimal(12,4) DEFAULT 0.0000, `base_tax_amount` decimal(12,4) DEFAULT 0.0000, `discount_amount` decimal(12,4) DEFAULT 0.0000, `base_discount_amount` decimal(12,4) DEFAULT 0.0000, `order_id` int(10) UNSIGNED DEFAULT NULL, `order_address_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `invoice_items` -- CREATE TABLE `invoice_items` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) DEFAULT NULL, `price` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000, `total` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_total` decimal(12,4) NOT NULL DEFAULT 0.0000, `tax_amount` decimal(12,4) DEFAULT 0.0000, `base_tax_amount` decimal(12,4) DEFAULT 0.0000, `product_id` int(10) UNSIGNED DEFAULT NULL, `product_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_item_id` int(10) UNSIGNED DEFAULT NULL, `invoice_id` int(10) UNSIGNED DEFAULT NULL, `parent_id` int(10) UNSIGNED DEFAULT NULL, `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_percent` decimal(12,4) DEFAULT 0.0000, `discount_amount` decimal(12,4) DEFAULT 0.0000, `base_discount_amount` decimal(12,4) DEFAULT 0.0000 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `locales` -- CREATE TABLE `locales` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL, `direction` enum('ltr','rtl') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ltr', `locale_image` text COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_admin_password_resets_table', 1), (3, '2014_10_12_100000_create_password_resets_table', 1), (4, '2018_06_12_111907_create_admins_table', 1), (5, '2018_06_13_055341_create_roles_table', 1), (6, '2018_07_05_130148_create_attributes_table', 1), (7, '2018_07_05_132854_create_attribute_translations_table', 1), (8, '2018_07_05_135150_create_attribute_families_table', 1), (9, '2018_07_05_135152_create_attribute_groups_table', 1), (10, '2018_07_05_140832_create_attribute_options_table', 1), (11, '2018_07_05_140856_create_attribute_option_translations_table', 1), (12, '2018_07_05_142820_create_categories_table', 1), (13, '2018_07_10_055143_create_locales_table', 1), (14, '2018_07_20_054426_create_countries_table', 1), (15, '2018_07_20_054502_create_currencies_table', 1), (16, '2018_07_20_054542_create_currency_exchange_rates_table', 1), (17, '2018_07_20_064849_create_channels_table', 1), (18, '2018_07_21_142836_create_category_translations_table', 1), (19, '2018_07_23_110040_create_inventory_sources_table', 1), (20, '2018_07_24_082635_create_customer_groups_table', 1), (21, '2018_07_24_082930_create_customers_table', 1), (22, '2018_07_24_083025_create_customer_addresses_table', 1), (23, '2018_07_27_065727_create_products_table', 1), (24, '2018_07_27_070011_create_product_attribute_values_table', 1), (25, '2018_07_27_092623_create_product_reviews_table', 1), (26, '2018_07_27_113941_create_product_images_table', 1), (27, '2018_07_27_113956_create_product_inventories_table', 1), (28, '2018_08_03_114203_create_sliders_table', 1), (29, '2018_08_30_064755_create_tax_categories_table', 1), (30, '2018_08_30_065042_create_tax_rates_table', 1), (31, '2018_08_30_065840_create_tax_mappings_table', 1), (32, '2018_09_05_150444_create_cart_table', 1), (33, '2018_09_05_150915_create_cart_items_table', 1), (34, '2018_09_11_064045_customer_password_resets', 1), (35, '2018_09_19_092845_create_cart_address', 1), (36, '2018_09_19_093453_create_cart_payment', 1), (37, '2018_09_19_093508_create_cart_shipping_rates_table', 1), (38, '2018_09_20_060658_create_core_config_table', 1), (39, '2018_09_27_113154_create_orders_table', 1), (40, '2018_09_27_113207_create_order_items_table', 1), (41, '2018_09_27_113405_create_order_address_table', 1), (42, '2018_09_27_115022_create_shipments_table', 1), (43, '2018_09_27_115029_create_shipment_items_table', 1), (44, '2018_09_27_115135_create_invoices_table', 1), (45, '2018_09_27_115144_create_invoice_items_table', 1), (46, '2018_10_01_095504_create_order_payment_table', 1), (47, '2018_10_03_025230_create_wishlist_table', 1), (48, '2018_10_12_101803_create_country_translations_table', 1), (49, '2018_10_12_101913_create_country_states_table', 1), (50, '2018_10_12_101923_create_country_state_translations_table', 1), (51, '2018_11_15_153257_alter_order_table', 1), (52, '2018_11_15_163729_alter_invoice_table', 1), (53, '2018_11_16_173504_create_subscribers_list_table', 1), (54, '2018_11_17_165758_add_is_verified_column_in_customers_table', 1), (55, '2018_11_21_144411_create_cart_item_inventories_table', 1), (56, '2018_11_26_110500_change_gender_column_in_customers_table', 1), (57, '2018_11_27_174449_change_content_column_in_sliders_table', 1), (58, '2018_12_05_132625_drop_foreign_key_core_config_table', 1), (59, '2018_12_05_132629_alter_core_config_table', 1), (60, '2018_12_06_185202_create_product_flat_table', 1), (61, '2018_12_21_101307_alter_channels_table', 1), (62, '2018_12_24_123812_create_channel_inventory_sources_table', 1), (63, '2018_12_24_184402_alter_shipments_table', 1), (64, '2018_12_26_165327_create_product_ordered_inventories_table', 1), (65, '2018_12_31_161114_alter_channels_category_table', 1), (66, '2019_01_11_122452_add_vendor_id_column_in_product_inventories_table', 1), (67, '2019_01_25_124522_add_updated_at_column_in_product_flat_table', 1), (68, '2019_01_29_123053_add_min_price_and_max_price_column_in_product_flat_table', 1), (69, '2019_01_31_164117_update_value_column_type_to_text_in_core_config_table', 1), (70, '2019_02_21_145238_alter_product_reviews_table', 1), (71, '2019_02_21_152709_add_swatch_type_column_in_attributes_table', 1), (72, '2019_02_21_153035_alter_customer_id_in_product_reviews_table', 1), (73, '2019_02_21_153851_add_swatch_value_columns_in_attribute_options_table', 1), (74, '2019_03_15_123337_add_display_mode_column_in_categories_table', 1), (75, '2019_03_26_151001_create_companies_table', 1), (76, '2019_03_26_152524_alter_all_unique_contraints', 1), (77, '2019_03_28_103658_add_notes_column_in_customers_table', 1), (78, '2019_04_05_105951_create_company_personal_details_table', 1), (79, '2019_04_24_155820_alter_product_flat_table', 1), (80, '2019_05_13_024320_remove_tables', 1), (81, '2019_05_13_024321_create_cart_rules_table', 1), (82, '2019_05_13_024322_create_cart_rule_channels_table', 1), (83, '2019_05_13_024323_create_cart_rule_customer_groups_table', 1), (84, '2019_05_13_024324_create_cart_rule_translations_table', 1), (85, '2019_05_13_024325_create_cart_rule_customers_table', 1), (86, '2019_05_13_024326_create_cart_rule_coupons_table', 1), (87, '2019_05_13_024327_create_cart_rule_coupon_usage_table', 1), (88, '2019_05_20_102233_create_super_admins_table', 1), (89, '2019_05_22_165833_update_zipcode_column_type_to_varchar_in_cart_address_table', 1), (90, '2019_05_23_113407_add_remaining_column_in_product_flat_table', 1), (91, '2019_05_23_155520_add_discount_columns_in_invoice_items_table', 1), (92, '2019_05_23_184029_rename_discount_columns_in_cart_table', 1), (93, '2019_06_04_114009_add_phone_column_in_customers_table', 1), (94, '2019_06_06_195905_update_custom_price_to_nullable_in_cart_items', 1), (95, '2019_06_15_183412_add_code_column_in_customer_groups_table', 1), (96, '2019_06_17_180258_create_product_downloadable_samples_table', 1), (97, '2019_06_17_180314_create_product_downloadable_sample_translations_table', 1), (98, '2019_06_17_180325_create_product_downloadable_links_table', 1), (99, '2019_06_17_180346_create_product_downloadable_link_translations_table', 1), (100, '2019_06_19_162817_remove_unique_in_phone_column_in_customers_table', 1), (101, '2019_06_21_130512_update_weight_column_deafult_value_in_cart_items_table', 1), (102, '2019_06_21_202249_create_downloadable_link_purchased_table', 1), (103, '2019_07_02_180307_create_booking_products_table', 1), (104, '2019_07_05_114157_add_symbol_column_in_currencies_table', 1), (105, '2019_07_05_154415_create_booking_product_default_slots_table', 1), (106, '2019_07_05_154429_create_booking_product_appointment_slots_table', 1), (107, '2019_07_05_154440_create_booking_product_event_tickets_table', 1), (108, '2019_07_05_154451_create_booking_product_rental_slots_table', 1), (109, '2019_07_05_154502_create_booking_product_table_slots_table', 1), (110, '2019_07_11_151210_add_locale_id_in_category_translations', 1), (111, '2019_07_23_033128_alter_locales_table', 1), (112, '2019_07_23_174708_create_velocity_contents_table', 1), (113, '2019_07_23_175212_create_velocity_contents_translations_table', 1), (114, '2019_07_29_142734_add_use_in_flat_column_in_attributes_table', 1), (115, '2019_07_30_153530_create_cms_pages_table', 1), (116, '2019_07_31_143339_create_category_filterable_attributes_table', 1), (117, '2019_08_02_105320_create_product_grouped_products_table', 1), (118, '2019_08_12_184925_add_additional_cloumn_in_wishlist_table', 1), (119, '2019_08_19_222319_alter_customer_groups_table', 1), (120, '2019_08_20_170510_create_product_bundle_options_table', 1), (121, '2019_08_20_170520_create_product_bundle_option_translations_table', 1), (122, '2019_08_20_170528_create_product_bundle_option_products_table', 1), (123, '2019_08_21_123707_add_seo_column_in_channels_table', 1), (124, '2019_09_04_161454_add_misc_column_in_super_admins_table', 1), (125, '2019_09_11_184511_create_refunds_table', 1), (126, '2019_09_11_184519_create_refund_items_table', 1), (127, '2019_09_26_163950_remove_channel_id_from_customers_table', 1), (128, '2019_10_03_105451_change_rate_column_in_currency_exchange_rates_table', 1), (129, '2019_10_21_105136_order_brands', 1), (130, '2019_10_24_173358_change_postcode_column_type_in_order_address_table', 1), (131, '2019_10_24_173437_change_postcode_column_type_in_cart_address_table', 1), (132, '2019_10_24_173507_change_postcode_column_type_in_customer_addresses_table', 1), (133, '2019_10_30_111255_restructure_company_tables', 1), (134, '2019_10_31_153136_modify_table_for_bagisto_compatibility_018', 1), (135, '2019_11_21_194541_add_column_url_path_to_category_translations', 1), (136, '2019_11_21_194608_add_stored_function_to_get_url_path_of_category', 1), (137, '2019_11_21_194627_add_trigger_to_category_translations', 1), (138, '2019_11_21_194648_add_url_path_to_existing_category_translations', 1), (139, '2019_11_21_194703_add_trigger_to_categories', 1), (140, '2019_11_25_171136_add_applied_cart_rule_ids_column_in_cart_table', 1), (141, '2019_11_25_171208_add_applied_cart_rule_ids_column_in_cart_items_table', 1), (142, '2019_11_30_124437_add_applied_cart_rule_ids_column_in_orders_table', 1), (143, '2019_11_30_165644_add_discount_columns_in_cart_shipping_rates_table', 1), (144, '2019_12_03_175253_create_remove_catalog_rule_tables', 1), (145, '2019_12_03_184613_create_catalog_rules_table', 1), (146, '2019_12_03_184651_create_catalog_rule_channels_table', 1), (147, '2019_12_03_184732_create_catalog_rule_customer_groups_table', 1), (148, '2019_12_06_101110_create_catalog_rule_products_table', 1), (149, '2019_12_06_110507_create_catalog_rule_product_prices_table', 1), (150, '2019_12_16_121748_alter_cms_catalog_rule_table', 1), (151, '2019_12_16_164314_alter_cart_rules_tables', 1), (152, '2019_12_30_155256_create_velocity_meta_data', 1), (153, '2020_01_02_201029_add_api_token_columns', 1), (154, '2020_01_06_173505_alter_trigger_category_translations', 1), (155, '2020_01_06_173524_alter_stored_function_url_path_category', 1), (156, '2020_01_06_195305_alter_trigger_on_categories', 1), (157, '2020_01_09_154851_add_shipping_discount_columns_in_orders_table', 1), (158, '2020_01_09_202815_add_inventory_source_name_column_in_shipments_table', 1), (159, '2020_01_10_122226_update_velocity_meta_data', 1), (160, '2020_01_10_151902_customer_address_improvements', 1), (161, '2020_01_13_131431_alter_float_value_column_type_in_product_attribute_values_table', 1), (162, '2020_01_13_155803_add_velocity_locale_icon', 1), (163, '2020_01_13_192149_add_category_velocity_meta_data', 1), (164, '2020_01_14_191854_create_cms_page_translations_table', 1), (165, '2020_01_14_192206_remove_columns_from_cms_pages_table', 1), (166, '2020_01_15_130209_create_cms_page_channels_table', 1), (167, '2020_01_15_145637_add_product_policy', 1), (168, '2020_01_15_152121_add_banner_link', 1), (169, '2020_01_23_195444_add_channel_id_to_companies', 1), (170, '2020_01_28_102422_add_new_column_and_rename_name_column_in_customer_addresses_table', 1), (171, '2020_01_29_111903_create_super_admin_password_resets_table', 1), (172, '2020_01_29_124748_alter_name_column_in_country_state_translations_table', 1), (173, '2020_02_18_165639_create_bookings_table', 1), (174, '2020_02_21_121201_create_booking_product_event_ticket_translations_table', 1), (175, '2020_02_24_190025_add_is_comparable_column_in_attributes_table', 1), (176, '2020_02_25_181902_propagate_company_name', 1), (177, '2020_02_26_163908_change_column_type_in_cart_rules_table', 1), (178, '2020_02_27_164318_create_super_currencies_and_exchange_rates_table', 1), (179, '2020_02_27_164922_create_super_locales_table', 1), (180, '2020_02_27_165627_alter_super_channel_table', 1), (181, '2020_02_27_170217_create_super_config_table', 1), (182, '2020_02_27_170538_alter_super_admins_table', 1), (183, '2020_02_28_105104_fix_order_columns', 1), (184, '2020_02_28_111958_create_customer_compare_products_table', 1), (185, '2020_02_28_123518_alter_cms_page_translations_table', 1), (186, '2020_02_29_131108_add_company_id_to_downloadable_link_purchased', 1), (187, '2020_03_02_174017_alter_velocity_tables_table', 1), (188, '2020_03_23_201431_alter_booking_products_table', 1), (189, '2020_04_13_224524_add_locale_in_sliders_table', 1), (190, '2020_04_16_130351_remove_channel_from_tax_category', 1), (191, '2020_04_16_185147_add_table_addresses', 1), (192, '2020_05_06_171638_create_order_comments_table', 1), (193, '2020_05_21_171500_create_product_customer_group_prices_table', 1), (194, '2020_05_26_170958_add_cname_column_to_companies', 1), (195, '2020_06_08_161708_add_sale_prices_to_booking_product_event_tickets', 1), (196, '2020_06_10_201453_add_locale_velocity_meta_data', 1), (197, '2020_06_25_162154_create_customer_social_accounts_table', 1), (198, '2020_06_25_162340_change_email_password_columns_in_customers_table', 1), (199, '2020_06_30_163510_remove_unique_name_in_tax_categories_table', 1), (200, '2020_07_31_142021_update_cms_page_translations_table_field_html_content', 1), (201, '2020_08_01_132239_add_header_content_count_velocity_meta_data_table', 1), (202, '2020_08_12_114128_removing_foriegn_key', 1), (203, '2020_08_17_104228_add_channel_to_velocity_meta_data_table', 1), (204, '2020_09_04_155556_add_company_id_to_addresses_table', 1), (205, '2020_09_07_120413_add_unique_index_to_increment_id_in_orders_table', 1), (206, '2020_09_07_195157_add_additional_to_category', 1); -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `increment_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(1) DEFAULT NULL, `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_vat_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_gift` tinyint(1) NOT NULL DEFAULT 0, `total_item_count` int(11) DEFAULT NULL, `total_qty_ordered` int(11) DEFAULT NULL, `base_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `grand_total` decimal(12,4) DEFAULT 0.0000, `base_grand_total` decimal(12,4) DEFAULT 0.0000, `grand_total_invoiced` decimal(12,4) DEFAULT 0.0000, `base_grand_total_invoiced` decimal(12,4) DEFAULT 0.0000, `grand_total_refunded` decimal(12,4) DEFAULT 0.0000, `base_grand_total_refunded` decimal(12,4) DEFAULT 0.0000, `sub_total` decimal(12,4) DEFAULT 0.0000, `base_sub_total` decimal(12,4) DEFAULT 0.0000, `sub_total_invoiced` decimal(12,4) DEFAULT 0.0000, `base_sub_total_invoiced` decimal(12,4) DEFAULT 0.0000, `sub_total_refunded` decimal(12,4) DEFAULT 0.0000, `base_sub_total_refunded` decimal(12,4) DEFAULT 0.0000, `discount_percent` decimal(12,4) DEFAULT 0.0000, `discount_amount` decimal(12,4) DEFAULT 0.0000, `base_discount_amount` decimal(12,4) DEFAULT 0.0000, `discount_invoiced` decimal(12,4) DEFAULT 0.0000, `base_discount_invoiced` decimal(12,4) DEFAULT 0.0000, `discount_refunded` decimal(12,4) DEFAULT 0.0000, `base_discount_refunded` decimal(12,4) DEFAULT 0.0000, `tax_amount` decimal(12,4) DEFAULT 0.0000, `base_tax_amount` decimal(12,4) DEFAULT 0.0000, `tax_amount_invoiced` decimal(12,4) DEFAULT 0.0000, `base_tax_amount_invoiced` decimal(12,4) DEFAULT 0.0000, `tax_amount_refunded` decimal(12,4) DEFAULT 0.0000, `base_tax_amount_refunded` decimal(12,4) DEFAULT 0.0000, `shipping_amount` decimal(12,4) DEFAULT 0.0000, `base_shipping_amount` decimal(12,4) DEFAULT 0.0000, `shipping_invoiced` decimal(12,4) DEFAULT 0.0000, `base_shipping_invoiced` decimal(12,4) DEFAULT 0.0000, `shipping_refunded` decimal(12,4) DEFAULT 0.0000, `base_shipping_refunded` decimal(12,4) DEFAULT 0.0000, `customer_id` int(10) UNSIGNED DEFAULT NULL, `customer_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_id` int(10) UNSIGNED DEFAULT NULL, `channel_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `cart_id` int(11) DEFAULT NULL, `applied_cart_rule_ids` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_discount_amount` decimal(12,4) DEFAULT 0.0000, `base_shipping_discount_amount` decimal(12,4) DEFAULT 0.0000 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `order_brands` -- CREATE TABLE `order_brands` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `order_id` int(10) UNSIGNED DEFAULT NULL, `order_item_id` int(10) UNSIGNED DEFAULT NULL, `product_id` int(10) UNSIGNED DEFAULT NULL, `brand` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `order_comments` -- CREATE TABLE `order_comments` ( `id` int(10) UNSIGNED NOT NULL, `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `customer_notified` tinyint(1) NOT NULL DEFAULT 0, `order_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `order_items` -- CREATE TABLE `order_items` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` decimal(12,4) DEFAULT 0.0000, `total_weight` decimal(12,4) DEFAULT 0.0000, `qty_ordered` int(11) DEFAULT 0, `qty_shipped` int(11) DEFAULT 0, `qty_invoiced` int(11) DEFAULT 0, `qty_canceled` int(11) DEFAULT 0, `qty_refunded` int(11) DEFAULT 0, `price` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000, `total` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_total` decimal(12,4) NOT NULL DEFAULT 0.0000, `total_invoiced` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_total_invoiced` decimal(12,4) NOT NULL DEFAULT 0.0000, `amount_refunded` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_amount_refunded` decimal(12,4) NOT NULL DEFAULT 0.0000, `discount_percent` decimal(12,4) DEFAULT 0.0000, `discount_amount` decimal(12,4) DEFAULT 0.0000, `base_discount_amount` decimal(12,4) DEFAULT 0.0000, `discount_invoiced` decimal(12,4) DEFAULT 0.0000, `base_discount_invoiced` decimal(12,4) DEFAULT 0.0000, `discount_refunded` decimal(12,4) DEFAULT 0.0000, `base_discount_refunded` decimal(12,4) DEFAULT 0.0000, `tax_percent` decimal(12,4) DEFAULT 0.0000, `tax_amount` decimal(12,4) DEFAULT 0.0000, `base_tax_amount` decimal(12,4) DEFAULT 0.0000, `tax_amount_invoiced` decimal(12,4) DEFAULT 0.0000, `base_tax_amount_invoiced` decimal(12,4) DEFAULT 0.0000, `tax_amount_refunded` decimal(12,4) DEFAULT 0.0000, `base_tax_amount_refunded` decimal(12,4) DEFAULT 0.0000, `product_id` int(10) UNSIGNED DEFAULT NULL, `product_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int(10) UNSIGNED DEFAULT NULL, `parent_id` int(10) UNSIGNED DEFAULT NULL, `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `order_payment` -- CREATE TABLE `order_payment` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `method` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` int(10) UNSIGNED NOT NULL, `sku` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `parent_id` int(10) UNSIGNED DEFAULT NULL, `attribute_family_id` int(10) UNSIGNED DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_attribute_values` -- CREATE TABLE `product_attribute_values` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `boolean_value` tinyint(1) DEFAULT NULL, `integer_value` int(11) DEFAULT NULL, `float_value` decimal(12,4) DEFAULT NULL, `datetime_value` datetime DEFAULT NULL, `date_value` date DEFAULT NULL, `json_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`json_value`)), `product_id` int(10) UNSIGNED NOT NULL, `attribute_id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_bundle_options` -- CREATE TABLE `product_bundle_options` ( `id` int(10) UNSIGNED NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `is_required` tinyint(1) NOT NULL DEFAULT 1, `sort_order` int(11) NOT NULL DEFAULT 0, `product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_bundle_option_products` -- CREATE TABLE `product_bundle_option_products` ( `id` int(10) UNSIGNED NOT NULL, `qty` int(11) NOT NULL DEFAULT 0, `is_user_defined` tinyint(1) NOT NULL DEFAULT 1, `is_default` tinyint(1) NOT NULL DEFAULT 0, `sort_order` int(11) NOT NULL DEFAULT 0, `product_bundle_option_id` int(10) UNSIGNED NOT NULL, `product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_bundle_option_translations` -- CREATE TABLE `product_bundle_option_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `label` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_bundle_option_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_categories` -- CREATE TABLE `product_categories` ( `product_id` int(10) UNSIGNED NOT NULL, `category_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_cross_sells` -- CREATE TABLE `product_cross_sells` ( `parent_id` int(10) UNSIGNED NOT NULL, `child_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_customer_group_prices` -- CREATE TABLE `product_customer_group_prices` ( `id` bigint(20) UNSIGNED NOT NULL, `qty` int(11) NOT NULL DEFAULT 0, `value_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` decimal(12,4) NOT NULL DEFAULT 0.0000, `product_id` int(10) UNSIGNED NOT NULL, `customer_group_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_downloadable_links` -- CREATE TABLE `product_downloadable_links` ( `id` int(10) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `price` decimal(12,4) NOT NULL DEFAULT 0.0000, `sample_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_file_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `downloads` int(11) NOT NULL DEFAULT 0, `sort_order` int(11) DEFAULT NULL, `product_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_downloadable_link_translations` -- CREATE TABLE `product_downloadable_link_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_downloadable_link_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_downloadable_samples` -- CREATE TABLE `product_downloadable_samples` ( `id` int(10) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `sort_order` int(11) DEFAULT NULL, `product_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_downloadable_sample_translations` -- CREATE TABLE `product_downloadable_sample_translations` ( `id` int(10) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_downloadable_sample_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_flat` -- CREATE TABLE `product_flat` ( `id` int(10) UNSIGNED NOT NULL, `sku` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url_key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `new` tinyint(1) DEFAULT NULL, `featured` tinyint(1) DEFAULT NULL, `status` tinyint(1) DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(12,4) DEFAULT NULL, `cost` decimal(12,4) DEFAULT NULL, `special_price` decimal(12,4) DEFAULT NULL, `special_price_from` date DEFAULT NULL, `special_price_to` date DEFAULT NULL, `weight` decimal(12,4) DEFAULT NULL, `color` int(11) DEFAULT NULL, `color_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `size` int(11) DEFAULT NULL, `size_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` datetime DEFAULT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` int(10) UNSIGNED NOT NULL, `updated_at` datetime DEFAULT NULL, `parent_id` int(10) UNSIGNED DEFAULT NULL, `visible_individually` tinyint(1) DEFAULT NULL, `min_price` decimal(12,4) DEFAULT NULL, `max_price` decimal(12,4) DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL, `short_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_keywords` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `width` decimal(12,4) DEFAULT NULL, `height` decimal(12,4) DEFAULT NULL, `depth` decimal(12,4) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_grouped_products` -- CREATE TABLE `product_grouped_products` ( `id` int(10) UNSIGNED NOT NULL, `qty` int(11) NOT NULL DEFAULT 0, `sort_order` int(11) NOT NULL DEFAULT 0, `product_id` int(10) UNSIGNED NOT NULL, `associated_product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_images` -- CREATE TABLE `product_images` ( `id` int(10) UNSIGNED NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_inventories` -- CREATE TABLE `product_inventories` ( `id` int(10) UNSIGNED NOT NULL, `qty` int(11) NOT NULL DEFAULT 0, `product_id` int(10) UNSIGNED NOT NULL, `inventory_source_id` int(10) UNSIGNED NOT NULL, `vendor_id` int(11) NOT NULL DEFAULT 0, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_ordered_inventories` -- CREATE TABLE `product_ordered_inventories` ( `id` int(10) UNSIGNED NOT NULL, `qty` int(11) NOT NULL DEFAULT 0, `product_id` int(10) UNSIGNED NOT NULL, `channel_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_relations` -- CREATE TABLE `product_relations` ( `parent_id` int(10) UNSIGNED NOT NULL, `child_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_reviews` -- CREATE TABLE `product_reviews` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `rating` int(11) NOT NULL, `comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(10) UNSIGNED NOT NULL, `customer_id` int(11) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_super_attributes` -- CREATE TABLE `product_super_attributes` ( `product_id` int(10) UNSIGNED NOT NULL, `attribute_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `product_up_sells` -- CREATE TABLE `product_up_sells` ( `parent_id` int(10) UNSIGNED NOT NULL, `child_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `refunds` -- CREATE TABLE `refunds` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `increment_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_sent` tinyint(1) NOT NULL DEFAULT 0, `total_qty` int(11) DEFAULT NULL, `base_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_currency_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `adjustment_refund` decimal(12,4) DEFAULT 0.0000, `base_adjustment_refund` decimal(12,4) DEFAULT 0.0000, `adjustment_fee` decimal(12,4) DEFAULT 0.0000, `base_adjustment_fee` decimal(12,4) DEFAULT 0.0000, `sub_total` decimal(12,4) DEFAULT 0.0000, `base_sub_total` decimal(12,4) DEFAULT 0.0000, `grand_total` decimal(12,4) DEFAULT 0.0000, `base_grand_total` decimal(12,4) DEFAULT 0.0000, `shipping_amount` decimal(12,4) DEFAULT 0.0000, `base_shipping_amount` decimal(12,4) DEFAULT 0.0000, `tax_amount` decimal(12,4) DEFAULT 0.0000, `base_tax_amount` decimal(12,4) DEFAULT 0.0000, `discount_percent` decimal(12,4) DEFAULT 0.0000, `discount_amount` decimal(12,4) DEFAULT 0.0000, `base_discount_amount` decimal(12,4) DEFAULT 0.0000, `order_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `refund_items` -- CREATE TABLE `refund_items` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) DEFAULT NULL, `price` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000, `total` decimal(12,4) NOT NULL DEFAULT 0.0000, `base_total` decimal(12,4) NOT NULL DEFAULT 0.0000, `tax_amount` decimal(12,4) DEFAULT 0.0000, `base_tax_amount` decimal(12,4) DEFAULT 0.0000, `discount_percent` decimal(12,4) DEFAULT 0.0000, `discount_amount` decimal(12,4) DEFAULT 0.0000, `base_discount_amount` decimal(12,4) DEFAULT 0.0000, `product_id` int(10) UNSIGNED DEFAULT NULL, `product_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_item_id` int(10) UNSIGNED DEFAULT NULL, `refund_id` int(10) UNSIGNED DEFAULT NULL, `parent_id` int(10) UNSIGNED DEFAULT NULL, `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `permission_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`permissions`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `company_id`, `name`, `description`, `permission_type`, `permissions`, `created_at`, `updated_at`) VALUES (2, 2, 'Administrator', 'Administrator role', 'all', NULL, '2020-10-31 18:02:15', '2020-10-31 18:02:15'); -- -------------------------------------------------------- -- -- Table structure for table `shipments` -- CREATE TABLE `shipments` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `total_qty` int(11) DEFAULT NULL, `total_weight` int(11) DEFAULT NULL, `carrier_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `carrier_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `track_number` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_sent` tinyint(1) NOT NULL DEFAULT 0, `customer_id` int(10) UNSIGNED DEFAULT NULL, `customer_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int(10) UNSIGNED NOT NULL, `order_address_id` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `inventory_source_id` int(10) UNSIGNED DEFAULT NULL, `inventory_source_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `shipment_items` -- CREATE TABLE `shipment_items` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) DEFAULT NULL, `weight` int(11) DEFAULT NULL, `price` decimal(12,4) DEFAULT 0.0000, `base_price` decimal(12,4) DEFAULT 0.0000, `total` decimal(12,4) DEFAULT 0.0000, `base_total` decimal(12,4) DEFAULT 0.0000, `product_id` int(10) UNSIGNED DEFAULT NULL, `product_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_item_id` int(10) UNSIGNED DEFAULT NULL, `shipment_id` int(10) UNSIGNED NOT NULL, `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `sliders` -- CREATE TABLE `sliders` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `slider_path` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `subscribers_list` -- CREATE TABLE `subscribers_list` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `is_subscribed` tinyint(1) NOT NULL DEFAULT 0, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `super_admins` -- CREATE TABLE `super_admins` ( `id` int(10) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `remember_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `misc` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`misc`)), `first_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `api_token` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `role_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `super_admins` -- INSERT INTO `super_admins` (`id`, `email`, `password`, `status`, `remember_token`, `created_at`, `updated_at`, `misc`, `first_name`, `last_name`, `api_token`, `role_id`) VALUES (1, '<EMAIL>', <PASSWORD>', 1, NULL, '2020-10-31 16:07:28', '2020-10-31 16:07:28', NULL, 'hamid', '', NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `super_admin_password_resets` -- CREATE TABLE `super_admin_password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `super_channel` -- CREATE TABLE `super_channel` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `hostname` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `favicon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `home_page_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `footer_page_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `home_seo` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`home_seo`)), `default_locale_id` int(10) UNSIGNED DEFAULT NULL, `base_currency_id` int(10) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `super_channel` -- INSERT INTO `super_channel` (`id`, `name`, `hostname`, `logo`, `favicon`, `created_at`, `updated_at`, `code`, `theme`, `home_page_content`, `footer_page_content`, `home_seo`, `default_locale_id`, `base_currency_id`) VALUES (1, 'Default Channel', '', NULL, NULL, '2020-10-31 16:07:28', '2020-10-31 16:07:28', 'default', NULL, '<div class=\"banner-container\">\n <div class=\"full-banner\"><img src=\"../../../vendor/webkul/saas/assets/images/banner-full.png\" />\n <div class=\"banner-content\">\n <h1>Turn Your Passion Into a Business</h1>\n <p>Shake hand with the most reported company known for eCommerce and the marketplace. We reached around all the corners of the world. We serve the customer with our best service experiences.</p>\n <a href=\"../../../company/register\" class=\"btn btn-black btn-lg\">Open Shop Now</a></div>\n </div>\n <div class=\"left-banner\"><img src=\"../../../vendor/webkul/saas/assets/images/banner-left.jpg\" /></div>\n <div class=\"right-banner\"><img src=\"../../../vendor/webkul/saas/assets/images/banner-right-1.png\" /><img src=\"../../../vendor/webkul/saas/assets/images/banner-right-2.jpg\" /></div>\n </div>', '<div class=\"list-container\"><span class=\"list-heading\">Connect With Us</span><ul class=\"list-group\"><li><a href=\"#\"><span class=\"icon icon-facebook\"></span>Facebook </a></li><li><a href=\"#\"><span class=\"icon icon-twitter\"></span> Twitter </a></li><li><a href=\"#\"><span class=\"icon icon-instagram\"></span> Instagram </a></li><li><a href=\"#\"> <span class=\"icon icon-google-plus\"></span>Google+ </a></li><li><a href=\"#\"> <span class=\"icon icon-linkedin\"></span>LinkedIn </a></li></ul></div>', '{\"meta_title\": \"Super Meta Title\", \"meta_keywords\": \"Super Meta Keyword\",\"meta_description\": \"Super Meta Description\"}', 1, 1); -- -------------------------------------------------------- -- -- Table structure for table `super_channel_currencies` -- CREATE TABLE `super_channel_currencies` ( `super_channel_id` int(10) UNSIGNED NOT NULL, `currency_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `super_channel_currencies` -- INSERT INTO `super_channel_currencies` (`super_channel_id`, `currency_id`) VALUES (1, 1); -- -------------------------------------------------------- -- -- Table structure for table `super_channel_locales` -- CREATE TABLE `super_channel_locales` ( `super_channel_id` int(10) UNSIGNED NOT NULL, `locale_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `super_channel_locales` -- INSERT INTO `super_channel_locales` (`super_channel_id`, `locale_id`) VALUES (1, 1); -- -------------------------------------------------------- -- -- Table structure for table `super_config` -- CREATE TABLE `super_config` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, `channel_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `locale_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `super_currencies` -- CREATE TABLE `super_currencies` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `super_currencies` -- INSERT INTO `super_currencies` (`id`, `code`, `name`, `symbol`, `created_at`, `updated_at`) VALUES (1, 'USD', 'US Dollar', '$', '2020-10-31 16:07:28', '2020-10-31 16:07:28'); -- -------------------------------------------------------- -- -- Table structure for table `super_currency_exchange_rates` -- CREATE TABLE `super_currency_exchange_rates` ( `id` int(10) UNSIGNED NOT NULL, `rate` decimal(24,12) NOT NULL, `target_currency` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `super_locales` -- CREATE TABLE `super_locales` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `direction` enum('ltr','rtl') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ltr', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Dumping data for table `super_locales` -- INSERT INTO `super_locales` (`id`, `code`, `name`, `direction`, `created_at`, `updated_at`) VALUES (1, 'en', 'English', 'ltr', '2020-10-31 16:07:28', '2020-10-31 16:07:28'); -- -------------------------------------------------------- -- -- Table structure for table `tax_categories` -- CREATE TABLE `tax_categories` ( `id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `tax_categories_tax_rates` -- CREATE TABLE `tax_categories_tax_rates` ( `id` int(10) UNSIGNED NOT NULL, `tax_category_id` int(10) UNSIGNED NOT NULL, `tax_rate_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `tax_rates` -- CREATE TABLE `tax_rates` ( `id` int(10) UNSIGNED NOT NULL, `identifier` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `is_zip` tinyint(1) NOT NULL DEFAULT 0, `zip_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_from` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tax_rate` decimal(12,4) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `velocity_contents` -- CREATE TABLE `velocity_contents` ( `id` int(10) UNSIGNED NOT NULL, `content_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(10) UNSIGNED DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `company_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `velocity_contents_translations` -- CREATE TABLE `velocity_contents_translations` ( `id` int(10) UNSIGNED NOT NULL, `content_id` int(10) UNSIGNED DEFAULT NULL, `company_id` int(10) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `custom_title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `custom_heading` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `page_link` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link_target` tinyint(1) NOT NULL DEFAULT 0, `catalog_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `products` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `velocity_customer_compare_products` -- CREATE TABLE `velocity_customer_compare_products` ( `id` int(10) UNSIGNED NOT NULL, `product_flat_id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `velocity_meta_data` -- CREATE TABLE `velocity_meta_data` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `home_page_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `footer_left_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `footer_middle_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `slider` tinyint(1) NOT NULL DEFAULT 0, `advertisement` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`advertisement`)), `sidebar_category_count` int(11) NOT NULL DEFAULT 9, `featured_product_count` int(11) NOT NULL DEFAULT 10, `new_products_count` int(11) NOT NULL DEFAULT 10, `subscription_bar_content` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_view_images` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`product_view_images`)), `product_policy` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `locale` text COLLATE utf8mb4_unicode_ci NOT NULL, `channel` text COLLATE utf8mb4_unicode_ci NOT NULL, `header_content_count` text COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -------------------------------------------------------- -- -- Table structure for table `wishlist` -- CREATE TABLE `wishlist` ( `id` int(10) UNSIGNED NOT NULL, `company_id` int(10) UNSIGNED NOT NULL, `channel_id` int(10) UNSIGNED NOT NULL, `product_id` int(10) UNSIGNED NOT NULL, `customer_id` int(10) UNSIGNED NOT NULL, `item_options` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`item_options`)), `moved_to_cart` date DEFAULT NULL, `shared` tinyint(1) DEFAULT NULL, `time_of_moving` date DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`additional`)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -- -- Indexes for dumped tables -- -- -- Indexes for table `addresses` -- ALTER TABLE `addresses` ADD PRIMARY KEY (`id`), ADD KEY `addresses_customer_id_foreign` (`customer_id`), ADD KEY `addresses_cart_id_foreign` (`cart_id`), ADD KEY `addresses_order_id_foreign` (`order_id`), ADD KEY `addresses_company_id_foreign` (`company_id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`), ADD UNIQUE KEY `admins_api_token_unique` (`api_token`), ADD KEY `admins_company_id_foreign` (`company_id`); -- -- Indexes for table `admin_password_resets` -- ALTER TABLE `admin_password_resets` ADD KEY `admin_password_resets_email_index` (`email`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `attribute_company_code_unique_index` (`code`,`company_id`), ADD KEY `attributes_company_id_foreign` (`company_id`); -- -- Indexes for table `attribute_families` -- ALTER TABLE `attribute_families` ADD PRIMARY KEY (`id`), ADD KEY `attribute_families_company_id_foreign` (`company_id`); -- -- Indexes for table `attribute_groups` -- ALTER TABLE `attribute_groups` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `attribute_family_id_name_company_id_unique_index` (`attribute_family_id`,`name`,`company_id`), ADD KEY `attribute_groups_company_id_foreign` (`company_id`); -- -- Indexes for table `attribute_group_mappings` -- ALTER TABLE `attribute_group_mappings` ADD PRIMARY KEY (`attribute_id`,`attribute_group_id`), ADD KEY `attribute_group_mappings_attribute_group_id_foreign` (`attribute_group_id`); -- -- Indexes for table `attribute_options` -- ALTER TABLE `attribute_options` ADD PRIMARY KEY (`id`), ADD KEY `attribute_options_attribute_id_foreign` (`attribute_id`); -- -- Indexes for table `attribute_option_translations` -- ALTER TABLE `attribute_option_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `attribute_option_translations_attribute_option_id_locale_unique` (`attribute_option_id`,`locale`); -- -- Indexes for table `attribute_translations` -- ALTER TABLE `attribute_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `attribute_translations_attribute_id_locale_unique` (`attribute_id`,`locale`); -- -- Indexes for table `bookings` -- ALTER TABLE `bookings` ADD PRIMARY KEY (`id`), ADD KEY `bookings_order_id_foreign` (`order_id`), ADD KEY `bookings_product_id_foreign` (`product_id`); -- -- Indexes for table `booking_products` -- ALTER TABLE `booking_products` ADD PRIMARY KEY (`id`), ADD KEY `booking_products_product_id_foreign` (`product_id`); -- -- Indexes for table `booking_product_appointment_slots` -- ALTER TABLE `booking_product_appointment_slots` ADD PRIMARY KEY (`id`), ADD KEY `booking_product_appointment_slots_booking_product_id_foreign` (`booking_product_id`); -- -- Indexes for table `booking_product_default_slots` -- ALTER TABLE `booking_product_default_slots` ADD PRIMARY KEY (`id`), ADD KEY `booking_product_default_slots_booking_product_id_foreign` (`booking_product_id`); -- -- Indexes for table `booking_product_event_tickets` -- ALTER TABLE `booking_product_event_tickets` ADD PRIMARY KEY (`id`), ADD KEY `booking_product_event_tickets_booking_product_id_foreign` (`booking_product_id`); -- -- Indexes for table `booking_product_event_ticket_translations` -- ALTER TABLE `booking_product_event_ticket_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `booking_product_event_ticket_translations_locale_unique` (`booking_product_event_ticket_id`,`locale`); -- -- Indexes for table `booking_product_rental_slots` -- ALTER TABLE `booking_product_rental_slots` ADD PRIMARY KEY (`id`), ADD KEY `booking_product_rental_slots_booking_product_id_foreign` (`booking_product_id`); -- -- Indexes for table `booking_product_table_slots` -- ALTER TABLE `booking_product_table_slots` ADD PRIMARY KEY (`id`), ADD KEY `booking_product_table_slots_booking_product_id_foreign` (`booking_product_id`); -- -- Indexes for table `cart` -- ALTER TABLE `cart` ADD PRIMARY KEY (`id`), ADD KEY `cart_customer_id_foreign` (`customer_id`), ADD KEY `cart_channel_id_foreign` (`channel_id`), ADD KEY `cart_company_id_foreign` (`company_id`); -- -- Indexes for table `cart_items` -- ALTER TABLE `cart_items` ADD PRIMARY KEY (`id`), ADD KEY `cart_items_product_id_foreign` (`product_id`), ADD KEY `cart_items_cart_id_foreign` (`cart_id`), ADD KEY `cart_items_tax_category_id_foreign` (`tax_category_id`), ADD KEY `cart_items_parent_id_foreign` (`parent_id`); -- -- Indexes for table `cart_item_inventories` -- ALTER TABLE `cart_item_inventories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_payment` -- ALTER TABLE `cart_payment` ADD PRIMARY KEY (`id`), ADD KEY `cart_payment_cart_id_foreign` (`cart_id`); -- -- Indexes for table `cart_rules` -- ALTER TABLE `cart_rules` ADD PRIMARY KEY (`id`), ADD KEY `cart_rules_company_id_foreign` (`company_id`); -- -- Indexes for table `cart_rule_channels` -- ALTER TABLE `cart_rule_channels` ADD PRIMARY KEY (`cart_rule_id`,`channel_id`), ADD KEY `cart_rule_channels_channel_id_foreign` (`channel_id`); -- -- Indexes for table `cart_rule_coupons` -- ALTER TABLE `cart_rule_coupons` ADD PRIMARY KEY (`id`), ADD KEY `cart_rule_coupons_cart_rule_id_foreign` (`cart_rule_id`), ADD KEY `cart_rule_coupons_company_id_foreign` (`company_id`); -- -- Indexes for table `cart_rule_coupon_usage` -- ALTER TABLE `cart_rule_coupon_usage` ADD PRIMARY KEY (`id`), ADD KEY `cart_rule_coupon_usage_cart_rule_coupon_id_foreign` (`cart_rule_coupon_id`), ADD KEY `cart_rule_coupon_usage_customer_id_foreign` (`customer_id`); -- -- Indexes for table `cart_rule_customers` -- ALTER TABLE `cart_rule_customers` ADD PRIMARY KEY (`id`), ADD KEY `cart_rule_customers_cart_rule_id_foreign` (`cart_rule_id`), ADD KEY `cart_rule_customers_customer_id_foreign` (`customer_id`); -- -- Indexes for table `cart_rule_customer_groups` -- ALTER TABLE `cart_rule_customer_groups` ADD PRIMARY KEY (`cart_rule_id`,`customer_group_id`), ADD KEY `cart_rule_customer_groups_customer_group_id_foreign` (`customer_group_id`); -- -- Indexes for table `cart_rule_translations` -- ALTER TABLE `cart_rule_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `cart_rule_translations_cart_rule_id_locale_unique` (`cart_rule_id`,`locale`); -- -- Indexes for table `cart_shipping_rates` -- ALTER TABLE `cart_shipping_rates` ADD PRIMARY KEY (`id`), ADD KEY `cart_shipping_rates_cart_address_id_foreign` (`cart_address_id`); -- -- Indexes for table `catalog_rules` -- ALTER TABLE `catalog_rules` ADD PRIMARY KEY (`id`), ADD KEY `catalog_rules_company_id_foreign` (`company_id`); -- -- Indexes for table `catalog_rule_channels` -- ALTER TABLE `catalog_rule_channels` ADD PRIMARY KEY (`catalog_rule_id`,`channel_id`), ADD KEY `catalog_rule_channels_channel_id_foreign` (`channel_id`); -- -- Indexes for table `catalog_rule_customer_groups` -- ALTER TABLE `catalog_rule_customer_groups` ADD PRIMARY KEY (`catalog_rule_id`,`customer_group_id`), ADD KEY `catalog_rule_customer_groups_customer_group_id_foreign` (`customer_group_id`); -- -- Indexes for table `catalog_rule_products` -- ALTER TABLE `catalog_rule_products` ADD PRIMARY KEY (`id`), ADD KEY `catalog_rule_products_product_id_foreign` (`product_id`), ADD KEY `catalog_rule_products_customer_group_id_foreign` (`customer_group_id`), ADD KEY `catalog_rule_products_catalog_rule_id_foreign` (`catalog_rule_id`), ADD KEY `catalog_rule_products_channel_id_foreign` (`channel_id`), ADD KEY `catalog_rule_products_company_id_foreign` (`company_id`); -- -- Indexes for table `catalog_rule_product_prices` -- ALTER TABLE `catalog_rule_product_prices` ADD PRIMARY KEY (`id`), ADD KEY `catalog_rule_product_prices_product_id_foreign` (`product_id`), ADD KEY `catalog_rule_product_prices_customer_group_id_foreign` (`customer_group_id`), ADD KEY `catalog_rule_product_prices_catalog_rule_id_foreign` (`catalog_rule_id`), ADD KEY `catalog_rule_product_prices_channel_id_foreign` (`channel_id`), ADD KEY `catalog_rule_product_prices_company_id_foreign` (`company_id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`), ADD KEY `categories__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`), ADD KEY `categories_company_id_foreign` (`company_id`); -- -- Indexes for table `category_filterable_attributes` -- ALTER TABLE `category_filterable_attributes` ADD KEY `category_filterable_attributes_category_id_foreign` (`category_id`), ADD KEY `category_filterable_attributes_attribute_id_foreign` (`attribute_id`); -- -- Indexes for table `category_translations` -- ALTER TABLE `category_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `id_slug_locale_company_id_unique_index` (`category_id`,`slug`,`locale`,`company_id`), ADD KEY `category_translations_company_id_foreign` (`company_id`), ADD KEY `category_translations_locale_id_foreign` (`locale_id`); -- -- Indexes for table `channels` -- ALTER TABLE `channels` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `channels_hostname_unique` (`hostname`), ADD KEY `channels_default_locale_id_foreign` (`default_locale_id`), ADD KEY `channels_base_currency_id_foreign` (`base_currency_id`), ADD KEY `channels_root_category_id_foreign` (`root_category_id`), ADD KEY `channels_company_id_foreign` (`company_id`); -- -- Indexes for table `channel_currencies` -- ALTER TABLE `channel_currencies` ADD PRIMARY KEY (`channel_id`,`currency_id`), ADD KEY `channel_currencies_currency_id_foreign` (`currency_id`); -- -- Indexes for table `channel_inventory_sources` -- ALTER TABLE `channel_inventory_sources` ADD UNIQUE KEY `channel_inventory_sources_channel_id_inventory_source_id_unique` (`channel_id`,`inventory_source_id`), ADD KEY `channel_inventory_sources_inventory_source_id_foreign` (`inventory_source_id`); -- -- Indexes for table `channel_locales` -- ALTER TABLE `channel_locales` ADD PRIMARY KEY (`channel_id`,`locale_id`), ADD KEY `channel_locales_locale_id_foreign` (`locale_id`); -- -- Indexes for table `cms_pages` -- ALTER TABLE `cms_pages` ADD PRIMARY KEY (`id`), ADD KEY `cms_pages_company_id_foreign` (`company_id`); -- -- Indexes for table `cms_page_channels` -- ALTER TABLE `cms_page_channels` ADD UNIQUE KEY `cms_page_channels_cms_page_id_channel_id_unique` (`cms_page_id`,`channel_id`), ADD KEY `cms_page_channels_channel_id_foreign` (`channel_id`); -- -- Indexes for table `cms_page_translations` -- ALTER TABLE `cms_page_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `cms_page_translations_cms_page_id_url_key_locale_unique` (`cms_page_id`,`url_key`,`locale`), ADD KEY `cms_page_translations_company_id_foreign` (`company_id`); -- -- Indexes for table `companies` -- ALTER TABLE `companies` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `companies_name_unique` (`name`), ADD UNIQUE KEY `companies_username_unique` (`username`), ADD UNIQUE KEY `companies_domain_unique` (`domain`), ADD UNIQUE KEY `companies_cname_unique` (`cname`); -- -- Indexes for table `company_addresses` -- ALTER TABLE `company_addresses` ADD PRIMARY KEY (`id`), ADD KEY `company_addresses_company_id_foreign` (`company_id`); -- -- Indexes for table `company_personal_details` -- ALTER TABLE `company_personal_details` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `company_personal_details_email_unique` (`email`), ADD KEY `company_personal_details_company_id_foreign` (`company_id`); -- -- Indexes for table `core_config` -- ALTER TABLE `core_config` ADD PRIMARY KEY (`id`), ADD KEY `core_config_channel_id_foreign` (`channel_code`), ADD KEY `core_config_company_id_foreign` (`company_id`); -- -- Indexes for table `countries` -- ALTER TABLE `countries` ADD PRIMARY KEY (`id`); -- -- Indexes for table `country_states` -- ALTER TABLE `country_states` ADD PRIMARY KEY (`id`), ADD KEY `country_states_country_id_foreign` (`country_id`); -- -- Indexes for table `country_state_translations` -- ALTER TABLE `country_state_translations` ADD PRIMARY KEY (`id`), ADD KEY `country_state_translations_country_state_id_foreign` (`country_state_id`); -- -- Indexes for table `country_translations` -- ALTER TABLE `country_translations` ADD PRIMARY KEY (`id`), ADD KEY `country_translations_country_id_foreign` (`country_id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`), ADD KEY `currencies_company_id_foreign` (`company_id`); -- -- Indexes for table `currency_exchange_rates` -- ALTER TABLE `currency_exchange_rates` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `target_currency_company_id_unique_id` (`target_currency`,`company_id`), ADD KEY `currency_exchange_rates_company_id_foreign` (`company_id`); -- -- Indexes for table `customers` -- ALTER TABLE `customers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `customers_email_company_id_unique` (`email`,`company_id`), ADD UNIQUE KEY `customers_api_token_unique` (`api_token`), ADD KEY `customers_customer_group_id_foreign` (`customer_group_id`), ADD KEY `customers_company_id_foreign` (`company_id`); -- -- Indexes for table `customer_groups` -- ALTER TABLE `customer_groups` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `customer_groups_code_company_id_unique` (`code`,`company_id`), ADD KEY `customer_groups_company_id_foreign` (`company_id`); -- -- Indexes for table `customer_password_resets` -- ALTER TABLE `customer_password_resets` ADD KEY `customer_password_resets_email_index` (`email`); -- -- Indexes for table `customer_social_accounts` -- ALTER TABLE `customer_social_accounts` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `customer_social_accounts_provider_id_unique` (`provider_id`), ADD KEY `customer_social_accounts_customer_id_foreign` (`customer_id`); -- -- Indexes for table `downloadable_link_purchased` -- ALTER TABLE `downloadable_link_purchased` ADD PRIMARY KEY (`id`), ADD KEY `downloadable_link_purchased_customer_id_foreign` (`customer_id`), ADD KEY `downloadable_link_purchased_order_id_foreign` (`order_id`), ADD KEY `downloadable_link_purchased_order_item_id_foreign` (`order_item_id`), ADD KEY `downloadable_link_purchased_company_id_foreign` (`company_id`); -- -- Indexes for table `inventory_sources` -- ALTER TABLE `inventory_sources` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `code_company_id_unique` (`code`,`company_id`), ADD KEY `inventory_sources_company_id_foreign` (`company_id`); -- -- Indexes for table `invoices` -- ALTER TABLE `invoices` ADD PRIMARY KEY (`id`), ADD KEY `invoices_order_id_foreign` (`order_id`), ADD KEY `invoices_company_id_foreign` (`company_id`), ADD KEY `invoices_order_address_id_foreign` (`order_address_id`); -- -- Indexes for table `invoice_items` -- ALTER TABLE `invoice_items` ADD PRIMARY KEY (`id`), ADD KEY `invoice_items_invoice_id_foreign` (`invoice_id`), ADD KEY `invoice_items_parent_id_foreign` (`parent_id`), ADD KEY `invoice_items_company_id_foreign` (`company_id`); -- -- Indexes for table `locales` -- ALTER TABLE `locales` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `code_company_id_unqiue_index` (`code`,`company_id`), ADD KEY `locales_company_id_foreign` (`company_id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `orders_increment_id_unique` (`increment_id`), ADD KEY `orders_customer_id_foreign` (`customer_id`), ADD KEY `orders_channel_id_foreign` (`channel_id`), ADD KEY `orders_company_id_foreign` (`company_id`); -- -- Indexes for table `order_brands` -- ALTER TABLE `order_brands` ADD PRIMARY KEY (`id`), ADD KEY `order_brands_order_id_foreign` (`order_id`), ADD KEY `order_brands_order_item_id_foreign` (`order_item_id`), ADD KEY `order_brands_product_id_foreign` (`product_id`), ADD KEY `order_brands_brand_foreign` (`brand`), ADD KEY `order_brands_company_id_foreign` (`company_id`); -- -- Indexes for table `order_comments` -- ALTER TABLE `order_comments` ADD PRIMARY KEY (`id`), ADD KEY `order_comments_order_id_foreign` (`order_id`); -- -- Indexes for table `order_items` -- ALTER TABLE `order_items` ADD PRIMARY KEY (`id`), ADD KEY `order_items_order_id_foreign` (`order_id`), ADD KEY `order_items_parent_id_foreign` (`parent_id`), ADD KEY `order_items_company_id_foreign` (`company_id`); -- -- Indexes for table `order_payment` -- ALTER TABLE `order_payment` ADD PRIMARY KEY (`id`), ADD KEY `order_payment_order_id_foreign` (`order_id`), ADD KEY `order_payment_company_id_foreign` (`company_id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sku_company_id_unique` (`sku`,`company_id`), ADD KEY `products_attribute_family_id_foreign` (`attribute_family_id`), ADD KEY `products_parent_id_foreign` (`parent_id`), ADD KEY `products_company_id_foreign` (`company_id`); -- -- Indexes for table `product_attribute_values` -- ALTER TABLE `product_attribute_values` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `channel_locale_attr_id_product_id_company_unique` (`channel`,`locale`,`attribute_id`,`product_id`,`company_id`), ADD KEY `product_attribute_values_product_id_foreign` (`product_id`), ADD KEY `product_attribute_values_attribute_id_foreign` (`attribute_id`), ADD KEY `product_attribute_values_company_id_foreign` (`company_id`); -- -- Indexes for table `product_bundle_options` -- ALTER TABLE `product_bundle_options` ADD PRIMARY KEY (`id`), ADD KEY `product_bundle_options_product_id_foreign` (`product_id`); -- -- Indexes for table `product_bundle_option_products` -- ALTER TABLE `product_bundle_option_products` ADD PRIMARY KEY (`id`), ADD KEY `product_bundle_option_products_product_bundle_option_id_foreign` (`product_bundle_option_id`), ADD KEY `product_bundle_option_products_product_id_foreign` (`product_id`); -- -- Indexes for table `product_bundle_option_translations` -- ALTER TABLE `product_bundle_option_translations` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `product_bundle_option_translations_option_id_locale_unique` (`product_bundle_option_id`,`locale`); -- -- Indexes for table `product_categories` -- ALTER TABLE `product_categories` ADD KEY `product_categories_product_id_foreign` (`product_id`), ADD KEY `product_categories_category_id_foreign` (`category_id`); -- -- Indexes for table `product_cross_sells` -- ALTER TABLE `product_cross_sells` ADD KEY `product_cross_sells_parent_id_foreign` (`parent_id`), ADD KEY `product_cross_sells_child_id_foreign` (`child_id`); -- -- Indexes for table `product_customer_group_prices` -- ALTER TABLE `product_customer_group_prices` ADD PRIMARY KEY (`id`), ADD KEY `product_customer_group_prices_product_id_foreign` (`product_id`), ADD KEY `product_customer_group_prices_customer_group_id_foreign` (`customer_group_id`); -- -- Indexes for table `product_downloadable_links` -- ALTER TABLE `product_downloadable_links` ADD PRIMARY KEY (`id`), ADD KEY `product_downloadable_links_product_id_foreign` (`product_id`); -- -- Indexes for table `product_downloadable_link_translations` -- ALTER TABLE `product_downloadable_link_translations` ADD PRIMARY KEY (`id`), ADD KEY `link_translations_link_id_foreign` (`product_downloadable_link_id`); -- -- Indexes for table `product_downloadable_samples` -- ALTER TABLE `product_downloadable_samples` ADD PRIMARY KEY (`id`), ADD KEY `product_downloadable_samples_product_id_foreign` (`product_id`); -- -- Indexes for table `product_downloadable_sample_translations` -- ALTER TABLE `product_downloadable_sample_translations` ADD PRIMARY KEY (`id`), ADD KEY `sample_translations_sample_id_foreign` (`product_downloadable_sample_id`); -- -- Indexes for table `product_flat` -- ALTER TABLE `product_flat` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `product_flat_unique_index` (`product_id`,`channel`,`locale`,`company_id`), ADD KEY `product_flat_parent_id_foreign` (`parent_id`), ADD KEY `product_flat_company_id_foreign` (`company_id`); -- -- Indexes for table `product_grouped_products` -- ALTER TABLE `product_grouped_products` ADD PRIMARY KEY (`id`), ADD KEY `product_grouped_products_product_id_foreign` (`product_id`), ADD KEY `product_grouped_products_associated_product_id_foreign` (`associated_product_id`); -- -- Indexes for table `product_images` -- ALTER TABLE `product_images` ADD PRIMARY KEY (`id`), ADD KEY `product_images_product_id_foreign` (`product_id`); -- -- Indexes for table `product_inventories` -- ALTER TABLE `product_inventories` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `product_source_vendor_index_unique` (`product_id`,`inventory_source_id`,`vendor_id`), ADD KEY `product_inventories_inventory_source_id_foreign` (`inventory_source_id`), ADD KEY `product_inventories_company_id_foreign` (`company_id`); -- -- Indexes for table `product_ordered_inventories` -- ALTER TABLE `product_ordered_inventories` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `product_ordered_inventories_product_id_channel_id_unique` (`product_id`,`channel_id`), ADD KEY `product_ordered_inventories_channel_id_foreign` (`channel_id`); -- -- Indexes for table `product_relations` -- ALTER TABLE `product_relations` ADD KEY `product_relations_parent_id_foreign` (`parent_id`), ADD KEY `product_relations_child_id_foreign` (`child_id`); -- -- Indexes for table `product_reviews` -- ALTER TABLE `product_reviews` ADD PRIMARY KEY (`id`), ADD KEY `product_reviews_product_id_foreign` (`product_id`), ADD KEY `product_reviews_customer_id_foreign` (`customer_id`), ADD KEY `product_reviews_company_id_foreign` (`company_id`); -- -- Indexes for table `product_super_attributes` -- ALTER TABLE `product_super_attributes` ADD KEY `product_super_attributes_product_id_foreign` (`product_id`), ADD KEY `product_super_attributes_attribute_id_foreign` (`attribute_id`); -- -- Indexes for table `product_up_sells` -- ALTER TABLE `product_up_sells` ADD KEY `product_up_sells_parent_id_foreign` (`parent_id`), ADD KEY `product_up_sells_child_id_foreign` (`child_id`); -- -- Indexes for table `refunds` -- ALTER TABLE `refunds` ADD PRIMARY KEY (`id`), ADD KEY `refunds_order_id_foreign` (`order_id`), ADD KEY `refunds_company_id_foreign` (`company_id`); -- -- Indexes for table `refund_items` -- ALTER TABLE `refund_items` ADD PRIMARY KEY (`id`), ADD KEY `refund_items_order_item_id_foreign` (`order_item_id`), ADD KEY `refund_items_refund_id_foreign` (`refund_id`), ADD KEY `refund_items_parent_id_foreign` (`parent_id`), ADD KEY `refund_items_company_id_foreign` (`company_id`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`id`), ADD KEY `roles_company_id_foreign` (`company_id`); -- -- Indexes for table `shipments` -- ALTER TABLE `shipments` ADD PRIMARY KEY (`id`), ADD KEY `shipments_order_id_foreign` (`order_id`), ADD KEY `shipments_inventory_source_id_foreign` (`inventory_source_id`), ADD KEY `shipments_company_id_foreign` (`company_id`), ADD KEY `shipments_order_address_id_foreign` (`order_address_id`); -- -- Indexes for table `shipment_items` -- ALTER TABLE `shipment_items` ADD PRIMARY KEY (`id`), ADD KEY `shipment_items_shipment_id_foreign` (`shipment_id`); -- -- Indexes for table `sliders` -- ALTER TABLE `sliders` ADD PRIMARY KEY (`id`), ADD KEY `sliders_channel_id_foreign` (`channel_id`), ADD KEY `sliders_company_id_foreign` (`company_id`); -- -- Indexes for table `subscribers_list` -- ALTER TABLE `subscribers_list` ADD PRIMARY KEY (`id`), ADD KEY `subscribers_list_channel_id_foreign` (`channel_id`), ADD KEY `subscribers_list_company_id_foreign` (`company_id`); -- -- Indexes for table `super_admins` -- ALTER TABLE `super_admins` ADD UNIQUE KEY `super_admins_id_unique` (`id`), ADD UNIQUE KEY `super_admins_email_unique` (`email`), ADD UNIQUE KEY `super_admins_api_token_unique` (`api_token`); -- -- Indexes for table `super_admin_password_resets` -- ALTER TABLE `super_admin_password_resets` ADD KEY `super_admin_password_resets_email_index` (`email`); -- -- Indexes for table `super_channel` -- ALTER TABLE `super_channel` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `super_channel_domain_unique` (`hostname`), ADD UNIQUE KEY `super_channel_code_unique` (`code`), ADD KEY `super_channel_default_locale_id_foreign` (`default_locale_id`), ADD KEY `super_channel_base_currency_id_foreign` (`base_currency_id`); -- -- Indexes for table `super_channel_currencies` -- ALTER TABLE `super_channel_currencies` ADD PRIMARY KEY (`super_channel_id`,`currency_id`), ADD KEY `super_channel_currencies_currency_id_foreign` (`currency_id`); -- -- Indexes for table `super_channel_locales` -- ALTER TABLE `super_channel_locales` ADD PRIMARY KEY (`super_channel_id`,`locale_id`), ADD KEY `super_channel_locales_locale_id_foreign` (`locale_id`); -- -- Indexes for table `super_config` -- ALTER TABLE `super_config` ADD PRIMARY KEY (`id`); -- -- Indexes for table `super_currencies` -- ALTER TABLE `super_currencies` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `super_currencies_code_unique` (`code`); -- -- Indexes for table `super_currency_exchange_rates` -- ALTER TABLE `super_currency_exchange_rates` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `super_currency_exchange_rates_target_currency_unique` (`target_currency`); -- -- Indexes for table `super_locales` -- ALTER TABLE `super_locales` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `super_locales_code_unique` (`code`); -- -- Indexes for table `tax_categories` -- ALTER TABLE `tax_categories` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `tax_categories_code_unique` (`code`,`company_id`), ADD KEY `tax_categories_company_id_foreign` (`company_id`); -- -- Indexes for table `tax_categories_tax_rates` -- ALTER TABLE `tax_categories_tax_rates` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `tax_map_index_unique` (`tax_category_id`,`tax_rate_id`), ADD KEY `tax_categories_tax_rates_tax_rate_id_foreign` (`tax_rate_id`); -- -- Indexes for table `tax_rates` -- ALTER TABLE `tax_rates` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `tax_rates_identifier_unique` (`identifier`,`company_id`), ADD KEY `tax_rates_company_id_foreign` (`company_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `velocity_contents` -- ALTER TABLE `velocity_contents` ADD PRIMARY KEY (`id`), ADD KEY `velocity_contents_company_id_foreign` (`company_id`); -- -- Indexes for table `velocity_contents_translations` -- ALTER TABLE `velocity_contents_translations` ADD PRIMARY KEY (`id`), ADD KEY `velocity_contents_translations_content_id_foreign` (`content_id`), ADD KEY `velocity_contents_translations_company_id_foreign` (`company_id`); -- -- Indexes for table `velocity_customer_compare_products` -- ALTER TABLE `velocity_customer_compare_products` ADD PRIMARY KEY (`id`), ADD KEY `velocity_customer_compare_products_product_flat_id_foreign` (`product_flat_id`), ADD KEY `velocity_customer_compare_products_customer_id_foreign` (`customer_id`); -- -- Indexes for table `velocity_meta_data` -- ALTER TABLE `velocity_meta_data` ADD PRIMARY KEY (`id`), ADD KEY `velocity_meta_data_company_id_foreign` (`company_id`); -- -- Indexes for table `wishlist` -- ALTER TABLE `wishlist` ADD PRIMARY KEY (`id`), ADD KEY `wishlist_channel_id_foreign` (`channel_id`), ADD KEY `wishlist_product_id_foreign` (`product_id`), ADD KEY `wishlist_customer_id_foreign` (`customer_id`), ADD KEY `wishlist_company_id_foreign` (`company_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `addresses` -- ALTER TABLE `addresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attribute_families` -- ALTER TABLE `attribute_families` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attribute_groups` -- ALTER TABLE `attribute_groups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attribute_options` -- ALTER TABLE `attribute_options` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attribute_option_translations` -- ALTER TABLE `attribute_option_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attribute_translations` -- ALTER TABLE `attribute_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `bookings` -- ALTER TABLE `bookings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `booking_products` -- ALTER TABLE `booking_products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `booking_product_appointment_slots` -- ALTER TABLE `booking_product_appointment_slots` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `booking_product_default_slots` -- ALTER TABLE `booking_product_default_slots` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `booking_product_event_tickets` -- ALTER TABLE `booking_product_event_tickets` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `booking_product_event_ticket_translations` -- ALTER TABLE `booking_product_event_ticket_translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `booking_product_rental_slots` -- ALTER TABLE `booking_product_rental_slots` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `booking_product_table_slots` -- ALTER TABLE `booking_product_table_slots` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart` -- ALTER TABLE `cart` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_items` -- ALTER TABLE `cart_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_item_inventories` -- ALTER TABLE `cart_item_inventories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_payment` -- ALTER TABLE `cart_payment` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_rules` -- ALTER TABLE `cart_rules` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_rule_coupons` -- ALTER TABLE `cart_rule_coupons` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_rule_coupon_usage` -- ALTER TABLE `cart_rule_coupon_usage` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_rule_customers` -- ALTER TABLE `cart_rule_customers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_rule_translations` -- ALTER TABLE `cart_rule_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shipping_rates` -- ALTER TABLE `cart_shipping_rates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `catalog_rules` -- ALTER TABLE `catalog_rules` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `catalog_rule_products` -- ALTER TABLE `catalog_rule_products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `catalog_rule_product_prices` -- ALTER TABLE `catalog_rule_product_prices` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_translations` -- ALTER TABLE `category_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `channels` -- ALTER TABLE `channels` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_pages` -- ALTER TABLE `cms_pages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cms_page_translations` -- ALTER TABLE `cms_page_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `companies` -- ALTER TABLE `companies` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `company_addresses` -- ALTER TABLE `company_addresses` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `company_personal_details` -- ALTER TABLE `company_personal_details` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `core_config` -- ALTER TABLE `core_config` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `countries` -- ALTER TABLE `countries` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `country_states` -- ALTER TABLE `country_states` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `country_state_translations` -- ALTER TABLE `country_state_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `country_translations` -- ALTER TABLE `country_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currency_exchange_rates` -- ALTER TABLE `currency_exchange_rates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customers` -- ALTER TABLE `customers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_groups` -- ALTER TABLE `customer_groups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_social_accounts` -- ALTER TABLE `customer_social_accounts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `downloadable_link_purchased` -- ALTER TABLE `downloadable_link_purchased` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `inventory_sources` -- ALTER TABLE `inventory_sources` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoices` -- ALTER TABLE `invoices` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `invoice_items` -- ALTER TABLE `invoice_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `locales` -- ALTER TABLE `locales` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=207; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_brands` -- ALTER TABLE `order_brands` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_comments` -- ALTER TABLE `order_comments` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_items` -- ALTER TABLE `order_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_payment` -- ALTER TABLE `order_payment` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_attribute_values` -- ALTER TABLE `product_attribute_values` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_bundle_options` -- ALTER TABLE `product_bundle_options` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_bundle_option_products` -- ALTER TABLE `product_bundle_option_products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_bundle_option_translations` -- ALTER TABLE `product_bundle_option_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_customer_group_prices` -- ALTER TABLE `product_customer_group_prices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_downloadable_links` -- ALTER TABLE `product_downloadable_links` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_downloadable_link_translations` -- ALTER TABLE `product_downloadable_link_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_downloadable_samples` -- ALTER TABLE `product_downloadable_samples` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_downloadable_sample_translations` -- ALTER TABLE `product_downloadable_sample_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_flat` -- ALTER TABLE `product_flat` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_grouped_products` -- ALTER TABLE `product_grouped_products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_images` -- ALTER TABLE `product_images` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_inventories` -- ALTER TABLE `product_inventories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_ordered_inventories` -- ALTER TABLE `product_ordered_inventories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_reviews` -- ALTER TABLE `product_reviews` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refunds` -- ALTER TABLE `refunds` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_items` -- ALTER TABLE `refund_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `shipments` -- ALTER TABLE `shipments` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipment_items` -- ALTER TABLE `shipment_items` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sliders` -- ALTER TABLE `sliders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscribers_list` -- ALTER TABLE `subscribers_list` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `super_admins` -- ALTER TABLE `super_admins` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `super_channel` -- ALTER TABLE `super_channel` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `super_config` -- ALTER TABLE `super_config` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `super_currencies` -- ALTER TABLE `super_currencies` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `super_currency_exchange_rates` -- ALTER TABLE `super_currency_exchange_rates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `super_locales` -- ALTER TABLE `super_locales` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `tax_categories` -- ALTER TABLE `tax_categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tax_categories_tax_rates` -- ALTER TABLE `tax_categories_tax_rates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tax_rates` -- ALTER TABLE `tax_rates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `velocity_contents` -- ALTER TABLE `velocity_contents` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `velocity_contents_translations` -- ALTER TABLE `velocity_contents_translations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `velocity_customer_compare_products` -- ALTER TABLE `velocity_customer_compare_products` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `velocity_meta_data` -- ALTER TABLE `velocity_meta_data` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlist` -- ALTER TABLE `wishlist` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `addresses` -- ALTER TABLE `addresses` ADD CONSTRAINT `addresses_cart_id_foreign` FOREIGN KEY (`cart_id`) REFERENCES `cart` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `addresses_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `addresses_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `addresses_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE; -- -- Constraints for table `admins` -- ALTER TABLE `admins` ADD CONSTRAINT `admins_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attributes` -- ALTER TABLE `attributes` ADD CONSTRAINT `attributes_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attribute_families` -- ALTER TABLE `attribute_families` ADD CONSTRAINT `attribute_families_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attribute_groups` -- ALTER TABLE `attribute_groups` ADD CONSTRAINT `attribute_groups_attribute_family_id_foreign` FOREIGN KEY (`attribute_family_id`) REFERENCES `attribute_families` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `attribute_groups_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attribute_group_mappings` -- ALTER TABLE `attribute_group_mappings` ADD CONSTRAINT `attribute_group_mappings_attribute_group_id_foreign` FOREIGN KEY (`attribute_group_id`) REFERENCES `attribute_groups` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `attribute_group_mappings_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attribute_options` -- ALTER TABLE `attribute_options` ADD CONSTRAINT `attribute_options_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attribute_option_translations` -- ALTER TABLE `attribute_option_translations` ADD CONSTRAINT `attribute_option_translations_attribute_option_id_foreign` FOREIGN KEY (`attribute_option_id`) REFERENCES `attribute_options` (`id`) ON DELETE CASCADE; -- -- Constraints for table `attribute_translations` -- ALTER TABLE `attribute_translations` ADD CONSTRAINT `attribute_translations_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE; -- -- Constraints for table `bookings` -- ALTER TABLE `bookings` ADD CONSTRAINT `bookings_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `bookings_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL; -- -- Constraints for table `booking_products` -- ALTER TABLE `booking_products` ADD CONSTRAINT `booking_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `booking_product_appointment_slots` -- ALTER TABLE `booking_product_appointment_slots` ADD CONSTRAINT `booking_product_appointment_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `booking_product_default_slots` -- ALTER TABLE `booking_product_default_slots` ADD CONSTRAINT `booking_product_default_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `booking_product_event_tickets` -- ALTER TABLE `booking_product_event_tickets` ADD CONSTRAINT `booking_product_event_tickets_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `booking_product_event_ticket_translations` -- ALTER TABLE `booking_product_event_ticket_translations` ADD CONSTRAINT `booking_product_event_ticket_translations_locale_foreign` FOREIGN KEY (`booking_product_event_ticket_id`) REFERENCES `booking_product_event_tickets` (`id`) ON DELETE CASCADE; -- -- Constraints for table `booking_product_rental_slots` -- ALTER TABLE `booking_product_rental_slots` ADD CONSTRAINT `booking_product_rental_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `booking_product_table_slots` -- ALTER TABLE `booking_product_table_slots` ADD CONSTRAINT `booking_product_table_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart` -- ALTER TABLE `cart` ADD CONSTRAINT `cart_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_items` -- ALTER TABLE `cart_items` ADD CONSTRAINT `cart_items_cart_id_foreign` FOREIGN KEY (`cart_id`) REFERENCES `cart` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `cart_items` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_items_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_items_tax_category_id_foreign` FOREIGN KEY (`tax_category_id`) REFERENCES `tax_categories` (`id`); -- -- Constraints for table `cart_payment` -- ALTER TABLE `cart_payment` ADD CONSTRAINT `cart_payment_cart_id_foreign` FOREIGN KEY (`cart_id`) REFERENCES `cart` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_rules` -- ALTER TABLE `cart_rules` ADD CONSTRAINT `cart_rules_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_rule_channels` -- ALTER TABLE `cart_rule_channels` ADD CONSTRAINT `cart_rule_channels_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_rule_channels_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_rule_coupons` -- ALTER TABLE `cart_rule_coupons` ADD CONSTRAINT `cart_rule_coupons_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_rule_coupons_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_rule_coupon_usage` -- ALTER TABLE `cart_rule_coupon_usage` ADD CONSTRAINT `cart_rule_coupon_usage_cart_rule_coupon_id_foreign` FOREIGN KEY (`cart_rule_coupon_id`) REFERENCES `cart_rule_coupons` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_rule_coupon_usage_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_rule_customers` -- ALTER TABLE `cart_rule_customers` ADD CONSTRAINT `cart_rule_customers_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_rule_customers_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_rule_customer_groups` -- ALTER TABLE `cart_rule_customer_groups` ADD CONSTRAINT `cart_rule_customer_groups_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cart_rule_customer_groups_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_rule_translations` -- ALTER TABLE `cart_rule_translations` ADD CONSTRAINT `cart_rule_translations_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cart_shipping_rates` -- ALTER TABLE `cart_shipping_rates` ADD CONSTRAINT `cart_shipping_rates_cart_address_id_foreign` FOREIGN KEY (`cart_address_id`) REFERENCES `addresses` (`id`) ON DELETE CASCADE; -- -- Constraints for table `catalog_rules` -- ALTER TABLE `catalog_rules` ADD CONSTRAINT `catalog_rules_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `catalog_rule_channels` -- ALTER TABLE `catalog_rule_channels` ADD CONSTRAINT `catalog_rule_channels_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_channels_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE; -- -- Constraints for table `catalog_rule_customer_groups` -- ALTER TABLE `catalog_rule_customer_groups` ADD CONSTRAINT `catalog_rule_customer_groups_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_customer_groups_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE; -- -- Constraints for table `catalog_rule_products` -- ALTER TABLE `catalog_rule_products` ADD CONSTRAINT `catalog_rule_products_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_products_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_products_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_products_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `catalog_rule_product_prices` -- ALTER TABLE `catalog_rule_product_prices` ADD CONSTRAINT `catalog_rule_product_prices_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_product_prices_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_product_prices_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_product_prices_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `catalog_rule_product_prices_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `categories` -- ALTER TABLE `categories` ADD CONSTRAINT `categories_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `category_filterable_attributes` -- ALTER TABLE `category_filterable_attributes` ADD CONSTRAINT `category_filterable_attributes_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `category_filterable_attributes_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE; -- -- Constraints for table `category_translations` -- ALTER TABLE `category_translations` ADD CONSTRAINT `category_translations_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `category_translations_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `category_translations_locale_id_foreign` FOREIGN KEY (`locale_id`) REFERENCES `locales` (`id`) ON DELETE CASCADE; -- -- Constraints for table `channels` -- ALTER TABLE `channels` ADD CONSTRAINT `channels_base_currency_id_foreign` FOREIGN KEY (`base_currency_id`) REFERENCES `currencies` (`id`), ADD CONSTRAINT `channels_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `channels_default_locale_id_foreign` FOREIGN KEY (`default_locale_id`) REFERENCES `locales` (`id`), ADD CONSTRAINT `channels_root_category_id_foreign` FOREIGN KEY (`root_category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL; -- -- Constraints for table `channel_currencies` -- ALTER TABLE `channel_currencies` ADD CONSTRAINT `channel_currencies_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `channel_currencies_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `channel_inventory_sources` -- ALTER TABLE `channel_inventory_sources` ADD CONSTRAINT `channel_inventory_sources_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `channel_inventory_sources_inventory_source_id_foreign` FOREIGN KEY (`inventory_source_id`) REFERENCES `inventory_sources` (`id`) ON DELETE CASCADE; -- -- Constraints for table `channel_locales` -- ALTER TABLE `channel_locales` ADD CONSTRAINT `channel_locales_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `channel_locales_locale_id_foreign` FOREIGN KEY (`locale_id`) REFERENCES `locales` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cms_pages` -- ALTER TABLE `cms_pages` ADD CONSTRAINT `cms_pages_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cms_page_channels` -- ALTER TABLE `cms_page_channels` ADD CONSTRAINT `cms_page_channels_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cms_page_channels_cms_page_id_foreign` FOREIGN KEY (`cms_page_id`) REFERENCES `cms_pages` (`id`) ON DELETE CASCADE; -- -- Constraints for table `cms_page_translations` -- ALTER TABLE `cms_page_translations` ADD CONSTRAINT `cms_page_translations_cms_page_id_foreign` FOREIGN KEY (`cms_page_id`) REFERENCES `cms_pages` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `cms_page_translations_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `company_addresses` -- ALTER TABLE `company_addresses` ADD CONSTRAINT `company_addresses_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `company_personal_details` -- ALTER TABLE `company_personal_details` ADD CONSTRAINT `company_personal_details_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `core_config` -- ALTER TABLE `core_config` ADD CONSTRAINT `core_config_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `country_states` -- ALTER TABLE `country_states` ADD CONSTRAINT `country_states_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`) ON DELETE CASCADE; -- -- Constraints for table `country_state_translations` -- ALTER TABLE `country_state_translations` ADD CONSTRAINT `country_state_translations_country_state_id_foreign` FOREIGN KEY (`country_state_id`) REFERENCES `country_states` (`id`) ON DELETE CASCADE; -- -- Constraints for table `country_translations` -- ALTER TABLE `country_translations` ADD CONSTRAINT `country_translations_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`) ON DELETE CASCADE; -- -- Constraints for table `currencies` -- ALTER TABLE `currencies` ADD CONSTRAINT `currencies_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `currency_exchange_rates` -- ALTER TABLE `currency_exchange_rates` ADD CONSTRAINT `currency_exchange_rates_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `currency_exchange_rates_target_currency_foreign` FOREIGN KEY (`target_currency`) REFERENCES `currencies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `customers` -- ALTER TABLE `customers` ADD CONSTRAINT `customers_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `customers_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE SET NULL; -- -- Constraints for table `customer_groups` -- ALTER TABLE `customer_groups` ADD CONSTRAINT `customer_groups_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `customer_social_accounts` -- ALTER TABLE `customer_social_accounts` ADD CONSTRAINT `customer_social_accounts_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE; -- -- Constraints for table `downloadable_link_purchased` -- ALTER TABLE `downloadable_link_purchased` ADD CONSTRAINT `downloadable_link_purchased_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `downloadable_link_purchased_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `downloadable_link_purchased_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `downloadable_link_purchased_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE; -- -- Constraints for table `inventory_sources` -- ALTER TABLE `inventory_sources` ADD CONSTRAINT `inventory_sources_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `invoices` -- ALTER TABLE `invoices` ADD CONSTRAINT `invoices_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `invoices_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE; -- -- Constraints for table `invoice_items` -- ALTER TABLE `invoice_items` ADD CONSTRAINT `invoice_items_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `invoice_items_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `invoice_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `invoice_items` (`id`) ON DELETE CASCADE; -- -- Constraints for table `locales` -- ALTER TABLE `locales` ADD CONSTRAINT `locales_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `orders` -- ALTER TABLE `orders` ADD CONSTRAINT `orders_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `orders_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `orders_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL; -- -- Constraints for table `order_brands` -- ALTER TABLE `order_brands` ADD CONSTRAINT `order_brands_brand_foreign` FOREIGN KEY (`brand`) REFERENCES `attribute_options` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `order_brands_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `order_brands_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `order_brands_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `order_brands_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `order_comments` -- ALTER TABLE `order_comments` ADD CONSTRAINT `order_comments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE; -- -- Constraints for table `order_items` -- ALTER TABLE `order_items` ADD CONSTRAINT `order_items_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `order_items_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `order_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE; -- -- Constraints for table `order_payment` -- ALTER TABLE `order_payment` ADD CONSTRAINT `order_payment_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `order_payment_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE; -- -- Constraints for table `products` -- ALTER TABLE `products` ADD CONSTRAINT `products_attribute_family_id_foreign` FOREIGN KEY (`attribute_family_id`) REFERENCES `attribute_families` (`id`), ADD CONSTRAINT `products_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `products_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_attribute_values` -- ALTER TABLE `product_attribute_values` ADD CONSTRAINT `product_attribute_values_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_attribute_values_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_attribute_values_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_bundle_options` -- ALTER TABLE `product_bundle_options` ADD CONSTRAINT `product_bundle_options_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_bundle_option_products` -- ALTER TABLE `product_bundle_option_products` ADD CONSTRAINT `product_bundle_option_products_product_bundle_option_id_foreign` FOREIGN KEY (`product_bundle_option_id`) REFERENCES `product_bundle_options` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_bundle_option_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_bundle_option_translations` -- ALTER TABLE `product_bundle_option_translations` ADD CONSTRAINT `product_bundle_option_translations_option_id_foreign` FOREIGN KEY (`product_bundle_option_id`) REFERENCES `product_bundle_options` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_categories` -- ALTER TABLE `product_categories` ADD CONSTRAINT `product_categories_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_categories_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_cross_sells` -- ALTER TABLE `product_cross_sells` ADD CONSTRAINT `product_cross_sells_child_id_foreign` FOREIGN KEY (`child_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_cross_sells_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_customer_group_prices` -- ALTER TABLE `product_customer_group_prices` ADD CONSTRAINT `product_customer_group_prices_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_customer_group_prices_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_downloadable_links` -- ALTER TABLE `product_downloadable_links` ADD CONSTRAINT `product_downloadable_links_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_downloadable_link_translations` -- ALTER TABLE `product_downloadable_link_translations` ADD CONSTRAINT `link_translations_link_id_foreign` FOREIGN KEY (`product_downloadable_link_id`) REFERENCES `product_downloadable_links` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_downloadable_samples` -- ALTER TABLE `product_downloadable_samples` ADD CONSTRAINT `product_downloadable_samples_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_downloadable_sample_translations` -- ALTER TABLE `product_downloadable_sample_translations` ADD CONSTRAINT `sample_translations_sample_id_foreign` FOREIGN KEY (`product_downloadable_sample_id`) REFERENCES `product_downloadable_samples` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_flat` -- ALTER TABLE `product_flat` ADD CONSTRAINT `product_flat_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_flat_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `product_flat` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_flat_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_grouped_products` -- ALTER TABLE `product_grouped_products` ADD CONSTRAINT `product_grouped_products_associated_product_id_foreign` FOREIGN KEY (`associated_product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_grouped_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_images` -- ALTER TABLE `product_images` ADD CONSTRAINT `product_images_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_inventories` -- ALTER TABLE `product_inventories` ADD CONSTRAINT `product_inventories_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_inventories_inventory_source_id_foreign` FOREIGN KEY (`inventory_source_id`) REFERENCES `inventory_sources` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_inventories_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_ordered_inventories` -- ALTER TABLE `product_ordered_inventories` ADD CONSTRAINT `product_ordered_inventories_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_ordered_inventories_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_relations` -- ALTER TABLE `product_relations` ADD CONSTRAINT `product_relations_child_id_foreign` FOREIGN KEY (`child_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_relations_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_reviews` -- ALTER TABLE `product_reviews` ADD CONSTRAINT `product_reviews_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_reviews_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_super_attributes` -- ALTER TABLE `product_super_attributes` ADD CONSTRAINT `product_super_attributes_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`), ADD CONSTRAINT `product_super_attributes_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `product_up_sells` -- ALTER TABLE `product_up_sells` ADD CONSTRAINT `product_up_sells_child_id_foreign` FOREIGN KEY (`child_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `product_up_sells_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; -- -- Constraints for table `refunds` -- ALTER TABLE `refunds` ADD CONSTRAINT `refunds_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `refunds_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE; -- -- Constraints for table `refund_items` -- ALTER TABLE `refund_items` ADD CONSTRAINT `refund_items_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `refund_items_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `refund_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `refund_items` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `refund_items_refund_id_foreign` FOREIGN KEY (`refund_id`) REFERENCES `refunds` (`id`) ON DELETE CASCADE; -- -- Constraints for table `roles` -- ALTER TABLE `roles` ADD CONSTRAINT `roles_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `shipments` -- ALTER TABLE `shipments` ADD CONSTRAINT `shipments_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `shipments_inventory_source_id_foreign` FOREIGN KEY (`inventory_source_id`) REFERENCES `inventory_sources` (`id`) ON DELETE SET NULL, ADD CONSTRAINT `shipments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE; -- -- Constraints for table `shipment_items` -- ALTER TABLE `shipment_items` ADD CONSTRAINT `shipment_items_shipment_id_foreign` FOREIGN KEY (`shipment_id`) REFERENCES `shipments` (`id`) ON DELETE CASCADE; -- -- Constraints for table `sliders` -- ALTER TABLE `sliders` ADD CONSTRAINT `sliders_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `sliders_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `subscribers_list` -- ALTER TABLE `subscribers_list` ADD CONSTRAINT `subscribers_list_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `subscribers_list_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `super_channel` -- ALTER TABLE `super_channel` ADD CONSTRAINT `super_channel_base_currency_id_foreign` FOREIGN KEY (`base_currency_id`) REFERENCES `super_currencies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `super_channel_default_locale_id_foreign` FOREIGN KEY (`default_locale_id`) REFERENCES `super_locales` (`id`) ON DELETE CASCADE; -- -- Constraints for table `super_channel_currencies` -- ALTER TABLE `super_channel_currencies` ADD CONSTRAINT `super_channel_currencies_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `super_currencies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `super_channel_currencies_super_channel_id_foreign` FOREIGN KEY (`super_channel_id`) REFERENCES `super_channel` (`id`) ON DELETE CASCADE; -- -- Constraints for table `super_channel_locales` -- ALTER TABLE `super_channel_locales` ADD CONSTRAINT `super_channel_locales_locale_id_foreign` FOREIGN KEY (`locale_id`) REFERENCES `super_locales` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `super_channel_locales_super_channel_id_foreign` FOREIGN KEY (`super_channel_id`) REFERENCES `super_channel` (`id`) ON DELETE CASCADE; -- -- Constraints for table `super_currency_exchange_rates` -- ALTER TABLE `super_currency_exchange_rates` ADD CONSTRAINT `super_currency_exchange_rates_target_currency_foreign` FOREIGN KEY (`target_currency`) REFERENCES `super_currencies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `tax_categories` -- ALTER TABLE `tax_categories` ADD CONSTRAINT `tax_categories_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `tax_categories_tax_rates` -- ALTER TABLE `tax_categories_tax_rates` ADD CONSTRAINT `tax_categories_tax_rates_tax_category_id_foreign` FOREIGN KEY (`tax_category_id`) REFERENCES `tax_categories` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `tax_categories_tax_rates_tax_rate_id_foreign` FOREIGN KEY (`tax_rate_id`) REFERENCES `tax_rates` (`id`) ON DELETE CASCADE; -- -- Constraints for table `tax_rates` -- ALTER TABLE `tax_rates` ADD CONSTRAINT `tax_rates_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `velocity_contents` -- ALTER TABLE `velocity_contents` ADD CONSTRAINT `velocity_contents_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `velocity_contents_translations` -- ALTER TABLE `velocity_contents_translations` ADD CONSTRAINT `velocity_contents_translations_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `velocity_contents_translations_content_id_foreign` FOREIGN KEY (`content_id`) REFERENCES `velocity_contents` (`id`) ON DELETE CASCADE; -- -- Constraints for table `velocity_customer_compare_products` -- ALTER TABLE `velocity_customer_compare_products` ADD CONSTRAINT `velocity_customer_compare_products_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `velocity_customer_compare_products_product_flat_id_foreign` FOREIGN KEY (`product_flat_id`) REFERENCES `product_flat` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `velocity_meta_data` -- ALTER TABLE `velocity_meta_data` ADD CONSTRAINT `velocity_meta_data_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE; -- -- Constraints for table `wishlist` -- ALTER TABLE `wishlist` ADD CONSTRAINT `wishlist_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `wishlist_company_id_foreign` FOREIGN KEY (`company_id`) REFERENCES `companies` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `wishlist_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `wishlist_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>10-100 -- file:alter_table.sql ln:1612 expect:true create text search parser alter1.prs(start = prsd_start, gettoken = prsd_nexttoken, end = prsd_end, lextypes = prsd_lextype)
 CREATE PROC dbo.CustomCheckTest_Get(@InstanceIDs VARCHAR(MAX)=NULL) AS SELECT DISTINCT Test FROM dbo.CustomChecks cc WHERE (EXISTS(SELECT 1 FROM STRING_SPLIT(@InstanceIDs,',') ss WHERE ss.Value = cc.InstanceID) OR @InstanceIDs IS NULL) ORDER BY Test
-- Note this procedure is not included in the regular build, it -- is called during the post deployment process. -- This is due to the fact it updates temporal tables, and SSDT -- will throw up an error when this occurs, despite the fact we -- have procedures to deactivate the temporal tables and reactivate -- when done. DROP PROCEDURE IF EXISTS DataLoadSimulation.ChangePasswords; GO CREATE PROCEDURE DataLoadSimulation.ChangePasswords @CurrentDateTime datetime2(7), @StartingWhen datetime, @EndOfTime datetime2(7), @IsSilentMode bit WITH EXECUTE AS OWNER AS BEGIN SET NOCOUNT ON; SET XACT_ABORT ON; -- 1 in 4 days will be 1 password change, 1 in 8 days will be 2 passwords changed DECLARE @NumberOfPasswordsToChange int = (SELECT TOP(1) Quantity FROM (VALUES (0), (0), (0), (0), (0), (1), (1), (2)) AS q(Quantity) ORDER BY NEWID()); -- Pushed Notifications to calling proc --IF @IsSilentMode = 0 --BEGIN -- PRINT N'Changing ' + CAST(@NumberOfPasswordsToChange AS nvarchar(20)) + N' passwords for ' + LEFT(CAST(@CurrentDateTime AS NVARCHAR), 10); --END; DECLARE @Counter int = 0; DECLARE @PersonID int; DECLARE @EmailAddress nvarchar(256); DECLARE @HashedPassword varbinary(max); DECLARE @FullName nvarchar(50); WHILE @Counter < @NumberOfPasswordsToChange BEGIN SELECT TOP(1) @PersonID = PersonID, @EmailAddress = EmailAddress, @FullName = FullName FROM [Application].People WHERE IsPermittedToLogon <> 0 AND PersonID <> 1 ORDER BY NEWID(); UPDATE [Application].People SET HashedPassword = <PASSWORD>(N'<PASSWORD>', N'<PASSWORD>' + @FullName), [ValidFrom] = @StartingWhen WHERE PersonID = @PersonID; SET @Counter += 1; END; END; GO
select d.nom, tarif from danse as d inner join seance as s on d.idDanse=s.idSeance where dateSeance between '2021-04-02' and '2021-04-05'
<reponame>MBY381/RBAC0-TEST-DEMO /*==============================================================*/ /* DBMS name: MySQL 5.0 */ /* Created on: 2021/10/28 23:46:18 */ /*==============================================================*/ drop table if exists Permission; drop table if exists Role; drop table if exists Role_Permission; drop table if exists User; drop table if exists User_Role; /*==============================================================*/ /* Table: Permission */ /*==============================================================*/ create table Permission ( p_id varchar(50) not null, p_name varchar(50), primary key (p_id) ); /*==============================================================*/ /* Table: Role */ /*==============================================================*/ create table Role ( role_id varchar(50) not null, role_name varchar(50), primary key (role_id) ); /*==============================================================*/ /* Table: Role_Permission */ /*==============================================================*/ create table Role_Permission ( role_id varchar(1), p_id varchar(1) ); /*==============================================================*/ /* Table: User */ /*==============================================================*/ create table User ( u_id varchar(50) not null, u_name varchar(50), u_pwd varchar(50), primary key (u_id) ); /*==============================================================*/ /* Table: User_Role */ /*==============================================================*/ create table User_Role ( u_id varchar(1), role_id varchar(1) ); alter table Role_Permission add constraint FK_Reference_3 foreign key (role_id) references Role (role_id) on delete restrict on update restrict; alter table Role_Permission add constraint FK_Reference_4 foreign key (p_id) references Permission (p_id) on delete restrict on update restrict; alter table User_Role add constraint FK_Reference_1 foreign key (u_id) references User (u_id) on delete restrict on update restrict; alter table User_Role add constraint FK_Reference_5 foreign key (role_id) references Role (role_id) on delete restrict on update restrict;
<filename>v3.1/Database/dbo/Tables/EFormations.sql<gh_stars>0 CREATE TABLE [dbo].[EFormations] ( --From MergedXSDs XSD --From 'genericRailML' Namespace [EFormationsId] BIGINT NOT NULL, [Formation] SMALLINT NOT NULL, CONSTRAINT [PK_EFormationsId] PRIMARY KEY CLUSTERED ([EFormationsId] ASC), CONSTRAINT [FK_EFormations_EFormation] FOREIGN KEY ([Formation]) REFERENCES [dbo].[EFormation] ([EFormationId]) --ON UPDATE CASCADE, ON DELETE CASCADE, );
BEGIN TRANSACTION; CREATE TABLE "Broker__c" ( sf_id VARCHAR(255) NOT NULL, "Name" VARCHAR(255), "Broker_Id__c" VARCHAR(255), "Email__c" VARCHAR(255), "Mobile_Phone__c" VARCHAR(255), "Phone__c" VARCHAR(255), "Picture__c" VARCHAR(255), "Title__c" VARCHAR(255), PRIMARY KEY (sf_id) ); INSERT INTO "Broker__c" VALUES('a0054000003bKGTAA2','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/caroline_kingsley.jpg','Senior Broker'); INSERT INTO "Broker__c" VALUES('a0054000003bKGUAA2','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/michael_jones.jpg','Senior Broker'); INSERT INTO "Broker__c" VALUES('a0054000003bKGVAA2','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/jonathan_bradley.jpg','Senior Broker'); INSERT INTO "Broker__c" VALUES('a0054000003bKGWAA2','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/jennifer_wu.jpg','Senior Broker'); INSERT INTO "Broker__c" VALUES('a0054000003bKGXAA2','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/olivia_green.jpg','Senior Broker'); INSERT INTO "Broker__c" VALUES('a0054000003bKGYAA2','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/miriam_aupont.jpg','Senior Broker'); INSERT INTO "Broker__c" VALUES('a0054000003bKGZAA2','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/michelle_lambert.jpg','Senior Broker'); INSERT INTO "Broker__c" VALUES('a0054000003bKGaAAM','<NAME>','','<EMAIL>','617-244-3672','617-244-3672','https://s3-us-west-1.amazonaws.com/sfdc-demo/people/victor_ochoa.jpg','Senior Broker'); CREATE TABLE "Property__c" ( sf_id VARCHAR(255) NOT NULL, "Name" VARCHAR(255), "Address__c" VARCHAR(255), "Assessed_Value__c" VARCHAR(255), "Baths__c" VARCHAR(255), "Beds__c" VARCHAR(255), "City__c" VARCHAR(255), "Date_Agreement__c" VARCHAR(255), "Date_Closed__c" VARCHAR(255), "Date_Contracted__c" VARCHAR(255), "Date_Listed__c" VARCHAR(255), "Date_Pre_Market__c" VARCHAR(255), "Description__c" VARCHAR(255), "Picture__c" VARCHAR(255), "Price_Sold__c" VARCHAR(255), "Price__c" VARCHAR(255), "State__c" VARCHAR(255), "Status__c" VARCHAR(255), "Tags__c" VARCHAR(255), "Thumbnail__c" VARCHAR(255), "Title__c" VARCHAR(255), "Zip__c" VARCHAR(255), broker__c VARCHAR(255), PRIMARY KEY (sf_id) ); INSERT INTO "Property__c" VALUES('a0154000003lGFnAAM','Stunning Victorian','18 Henry St','','3.0','4.0','Cambridge','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house01.jpg','','975000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house01sq.jpg','Stunning Victorian','01742','a0054000003bKGTAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFoAAM','Ultimate Sophistication','24 Pearl St','','4.0','5.0','Cambridge','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house02.jpg','','1200000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house02sq.jpg','Ultimate Sophistication','02420','a0054000003bKGUAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFpAAM','Modern City Living','72 Francis st','','4.0','5.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house03.jpg','','825000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house03sq.jpg','Modern City Living','02420','a0054000003bKGWAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFqAAM','Stunning Colonial','32 Prince st','','4.0','5.0','Cambridge','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house04.jpg','','930000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house04sq.jpg','Stunning Colonial','02420','a0054000003bKGWAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFrAAM','Waterfront in the City','110 Baxter Street','','2.0','3.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house05.jpg','','850000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house05sq.jpg','Waterfront in the City','02420','a0054000003bKGXAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFsAAM','Quiet Retreat','448 Hanover St','','2.0','4.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house06.jpg','','725000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house06sq.jpg','Quiet Retreat','02420','a0054000003bKGYAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFtAAM','City Living','127 Endicott St','','1.0','3.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house07.jpg','','450000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house07sq.jpg','City Living','02420','a0054000003bKGZAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFvAAM','Seaport District Retreat','121 Harborwalk','','3.0','3.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house09.jpg','','450000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house09sq.jpg','Seaport District Retreat','02420','a0054000003bKGTAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFwAAM','City Living','640 Harrison Ave','','2.0','2.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house08.jpg','','650000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house08sq.jpg','City Living','02420','a0054000003bKGUAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFxAAM','Architectural Details','95 Gloucester St','','3.0','3.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house11.jpg','','690000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house11sq.jpg','Architectural Details','02420','a0054000003bKGTAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFyAAM','Contemporary Luxury','145 Commonwealth Ave','','3.0','4.0','Boston','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house12.jpg','','845000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house12sq.jpg','Contemporary Luxury','02420','a0054000003bKGUAA2'); INSERT INTO "Property__c" VALUES('a0154000003lGFuAAM','Heart of Harvard Square','48 Brattle st','','4.0','5.0','Cambridge','','','','2019-12-03','','Lorem ipsum dolor sit amet','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house10.jpg','','450000.0','MA','','','https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house10sq.jpg','Heart of Harvard Square','02420','a0054000003bKGaAAM'); COMMIT;
DROP TABLE IF EXISTS `t_account_two_backup`; CREATE TABLE `t_account_two_backup` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `amount` decimal(19, 2) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE = InnoDB;
ALTER DATABASE TIMEZONE UTC ALTER DATABASE VALIDATION True CREATE CLASS Entity EXTENDS V ABSTRACT CREATE PROPERTY Entity.uuid String ALTER PROPERTY Entity.uuid MANDATORY True CREATE INDEX Entity.uuid UNIQUE_HASH_INDEX CREATE PROPERTY Entity.name String ALTER PROPERTY Entity.name MANDATORY True CREATE INDEX Entity.name NOTUNIQUE CREATE CLASS GeographicArea EXTENDS Entity ABSTRACT # Geographical regions, such as "Southern Europe" or "Asia". CREATE CLASS Region EXTENDS GeographicArea CREATE CLASS Country EXTENDS GeographicArea # Most countries have ISO 3166-1 alpha2 and alpha3 codes. # When the code exists, it is unique. CREATE PROPERTY Country.alpha2 String CREATE INDEX Country.alpha2 UNIQUE METADATA {ignoreNullValues: true} CREATE PROPERTY Country.alpha3 String CREATE INDEX Country.alpha3 UNIQUE METADATA {ignoreNullValues: true} # An edge that points from a parent GeographicArea to a child (sub) GeographicArea, # enforcing that any two areas may be connected by at most one such edge. CREATE CLASS GeographicArea_SubArea EXTENDS E CREATE PROPERTY GeographicArea_SubArea.out LINK GeographicArea CREATE PROPERTY GeographicArea_SubArea.in LINK GeographicArea CREATE INDEX GeographicArea_SubArea_Unique ON GeographicArea_SubArea (in, out) UNIQUE_HASH_INDEX
CREATE TABLE cache ( -- entry key. key VARCHAR NOT NULL, -- time it was added. expires_at TIMESTAMP NOT NULL, -- value in the cache. value VARCHAR NOT NULL, PRIMARY KEY(key) ); CREATE INDEX idx_cache_expires_at ON cache(expires_at);
<gh_stars>0 -- phpMyAdmin SQL Dump -- version 4.6.5.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 07, 2017 at 08:26 AM -- Server version: 10.1.21-MariaDB -- PHP Version: 5.6.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `diet` -- -- -------------------------------------------------------- -- -- Table structure for table `admin` -- CREATE TABLE `admin` ( `admin_id` int(11) NOT NULL, `name` varchar(50) NOT NULL, `username` varchar(15) NOT NULL, `password` varchar(15) NOT NULL, `type` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admin` -- INSERT INTO `admin` (`admin_id`, `name`, `username`, `password`, `type`) VALUES (1, '<NAME>', 'lavern', '<PASSWORD>', 'admin'), (2, 'Gera', 'gera', '123', 'admin'), (4, '<NAME>', 'anan', '123', 'coach'), (5, '<NAME>', 'jurlien', '123', 'coach'); -- -------------------------------------------------------- -- -- Table structure for table `bfi` -- CREATE TABLE `bfi` ( `bfi_id` int(11) NOT NULL, `age_start` int(11) NOT NULL, `age_end` int(11) NOT NULL, `gender` varchar(11) NOT NULL, `fat_start` decimal(5,2) NOT NULL, `fat_end` decimal(5,2) NOT NULL, `bfi_status` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `bfi` -- INSERT INTO `bfi` (`bfi_id`, `age_start`, `age_end`, `gender`, `fat_start`, `fat_end`, `bfi_status`) VALUES (2, 20, 24, 'Female', '18.20', '22.00', 'Excellent'), (3, 20, 24, 'Female', '22.10', '24.90', 'Good'), (4, 25, 29, 'Female', '18.90', '21.90', 'Excellent'), (5, 25, 29, 'Female', '22.00', '25.30', 'Good'); -- -------------------------------------------------------- -- -- Table structure for table `category` -- CREATE TABLE `category` ( `cat_id` int(11) NOT NULL, `cat_name` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `category` -- INSERT INTO `category` (`cat_id`, `cat_name`) VALUES (1, 'Inner Nutrition Programmes'), (2, 'Weight Management Products - Packs'), (3, 'aaa'), (4, ''); -- -------------------------------------------------------- -- -- Table structure for table `initial_result` -- CREATE TABLE `initial_result` ( `ir_id` int(11) NOT NULL, `id` int(11) NOT NULL, `ir_date` date NOT NULL, `ir_fat` decimal(5,2) NOT NULL, `ir_visceral` decimal(5,2) NOT NULL, `ir_bonemass` decimal(5,2) NOT NULL, `ir_restingmr` decimal(5,2) NOT NULL, `ir_metabolic_age` decimal(5,2) NOT NULL, `ir_muscle_mass` decimal(5,2) NOT NULL, `ir_physique_rating` decimal(5,2) NOT NULL, `ir_water` decimal(5,2) NOT NULL, `ir_ideal_weight` decimal(5,2) NOT NULL, `ir_excess_fat` decimal(5,2) NOT NULL, `ir_ideal_visceral` decimal(5,2) NOT NULL, `ir_height` decimal(5,2) NOT NULL, `ir_weight` decimal(5,2) NOT NULL, `bmi` decimal(5,2) NOT NULL, `bfi` varchar(10) NOT NULL, `remarks` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `initial_result` -- INSERT INTO `initial_result` (`ir_id`, `id`, `ir_date`, `ir_fat`, `ir_visceral`, `ir_bonemass`, `ir_restingmr`, `ir_metabolic_age`, `ir_muscle_mass`, `ir_physique_rating`, `ir_water`, `ir_ideal_weight`, `ir_excess_fat`, `ir_ideal_visceral`, `ir_height`, `ir_weight`, `bmi`, `bfi`, `remarks`) VALUES (1, 5, '2017-10-07', '19.00', '20.00', '30.00', '40.00', '50.00', '60.00', '70.00', '80.00', '90.00', '100.00', '111.00', '3.50', '50.00', '4.08', 'Excellent', 'underweight'), (2, 6, '2017-10-07', '20.00', '1.00', '2.00', '3.00', '4.00', '5.00', '6.00', '7.00', '8.00', '9.00', '10.00', '2.50', '50.00', '8.00', '', 'underweight'); -- -------------------------------------------------------- -- -- Table structure for table `meal` -- CREATE TABLE `meal` ( `meal_id` int(11) NOT NULL, `meal_time` varchar(30) NOT NULL, `meal` text NOT NULL, `calories` varchar(15) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `meal` -- INSERT INTO `meal` (`meal_id`, `meal_time`, `meal`, `calories`) VALUES (1, 'Breakfast11', 'Shake1', '1501'), (2, 'Lunch', '2 Pcs Banana', '200'); -- -------------------------------------------------------- -- -- Table structure for table `monitoring` -- CREATE TABLE `monitoring` ( `monitor_id` int(11) NOT NULL, `id` int(11) NOT NULL, `sponsor` varchar(30) NOT NULL, `program_id` int(11) NOT NULL, `target` varchar(50) NOT NULL, `monitor_status` varchar(15) NOT NULL, `start_date` date NOT NULL, `coach_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `product` -- CREATE TABLE `product` ( `prod_id` int(11) NOT NULL, `prod_name` varchar(30) NOT NULL, `vol_pts` int(11) NOT NULL, `c` int(11) NOT NULL, `sc` int(11) NOT NULL, `sb` int(11) NOT NULL, `supv` int(11) NOT NULL, `retail` int(11) NOT NULL, `profitc` int(11) NOT NULL, `profitsc` int(11) NOT NULL, `profitsb` int(11) NOT NULL, `profitsupv` int(11) NOT NULL, `qty` int(11) NOT NULL, `reorder` int(11) NOT NULL, `cat_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `product` -- INSERT INTO `product` (`prod_id`, `prod_name`, `vol_pts`, `c`, `sc`, `sb`, `supv`, `retail`, `profitc`, `profitsc`, `profitsb`, `profitsupv`, `qty`, `reorder`, `cat_id`) VALUES (1, 'Formula 1 Canister', 18, 10, 20, 30, 40, 1500, 10, 20, 30, 400, 8, 4, 1), (2, 'Formula 2', 18, 10, 20, 30, 40, 1500, 10, 20, 30, 40, 18, 1, 1), (3, 'dada', 1, 6, 8, 10, 12, 2, 7, 9, 11, 13, 3, 5, 1); -- -------------------------------------------------------- -- -- Table structure for table `program` -- CREATE TABLE `program` ( `program_id` int(11) NOT NULL, `program_name` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `program` -- INSERT INTO `program` (`program_id`, `program_name`) VALUES (1, 'Free Wellness'), (2, 'Weight Gain'), (3, 'Weight Loss'); -- -------------------------------------------------------- -- -- Table structure for table `question` -- CREATE TABLE `question` ( `question_id` int(11) NOT NULL, `question` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `question` -- INSERT INTO `question` (`question_id`, `question`) VALUES (1, 'Do you feel sick or get sick often?'), (2, 'Do you easily get tired?'), (3, 'Do you suffer from chronic health problems such as headaches, backaches or constipation?'), (4, 'Do you feel your workplace-home-life stressful?'); -- -------------------------------------------------------- -- -- Table structure for table `result` -- CREATE TABLE `result` ( `result_id` int(11) NOT NULL, `monitor_id` int(11) NOT NULL, `weighin_date` date NOT NULL, `weight` decimal(5,2) NOT NULL, `fat` decimal(5,2) NOT NULL, `visceral` decimal(5,2) NOT NULL, `bone_mass` decimal(5,2) NOT NULL, `rmr` decimal(5,2) NOT NULL, `metabolic_age` decimal(5,2) NOT NULL, `muscle_mass` decimal(5,2) NOT NULL, `physique_rating` decimal(5,2) NOT NULL, `water` decimal(5,2) NOT NULL, `remarks` varchar(500) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `schedule` -- CREATE TABLE `schedule` ( `sched_id` int(11) NOT NULL, `sched_event` varchar(200) NOT NULL, `sched_time` time NOT NULL, `sched_from` date NOT NULL, `sched_to` date NOT NULL, `sched_allday` varchar(5) NOT NULL, `sched_color` varchar(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `schedule` -- INSERT INTO `schedule` (`sched_id`, `sched_event`, `sched_time`, `sched_from`, `sched_to`, `sched_allday`, `sched_color`) VALUES (1, 'Free Wellness', '10:30:00', '2017-08-29', '2017-08-29', 'true', ''), (2, 'Test', '13:30:00', '2017-08-30', '2017-08-30', '', ''), (3, 'SeMinar', '00:00:00', '2017-08-31', '2017-08-31', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `stockin` -- CREATE TABLE `stockin` ( `stockin_id` int(11) NOT NULL, `prod_id` int(11) NOT NULL, `stockin_qty` int(11) NOT NULL, `stockin_date` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `stockout` -- CREATE TABLE `stockout` ( `stockout_id` int(11) NOT NULL, `prod_id` int(11) NOT NULL, `stockout_qty` int(11) NOT NULL, `stockout_date` datetime NOT NULL, `id` int(11) NOT NULL, `admin_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `stockout` -- INSERT INTO `stockout` (`stockout_id`, `prod_id`, `stockout_qty`, `stockout_date`, `id`, `admin_id`) VALUES (1, 3, 1, '2017-10-07 14:12:21', 5, 4), (2, 3, 1, '2017-10-07 14:12:21', 5, 4); -- -------------------------------------------------------- -- -- Table structure for table `supplement` -- CREATE TABLE `supplement` ( `sup_id` int(11) NOT NULL, `prod_id` int(11) NOT NULL, `sup_count` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `supplement` -- INSERT INTO `supplement` (`sup_id`, `prod_id`, `sup_count`) VALUES (3, 1, 10); -- -------------------------------------------------------- -- -- Table structure for table `sup_taker` -- CREATE TABLE `sup_taker` ( `sup_taker` int(11) NOT NULL, `monitor_id` int(11) NOT NULL, `prod_id` int(11) NOT NULL, `count` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `sup_taker` -- INSERT INTO `sup_taker` (`sup_taker`, `monitor_id`, `prod_id`, `count`) VALUES (1, 1, 1, 10); -- -------------------------------------------------------- -- -- Table structure for table `survey` -- CREATE TABLE `survey` ( `survey_id` int(11) NOT NULL, `id` int(11) NOT NULL, `question_id` int(11) NOT NULL, `answer` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `survey` -- INSERT INTO `survey` (`survey_id`, `id`, `question_id`, `answer`) VALUES (1, 1, 1, 'yes'), (2, 1, 2, 'yes'), (3, 1, 3, 'yes'), (4, 1, 4, 'yes'), (5, 2, 1, 'yes'), (6, 3, 1, 'yes'), (7, 4, 1, 'yes'), (8, 4, 3, 'yes'), (9, 5, 1, 'yes'), (10, 5, 2, 'yes'), (11, 5, 3, 'yes'), (12, 5, 4, 'yes'), (13, 6, 1, 'yes'), (14, 6, 2, 'yes'), (15, 6, 3, 'yes'); -- -------------------------------------------------------- -- -- Table structure for table `taker` -- CREATE TABLE `taker` ( `id` int(11) NOT NULL, `last` varchar(15) NOT NULL, `first` varchar(15) NOT NULL, `phone` varchar(11) NOT NULL, `gender` varchar(6) NOT NULL, `bday` date NOT NULL, `referrer_id` int(11) NOT NULL, `referrer_contact` varchar(30) NOT NULL, `address` varchar(100) NOT NULL, `email` varchar(30) NOT NULL, `status` varchar(8) NOT NULL, `points` decimal(7,2) NOT NULL, `discount` decimal(10,2) NOT NULL, `height` decimal(5,2) NOT NULL, `orig_weight` decimal(5,2) NOT NULL, `coach_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `taker` -- INSERT INTO `taker` (`id`, `last`, `first`, `phone`, `gender`, `bday`, `referrer_id`, `referrer_contact`, `address`, `email`, `status`, `points`, `discount`, `height`, `orig_weight`, `coach_id`) VALUES (5, 'Magbanua', 'Lee', '09051914070', 'Female', '1989-10-14', 0, '5454', '', '', 'Active', '1.00', '1.00', '3.50', '50.00', 1), (6, 'skjk', 'jkjk', '4254', 'Male', '2017-01-01', 0, '545', '', '', 'Active', '0.00', '0.00', '2.50', '50.00', 4); -- -------------------------------------------------------- -- -- Table structure for table `taker_meal` -- CREATE TABLE `taker_meal` ( `taker_meal_id` int(11) NOT NULL, `meal_id` int(11) NOT NULL, `id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `taker_meal` -- INSERT INTO `taker_meal` (`taker_meal_id`, `meal_id`, `id`) VALUES (1, 1, 6), (2, 2, 6); -- -------------------------------------------------------- -- -- Table structure for table `temp_trans` -- CREATE TABLE `temp_trans` ( `temp_trans_id` int(11) NOT NULL, `prod_id` int(11) NOT NULL, `prod_qty` int(11) NOT NULL, `points` decimal(10,2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `admin` -- ALTER TABLE `admin` ADD PRIMARY KEY (`admin_id`); -- -- Indexes for table `bfi` -- ALTER TABLE `bfi` ADD PRIMARY KEY (`bfi_id`); -- -- Indexes for table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`cat_id`); -- -- Indexes for table `initial_result` -- ALTER TABLE `initial_result` ADD PRIMARY KEY (`ir_id`); -- -- Indexes for table `meal` -- ALTER TABLE `meal` ADD PRIMARY KEY (`meal_id`); -- -- Indexes for table `monitoring` -- ALTER TABLE `monitoring` ADD PRIMARY KEY (`monitor_id`); -- -- Indexes for table `product` -- ALTER TABLE `product` ADD PRIMARY KEY (`prod_id`); -- -- Indexes for table `program` -- ALTER TABLE `program` ADD PRIMARY KEY (`program_id`); -- -- Indexes for table `question` -- ALTER TABLE `question` ADD PRIMARY KEY (`question_id`); -- -- Indexes for table `result` -- ALTER TABLE `result` ADD PRIMARY KEY (`result_id`); -- -- Indexes for table `schedule` -- ALTER TABLE `schedule` ADD PRIMARY KEY (`sched_id`); -- -- Indexes for table `stockin` -- ALTER TABLE `stockin` ADD PRIMARY KEY (`stockin_id`); -- -- Indexes for table `stockout` -- ALTER TABLE `stockout` ADD PRIMARY KEY (`stockout_id`); -- -- Indexes for table `supplement` -- ALTER TABLE `supplement` ADD PRIMARY KEY (`sup_id`); -- -- Indexes for table `sup_taker` -- ALTER TABLE `sup_taker` ADD PRIMARY KEY (`sup_taker`); -- -- Indexes for table `survey` -- ALTER TABLE `survey` ADD PRIMARY KEY (`survey_id`); -- -- Indexes for table `taker` -- ALTER TABLE `taker` ADD PRIMARY KEY (`id`); -- -- Indexes for table `taker_meal` -- ALTER TABLE `taker_meal` ADD PRIMARY KEY (`taker_meal_id`); -- -- Indexes for table `temp_trans` -- ALTER TABLE `temp_trans` ADD PRIMARY KEY (`temp_trans_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admin` -- ALTER TABLE `admin` MODIFY `admin_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `bfi` -- ALTER TABLE `bfi` MODIFY `bfi_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `category` -- ALTER TABLE `category` MODIFY `cat_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `initial_result` -- ALTER TABLE `initial_result` MODIFY `ir_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `meal` -- ALTER TABLE `meal` MODIFY `meal_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `monitoring` -- ALTER TABLE `monitoring` MODIFY `monitor_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `product` -- ALTER TABLE `product` MODIFY `prod_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `program` -- ALTER TABLE `program` MODIFY `program_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `question` -- ALTER TABLE `question` MODIFY `question_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `result` -- ALTER TABLE `result` MODIFY `result_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `schedule` -- ALTER TABLE `schedule` MODIFY `sched_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `stockin` -- ALTER TABLE `stockin` MODIFY `stockin_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `stockout` -- ALTER TABLE `stockout` MODIFY `stockout_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `supplement` -- ALTER TABLE `supplement` MODIFY `sup_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `sup_taker` -- ALTER TABLE `sup_taker` MODIFY `sup_taker` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `survey` -- ALTER TABLE `survey` MODIFY `survey_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `taker` -- ALTER TABLE `taker` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `taker_meal` -- ALTER TABLE `taker_meal` MODIFY `taker_meal_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `temp_trans` -- ALTER TABLE `temp_trans` MODIFY `temp_trans_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- phpMyAdmin SQL Dump -- version 4.5.2 -- http://www.phpmyadmin.net -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 14-10-2016 a las 17:51:20 -- Versión del servidor: 5.7.9 -- Versión de PHP: 5.6.16 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `sysreserva` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `calendar_events` -- DROP TABLE IF EXISTS `calendar_events`; CREATE TABLE IF NOT EXISTS `calendar_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `descripcion` varchar(255) NOT NULL, `fecha_inicio` datetime NOT NULL, `fecha_fin` datetime NOT NULL, `precio_actual` float NOT NULL, `precio_total` float NOT NULL, `cod_equipo` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `calendar_events` -- INSERT INTO `calendar_events` (`id`, `descripcion`, `fecha_inicio`, `fecha_fin`, `precio_actual`, `precio_total`, `cod_equipo`) VALUES (1, 'hello world', '2015-02-19 08:00:00', '2015-02-19 23:00:00', 0, 0, 1), (2, 'lorem ipsum dolor sit amet', '2015-02-25 12:15:00', '2015-02-25 21:30:00', 0, 0, 1), (3, 'otro evento cualquiera', '2015-02-14 09:00:00', '2015-02-14 12:00:00', 0, 0, 1), (4, 'nombre evento', '2015-02-19 07:00:00', '2015-02-19 08:00:00', 0, 0, 1), (5, 'hola', '2016-09-03 08:00:00', '2016-09-03 23:00:00', 0, 0, 1), (6, 'uno', '2016-09-13 08:00:00', '2016-09-13 23:00:00', 0, 0, 1), (8, 'HOLA', '2016-10-05 08:00:00', '2016-10-05 23:00:00', 15, 2000, 1), (9, 'ghdfhy', '2016-10-06 08:00:00', '2016-10-06 23:00:00', 0, 0, 1), (10, 'ghdfhy', '2016-10-06 08:00:00', '2016-10-06 23:00:00', 0, 0, 1), (11, 'asdasd', '2016-10-07 08:00:00', '2016-10-07 23:00:00', 0, 0, 1), (12, 'otro gato', '2016-10-08 08:00:00', '2016-10-08 23:00:00', 0, 0, 1), (23, 'asa', '2016-10-09 08:00:00', '2016-10-09 23:00:00', 0, 0, 1), (24, 'asa', '2016-10-09 08:00:00', '2016-10-09 23:00:00', 0, 0, 1), (25, 'prueba', '2016-10-04 08:00:00', '2016-10-04 23:00:00', 1, 32008, 1), (26, 'prueba', '2016-10-04 08:00:00', '2016-10-04 23:00:00', 1, 32008, 1), (27, 'otra prueba', '2016-10-03 08:00:00', '2016-10-03 23:00:00', 3200, 3200, 1), (30, 'Combo 3', '2016-10-02 08:00:00', '2016-10-02 23:00:00', 200, 3200, 1), (31, 'pagado', '2016-10-01 08:00:00', '2016-10-01 23:00:00', 3200, 3200, 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `cliente` -- DROP TABLE IF EXISTS `cliente`; CREATE TABLE IF NOT EXISTS `cliente` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nombre` varchar(50) NOT NULL, `tel` varchar(15) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `cliente` -- INSERT INTO `cliente` (`id`, `nombre`, `tel`) VALUES (1, 'Kevin', '3743456328'), (2, 'Juan', '376415445567'); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 -- <Migration ID="b41d5dc3-220a-48ed-94f0-3cf453fe676e" /> GO /************************************************************************** ** CREATED BY: <NAME> ** CREATED DATE: 2017.08.02 ** CREATION: Create customer movie rentals table. **************************************************************************/ CREATE TABLE dbo.customer_movie_rentals ( customer_movie_rental_id INTEGER IDENTITY(1,1) NOT NULL ,customer_id INTEGER NOT NULL ,movie_inventory_id INTEGER NOT NULL ,checkout_date DATE NOT NULL ,due_date DATE NOT NULL ,return_date DATE NULL ,create_user INTEGER NOT NULL CONSTRAINT DF_customer_movie_rentals_create_user DEFAULT(1) ,create_date DATETIME NOT NULL CONSTRAINT DF_customer_movie_rentals_create_dttm DEFAULT(GETDATE()) ,update_user INTEGER NOT NULL CONSTRAINT DF_customer_movie_rentals_update_user DEFAULT(1) ,update_date DATETIME NOT NULL CONSTRAINT DF_customer_movie_rentals_update_dttm DEFAULT(GETDATE()) ,CONSTRAINT PK_customer_movie_rentals PRIMARY KEY NONCLUSTERED (customer_movie_rental_id ASC) ,CONSTRAINT UK_customer_movie_rentals UNIQUE CLUSTERED (customer_id ASC, customer_movie_rental_id ASC) WITH FILLFACTOR= 90 ,CONSTRAINT FK_movie_inventory_customer_movie_rentals FOREIGN KEY (movie_inventory_id) REFERENCES dbo.movie_inventory (movie_inventory_id) )
<reponame>shyamalpunekar/animal-shelter-DAO SET MODE PostgreSQL; CREATE TABLE IF NOT EXISTS animal ( id int PRIMARY KEY auto_increment, animalName VARCHAR, );
<filename>StarlingFeatherMXML4DIY/src/tests/sql/InsertError.sql<gh_stars>1-10 INSERT INTO main.testTable ( foo, -- doesn't exist, so throws an error colInt ) VALUES ( :colString, :colInt )
<reponame>MartinKokesCz/playground -- Adminer 4.2.1 MySQL dump SET NAMES utf8; SET time_zone = '+00:00'; SET foreign_key_checks = 0; SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO'; CREATE DATABASE `nextras_orm_generator` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `nextras_orm_generator`; CREATE TABLE `book` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `category` int(10) unsigned NOT NULL, `user` int(10) unsigned NOT NULL, `image` int(10) unsigned DEFAULT NULL, `name` varchar(100) NOT NULL, `author` varchar(100) DEFAULT NULL, `description` text NOT NULL, `publisher` varchar(100) DEFAULT NULL, `price` int(6) unsigned NOT NULL DEFAULT '0', `year` int(4) unsigned DEFAULT NULL, `wear` int(2) DEFAULT NULL, `active` int(1) NOT NULL DEFAULT '0', `state` enum('SELLING','SOLD','EXPIRED','UNKNOWN') NOT NULL DEFAULT 'UNKNOWN', `updatedAt` datetime NOT NULL, `createdAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `category` (`category`), KEY `user` (`user`), KEY `image` (`image`), CONSTRAINT `book_ibfk_1` FOREIGN KEY (`category`) REFERENCES `category` (`id`), CONSTRAINT `book_ibfk_2` FOREIGN KEY (`user`) REFERENCES `user` (`id`), CONSTRAINT `book_ibfk_3` FOREIGN KEY (`image`) REFERENCES `image` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `book_x_image` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `image_id` int(10) unsigned NOT NULL, `book_id` int(10) unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `image_id_book_id` (`image_id`,`book_id`), KEY `book_id` (`book_id`), CONSTRAINT `book_x_image_ibfk_1` FOREIGN KEY (`image_id`) REFERENCES `image` (`id`) ON DELETE CASCADE, CONSTRAINT `book_x_image_ibfk_2` FOREIGN KEY (`book_id`) REFERENCES `book` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `category` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8_czech_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; CREATE TABLE `image` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `filename` varchar(255) NOT NULL, `createdAt` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `message` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user` int(10) unsigned NOT NULL, `book` int(10) unsigned NOT NULL, `message` text COLLATE utf8_czech_ci NOT NULL, `createdAt` datetime NOT NULL, PRIMARY KEY (`id`), KEY `user` (`user`), KEY `book` (`book`), CONSTRAINT `message_ibfk_1` FOREIGN KEY (`user`) REFERENCES `user` (`id`), CONSTRAINT `message_ibfk_2` FOREIGN KEY (`book`) REFERENCES `book` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; CREATE TABLE `test` ( `id` int(11) NOT NULL DEFAULT '5', `def` varchar(255) COLLATE utf8_czech_ci NOT NULL DEFAULT 'ahoj1', `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `date` datetime NOT NULL ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; CREATE TABLE `user` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fbid` varchar(100) DEFAULT NULL, `username` varchar(100) NOT NULL, `password` varchar(100) NOT NULL, `role` enum('USER','ADMIN') NOT NULL DEFAULT 'USER', `loggedAt` datetime NOT NULL, `createdAt` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), UNIQUE KEY `fbid` (`fbid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 2015-06-30 10:14:47
<gh_stars>1-10 REPLACE INTO ?:status_descriptions (`status_id`, `description`, `email_subj`, `email_header`, `lang_code`) SELECT status_id, 'În așteptare' as description, 'a fost creat.' as email_subj, 'Certificatul dvs. de cadou a fost creat cu succes. Vă rugăm să așteptați până când va fi activat.' as email_header, 'ro' as lang_code FROM ?:statuses WHERE status = 'P' AND type = 'G'; REPLACE INTO ?:status_descriptions (`status_id`, `description`, `email_subj`, `email_header`, `lang_code`) SELECT status_id, 'Activ' as description, 'a fost activat.' as email_subj, 'Certificatul dvs. de cadou are statutul Activ. Îl puteți utiliza acum.' as email_header, 'ro' as lang_code FROM ?:statuses WHERE status = 'A' AND type = 'G'; REPLACE INTO ?:status_descriptions (`status_id`, `description`, `email_subj`, `email_header`, `lang_code`) SELECT status_id, 'Anulat' as description, 'a fost anulat.' as email_subj, 'Certificatul dvs. de cadou a fost anulat. Vă rugăm contactați administrația magazinului.' as email_header, 'ro' as lang_code FROM ?:statuses WHERE status = 'C' AND type = 'G'; REPLACE INTO ?:status_descriptions (`status_id`, `description`, `email_subj`, `email_header`, `lang_code`) SELECT status_id, 'Utilizat' as description, 'a fost utilizat.' as email_subj, 'Certificatul dvs. de cadou este utilizat. Vă mulțumim că ne-ați ales.' as email_header, 'ro' as lang_code FROM ?:statuses WHERE status = 'U' AND type = 'G';
<reponame>cbn-alpin/gefiproj-api INSERT INTO public.utilisateur (id_u, nom_u, prenom_u, initiales_u, email_u, password_u, active_u) VALUES (1, 'monnom', 'super', 'ms', '<EMAIL>', '$pbkdf2-sha256$29000$fo8xBsD4f6.1FiLEeK/V.g$tAVL90p3.1hZilV7vDVci2hywMdoGrE5nVnFWsmtW4A', true); INSERT INTO public.utilisateur (id_u, nom_u, prenom_u, initiales_u, email_u, password_u, active_u) VALUES (4, 'monnom', 'super', 'msu', '<EMAIL>', '$pbkdf2-sha256$29000$sDYm5BzD2Ns7R8gZg/C.Vw$3z88ckd3MUppg2.c4PNYt168pf4Ts8Sa7rrRpqB7iwE', true); INSERT INTO public.financeur (id_financeur, nom_financeur, ref_arret_attributif_financeur) VALUES (1, 'MIAGE', null); INSERT INTO public.projet (id_p, code_p, nom_p, statut_p, id_u) VALUES (1, 'COCO', 'projet test 1', false, 1); INSERT INTO public.projet (id_p, code_p, nom_p, statut_p, id_u) VALUES (2, 'COC2', 'CBNA', false, 1); INSERT INTO public.projet (id_p, code_p, nom_p, statut_p, id_u) VALUES (4, 'CO34', 'CBNA Test', false, 1); INSERT INTO public.projet (id_p, code_p, nom_p, statut_p, id_u) VALUES (5, 'CO35', 'CBNA 2', false, 1); INSERT INTO public.projet (id_p, code_p, nom_p, statut_p, id_u) VALUES (6, 'test', 'test project', false, 1); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (3, 1, 1, 44344, null, null, 'ANTR', '2010-05-01', null, null, null, null, null); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (5, 1, 1, 44344, null, null, 'ANTR', '2010-05-01', null, null, null, null, null); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (17, 2, 1, 0, '2018-06-29', null, 'ANTR', '2018-06-29', null, null, null, null, null); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (18, 2, 1, 10, '2018-06-29', null, 'ANTR', '2018-06-29', null, null, null, null, null); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (19, 2, 1, 40, '2018-06-29', null, 'ANTR', '2018-06-29', null, null, null, null, null); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (22, 2, 1, 40, '2018-06-29', null, 'ANTR', '2018-06-29', null, null, null, null, null); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (34, 1, 1, 3333, null, null, 'ANTR', '2020-11-11', '', '', '', '', ''); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (35, 1, 1, 343, null, null, 'ANTR', '2020-11-11', '', '', '', '', ''); INSERT INTO public.financement (id_f, id_p, id_financeur, montant_arrete_f, date_arrete_f, date_limite_solde_f, statut_f, date_solde_f, commentaire_admin_f, commentaire_resp_f, numero_titre_f, annee_titre_f, imputation_f) VALUES (16, 1, 1, 0, '2018-06-29', null, 'ANTR', '2020-11-10', null, null, null, null, null);
<reponame>justinlimkz/omop-learn-aou<filename>sql/Cohorts/gen_mi_cohort.sql<gh_stars>1-10 /* Construct the cohort table used in an example End-of-Life prediction Model Inclusion criteria: - Enrolled in 95% of months of training - Enrolled in 95% of days during outcome window */ with mi_dates as ( select person_id, mi_datetime from ( select person_id, condition_start_datetime as mi_datetime, row_number() over(partition by person_id order by condition_start_datetime) as rn from {omop_cdm_schema}.condition_occurrence co join {omop_cdm_schema}.concept_ancestor ca on co.condition_concept_id = ca.descendant_concept_id where ancestor_concept_id = 4329847 )a where rn = 1 ) -- , -- mi_training_elig_counts as ( -- select -- o.person_id, -- o.observation_period_start_date as start, -- o.observation_period_end_date as finish, -- greatest( -- date_diff(least ( -- o.observation_period_end_date, -- date '{training_end_date}' -- ), greatest( -- o.observation_period_start_date, -- date '{training_start_date}' -- ), DAY), 0 -- ) as num_days -- from {omop_cdm_schema}.observation_period o -- ), -- mi_trainingwindow_elig_perc as ( -- select -- person_id -- from -- mi_training_elig_counts -- group by -- person_id -- having -- sum(num_days) >= 0.95 * (date_diff(date '{training_end_date}', date '{training_start_date}', DAY)) -- ), -- mi_testperiod_elig_counts as ( -- select -- p.person_id, -- p.observation_period_start_date as start, -- p.observation_period_end_date as finish, -- greatest( -- date_diff(least ( -- p.observation_period_end_date, -- date_add(date_add( -- date '{training_end_date}', INTERVAL {gap}), INTERVAL {outcome_window}) -- ), greatest( -- p.observation_period_start_date, -- date '{training_end_date}' -- ), DAY), 0 -- ) as num_days -- from {omop_cdm_schema}.observation_period p -- inner join -- mi_trainingwindow_elig_perc tr -- on -- tr.person_id = p.person_id -- ), -- mi_testwindow_elig_perc as ( -- select -- person_id -- from -- mi_testperiod_elig_counts -- group by -- person_id -- having -- sum(num_days) >= 0.95 * (date_diff(date_add(date_add(date '{training_end_date}', INTERVAL {gap}), INTERVAL {outcome_window}), -- date '{training_end_date}', DAY)) -- ) select row_number() over (order by d.person_id) - 1 as example_id, d.person_id, date '{training_start_date}' as start_date, date '{training_end_date}' as end_date, cast(d.mi_datetime as DATE) as outcome_date, cast(coalesce( (cast(d.mi_datetime as DATE) between date_add(date '{training_end_date}', INTERVAL {gap}) and date_add(date_add(date '{training_end_date}', interval {gap}), interval {outcome_window}) ), false ) as INT64) as y from -- mi_testwindow_elig_perc te -- left join mi_dates d on d.person_id = te.person_id mi_dates d where ( d.mi_datetime is null or cast(d.mi_datetime as DATE) >= date_add(date '{training_end_date}', interval {gap}) )
-- MySQL dump 10.17 Distrib 10.3.22-MariaDB, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: demo -- ------------------------------------------------------ -- Server version 10.3.22-MariaDB-0+deb10u1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `yesterday` -- DROP TABLE IF EXISTS `yesterday`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `yesterday` ( `state` varchar(50) DEFAULT NULL, `confirmed` int(255) DEFAULT NULL, `deaths` int(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `yesterday` -- LOCK TABLES `yesterday` WRITE; /*!40000 ALTER TABLE `yesterday` DISABLE KEYS */; INSERT INTO `yesterday` VALUES ('Alabama',5832,202),('Alaska',337,9),('American Samoa',0,0),('Arizona',5772,249),('Arkansas',2606,45),('California',39620,1533),('Colorado',11278,552),('Connecticut',23100,1639),('Delaware',3308,92),('District of Columbia',3528,153),('Florida',30174,1012),('Georgia',22147,892),('Grand Princess',103,3),('Guam',139,5),('Hawaii',596,12),('Idaho',1836,54),('Illinois',36937,1688),('Indiana',13680,741),('Iowa',4445,107),('Kansas',2734,113),('Kentucky',3481,191),('Louisiana',25739,1599),('Maine',937,44),('Maryland',16616,798),('Massachusetts',46023,2360),('Michigan',35296,2977),('Minnesota',3185,221),('Mississippi',5434,209),('Missouri',6506,252),('Montana',444,14),('Nebraska',2202,47),('Nevada',4208,195),('New Hampshire',1670,51),('New Jersey',100025,5428),('New Mexico',2379,78),('New York',268581,21283),('North Carolina',8136,284),('North Dakota',748,15),('Northern Mariana Islands',14,2),('Ohio',14694,656),('Oklahoma',3017,179),('Oregon',2127,83),('Pennsylvania',38652,1724),('Puerto Rico',1416,69),('Rhode Island',6699,202),('South Carolina',4917,150),('South Dakota',1956,9),('Tennessee',8266,171),('Texas',22650,603),('TOTAL',894034,50919),('Utah',3612,35),('Vermont',827,44),('Virgin Islands',54,3),('Virginia',11594,410),('Washington',12753,711),('West Virginia',981,31),('Wisconsin',5052,258),('Wyoming',453,7); /*!40000 ALTER TABLE `yesterday` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2020-04-25 21:21:15
<gh_stars>1-10 DROP INDEX time_points_pushed_at_index ON time_points;
-- Your SQL goes here CREATE TABLE wbws_lists ( id SERIAL PRIMARY KEY, parent_id INTEGER , channel_id INTEGER , book_id INTEGER , paragraph INTEGER , title VARCHAR(255) NOT NULL, setting TEXT NOT NULL, content JSON NOT NULL, status TStatus NOT NULL, owner_id INTEGER NOT NULL, version INTEGER NOT NULL DEFAULT (1), deleted_at TIMESTAMP, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ); CREATE INDEX wbws_lists_title ON wbws_lists (title);
<gh_stars>1-10 -- ********************************************************************* -- Update Database Script -- ********************************************************************* -- Change Log: changelog.groovy -- Ran at: 9/21/12 3:44 PM -- Liquibase version: 2.0.1 -- ********************************************************************* -- Lock Database -- Changeset changelog_6.0.0.groovy::6.0.0-1::owf::(Checksum: 3:b7a17650e4cfde415fdbbcc4f2bd1317) -- Add universal_name to widgetdefinition ALTER TABLE widget_definition ADD universal_name VARCHAR2(255); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add universal_name to widgetdefinition', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-1', '2.0.1', '3:b7a17650e4cfde415fdbbcc4f2bd1317', 1); -- Changeset changelog_6.0.0.groovy::6.0.0-2::owf::(Checksum: 3:30ea4354058c7a09bfafb6acabfd1e33) -- Add layoutConfig to dashboard ALTER TABLE dashboard ADD layout_config CLOB; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add layoutConfig to dashboard', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-2', '2.0.1', '3:30ea4354058c7a09bfafb6acabfd1e33', 2); -- Changeset changelog_6.0.0.groovy::6.0.0-3::owf::(Checksum: 3:6ce1db42048bc63ece1be0c3f4669a52) -- Add descriptor_url to widgetdefinition ALTER TABLE widget_definition ADD descriptor_url VARCHAR2(2083); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add descriptor_url to widgetdefinition', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-3', '2.0.1', '3:6ce1db42048bc63ece1be0c3f4669a52', 3); -- Changeset changelog_6.0.0.groovy::6.0.0-4::owf::(Checksum: 3:4e940a0bdfea36b98c62330e4b373dd3) -- Remove EventingConnections table and association with DashboardWidgetState DROP TABLE eventing_connections; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Remove EventingConnections table and association with DashboardWidgetState', SYSTIMESTAMP, 'Drop Table', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-4', '2.0.1', '3:4e940a0bdfea36b98c62330e4b373dd3', 4); -- Changeset changelog_6.0.0.groovy::6.0.0-5::owf::(Checksum: 3:2c40b74eb7eb29a286ac641320a97b4d) -- Create intent table CREATE TABLE intent (id NUMBER(38,0) NOT NULL, version NUMBER(38,0) NOT NULL, action VARCHAR2(255) NOT NULL, CONSTRAINT intentPK PRIMARY KEY (id), UNIQUE (action)); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Create intent table', SYSTIMESTAMP, 'Create Table', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-5', '2.0.1', '3:2c40b74eb7eb29a286ac641320a97b4d', 5); -- Changeset changelog_6.0.0.groovy::6.0.0-6::owf::(Checksum: 3:008f636cf428abbd60459975d28e62a1) -- Create intent_data_type table CREATE TABLE intent_data_type (id NUMBER(38,0) NOT NULL, version NUMBER(38,0) NOT NULL, data_type VARCHAR2(255) NOT NULL, CONSTRAINT intent_data_typePK PRIMARY KEY (id)); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Create intent_data_type table', SYSTIMESTAMP, 'Create Table', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-6', '2.0.1', '3:008f636cf428abbd60459975d28e62a1', 6); -- Changeset changelog_6.0.0.groovy::6.0.0-7::owf::(Checksum: 3:b462f738ef9c30634a0a47d245d16a59) -- Create intent_data_types table CREATE TABLE intent_data_types (intent_data_type_id NUMBER(38,0) NOT NULL, intent_id NUMBER(38,0) NOT NULL); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Create intent_data_types table', SYSTIMESTAMP, 'Create Table', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-7', '2.0.1', '3:b462f738ef9c30634a0a47d245d16a59', 7); -- Changeset changelog_6.0.0.groovy::6.0.0-8::owf::(Checksum: 3:ee497899a41d5cc2798af5cfc277aecb) -- Add foreign constraint for intent_data_type_id and intent_id in intent_data_types table ALTER TABLE intent_data_types ADD CONSTRAINT FK8A59132FD46C6FAA FOREIGN KEY (intent_data_type_id) REFERENCES intent_data_type (id); ALTER TABLE intent_data_types ADD CONSTRAINT FK8A59D92FD46C6FAA FOREIGN KEY (intent_id) REFERENCES intent (id); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add foreign constraint for intent_data_type_id and intent_id in intent_data_types table', SYSTIMESTAMP, 'Add Foreign Key Constraint (x2)', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-8', '2.0.1', '3:ee497899a41d5cc2798af5cfc277aecb', 8); -- Changeset changelog_6.0.0.groovy::6.0.0-9::owf::(Checksum: 3:8dda2a300eac867527577e37dabf3187) -- Create widget_def_intent table CREATE TABLE widget_def_intent (id NUMBER(38,0) NOT NULL, version NUMBER(38,0) NOT NULL, receive NUMBER(1) NOT NULL, send NUMBER(1) NOT NULL, intent_id NUMBER(38,0) NOT NULL, widget_definition_id NUMBER(38,0) NOT NULL, CONSTRAINT widget_def_intentPK PRIMARY KEY (id)); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Create widget_def_intent table', SYSTIMESTAMP, 'Create Table', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-9', '2.0.1', '3:8dda2a300eac867527577e37dabf3187', 9); -- Changeset changelog_6.0.0.groovy::6.0.0-10::owf::(Checksum: 3:e5d364edc24ace7b9b89d3854bb70408) -- Add foreign constraint for widget_definition_id in widget_def_intent table ALTER TABLE widget_def_intent ADD CONSTRAINT FK8A59D92FD46C6FAB FOREIGN KEY (widget_definition_id) REFERENCES widget_definition (id); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add foreign constraint for widget_definition_id in widget_def_intent table', SYSTIMESTAMP, 'Add Foreign Key Constraint', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-10', '2.0.1', '3:e5d364edc24ace7b9b89d3854bb70408', 10); -- Changeset changelog_6.0.0.groovy::6.0.0-11::owf::(Checksum: 3:fcf69ebd060340afd1483c2f4588f456) -- Add foreign constraint for intent_id in widget_definition_intent table ALTER TABLE widget_def_intent ADD CONSTRAINT FK8A59D92FD46C6FAC FOREIGN KEY (intent_id) REFERENCES intent (id); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add foreign constraint for intent_id in widget_definition_intent table', SYSTIMESTAMP, 'Add Foreign Key Constraint', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-11', '2.0.1', '3:fcf69ebd060340afd1483c2f4588f456', 11); -- Changeset changelog_6.0.0.groovy::6.0.0-12::owf::(Checksum: 3:05c50cdf2e21818c6986e5ef2d8c9f50) -- Create widget_def_intent_data_types table CREATE TABLE widget_def_intent_data_types (intent_data_type_id NUMBER(38,0) NOT NULL, widget_definition_intent_id NUMBER(38,0) NOT NULL); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Create widget_def_intent_data_types table', SYSTIMESTAMP, 'Create Table', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-12', '2.0.1', '3:05c50cdf2e21818c6986e5ef2d8c9f50', 12); -- Changeset changelog_6.0.0.groovy::6.0.0-13::owf::(Checksum: 3:3250f92e3b85fec3db493d11b53445e2) -- Add foreign constraint for intent_data_type_id and widget_definition_intent_id in widget_def_intent_data_types table ALTER TABLE widget_def_intent_data_types ADD CONSTRAINT FK8A59D92FD41A6FAD FOREIGN KEY (intent_data_type_id) REFERENCES intent_data_type (id); ALTER TABLE widget_def_intent_data_types ADD CONSTRAINT FK8A59D92FD46C6FAD FOREIGN KEY (widget_definition_intent_id) REFERENCES widget_def_intent (id); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add foreign constraint for intent_data_type_id and widget_definition_intent_id in widget_def_intent_data_types table', SYSTIMESTAMP, 'Add Foreign Key Constraint (x2)', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-13', '2.0.1', '3:3250f92e3b85fec3db493d11b53445e2', 13); -- Changeset changelog_6.0.0.groovy::6.0.0-14::owf::(Checksum: 3:897a5aa2802104b8f90bcde737c47002) -- Add intentConfig column to dashboard table ALTER TABLE dashboard ADD intent_config CLOB; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add intentConfig column to dashboard table', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-14', '2.0.1', '3:897a5aa2802104b8f90bcde737c47002', 14); -- Changeset changelog_6.0.0.groovy::6.0.0-15::owf::(Checksum: 3:a58c7f9ab7dcc8c733d3a16c25adc558) -- Added description column into Widget Definition table ALTER TABLE widget_definition ADD description VARCHAR2(255) DEFAULT ''; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Added description column into Widget Definition table', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-15', '2.0.1', '3:a58c7f9ab7dcc8c733d3a16c25adc558', 15); -- Changeset changelog_6.0.0.groovy::6.0.0-16::owf::(Checksum: 3:9624d22cdbed36b5bbce5da92bdb1bfc) -- Add groupWidget property to personwidgetdefinition ALTER TABLE person_widget_definition ADD group_widget NUMBER(1) DEFAULT 0; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add groupWidget property to personwidgetdefinition', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-16', '2.0.1', '3:9624d22cdbed36b5bbce5da92bdb1bfc', 16); -- Changeset changelog_6.0.0.groovy::6.0.0-17::owf::(Checksum: 3:92a97333d2f7b5f17e0a541712847a54) -- Add favorite property to personwidgetdefinition ALTER TABLE person_widget_definition ADD favorite NUMBER(1) DEFAULT 0; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add favorite property to personwidgetdefinition', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-17', '2.0.1', '3:92a97333d2f7b5f17e0a541712847a54', 17); -- Changeset changelog_6.0.0.groovy::6.0.0-44::owf::(Checksum: 3:a0a7528d5494cd0f02b38b3f99b2cfe4) ALTER TABLE dashboard MODIFY layout NULL; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', '', SYSTIMESTAMP, 'Drop Not-Null Constraint', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-44', '2.0.1', '3:a0a7528d5494cd0f02b38b3f99b2cfe4', 18); -- Changeset changelog_6.0.0.groovy::6.0.0-53::owf::(Checksum: 3:9f398a44008d12aee688e347940b7adf) -- Add locked property to dashboard ALTER TABLE dashboard ADD locked NUMBER(1) DEFAULT 0; UPDATE dashboard SET locked = 0; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add locked property to dashboard', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-53', '2.0.1', '3:9f398a44008d12aee688e347940b7adf', 19); -- Changeset changelog_6.0.0.groovy::6.0.0-55::owf::(Checksum: 3:2aa790687f711ca1d930c1aa24fadd0c) -- Add display name field to pwd ALTER TABLE person_widget_definition ADD display_name VARCHAR2(256); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add display name field to pwd', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-55', '2.0.1', '3:2aa790687f711ca1d930c1aa24fadd0c', 20); -- Changeset changelog_6.0.0.groovy::6.0.0-56::owf::(Checksum: 3:ca86586d796b6e61467c6fc7cb0a787c) -- Add disabled field to pwd ALTER TABLE person_widget_definition ADD disabled NUMBER(1) DEFAULT 0; UPDATE person_widget_definition SET disabled = 0; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Add disabled field to pwd', SYSTIMESTAMP, 'Add Column', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-56', '2.0.1', '3:ca86586d796b6e61467c6fc7cb0a787c', 21); -- Changeset changelog_6.0.0.groovy::6.0.0-59::owf::(Checksum: 3:1636a76fed616e2cd4c43964cf1b4067) -- Convert OWF 5 style dashboards to OWF 6 style dashboards /* Create backups of the dashboard and dashboard widget state tables before the conversion. */ create table dashboard_backup as select * from dashboard; create table dashboard_widget_state_backup as select * from dashboard_widget_state; declare /* * ACCORDION TEMPLATE * Keys for replacement are ACCORDION_WIDGETS, TOP_RIGHT_WIDGET, BOTTOM_RIGHT_WIDGET */ accordion_template_old clob := '{"xtype":"container","cls":"hbox","layout":{"type":"hbox","align":"stretch"},"items":[{"xtype":"accordionpane","cls":"left","htmlText":"ACCORDION_WIDTHpx","items":[],"widgets":ACCORDION_WIDGETS,"paneType":"accordionpane","width":ACCORDION_WIDTH,"defaultSettings":{}},{"xtype":"container","cls":"vbox right","layout":{"type":"vbox","align":"stretch"},"items":[{"xtype":"tabbedpane","cls":"top","flex":1,"htmlText":"Variable","items":[],"widgets":TOP_RIGHT_WIDGET,"paneType":"tabbedpane","defaultSettings":{}},{"xtype":"tabbedpane","cls":"bottom","htmlText":"BOTTOM_WIDGET_HEIGHTpx","items":[],"paneType":"tabbedpane","height":BOTTOM_WIDGET_HEIGHT,"widgets":BOTTOM_RIGHT_WIDGET,"defaultSettings":{}}],"flex":1}],"flex":3}'; accordion_template clob := '{"xtype":"container","cls":"hbox","layout":{"type":"hbox","align":"stretch"},"items":[{"xtype":"accordionpane","cls":"left","htmlText":"ACCORDION_WIDTHpx","items":[],"widgets":ACCORDION_WIDGETS,"paneType":"accordionpane","defaultSettings":{},"width":ACCORDION_WIDTH},{"xtype":"dashboardsplitter"},{"xtype":"accordionpane","cls":"right","flex":1,"htmlText":"Variable","items":[],"paneType":"accordionpane","widgets":RIGHT_WIDGETS,"defaultSettings":{}}],"flex":3}'; accordion_widgets_key varchar2(40) := 'ACCORDION_WIDGETS'; accordion_right_widgets_key varchar2(40) := 'RIGHT_WIDGETS'; accordion_top_key varchar2(40) := 'TOP_RIGHT_WIDGET'; accordion_bottom_key varchar2(40) := 'BOTTOM_RIGHT_WIDGET'; accordion_width_key varchar2(40):= 'ACCORDION_WIDTH'; accordion_bottom_height_key varchar2(40) :='BOTTOM_WIDGET_HEIGHT'; /* * PORTAL TEMPLATE * Keys for replacement are LEFT_PORTAL_WIDGETS, MIDDLE_PORTAL_WIDGETS, RIGHT_PORTAL_WIDGETS * The old portals could be 1 2 or 3 columns, called here left, middle, right. */ portal_3_template clob := '{"xtype":"container","cls":"hbox","layout":{"type":"hbox","align":"stretch"},"items":[{"xtype":"portalpane","cls":"left","flex":0.33,"htmlText":"33%","items":[],"widgets":LEFT_PORTAL_WIDGETS,"paneType":"portalpane","defaultSettings":{}},{"xtype":"dashboardsplitter"},{"xtype":"container","cls":"hbox right","layout":{"type":"hbox","align":"stretch"},"items":[{"xtype":"portalpane","cls":"left","flex":1,"htmlText":"50%","items":[],"widgets":MIDDLE_PORTAL_WIDGETS,"paneType":"portalpane","defaultSettings":{}},{"xtype":"dashboardsplitter"},{"xtype":"portalpane","cls":"right","flex":1,"htmlText":"50%","items":[],"paneType":"portalpane","widgets":RIGHT_PORTAL_WIDGETS,"defaultSettings":{}}],"flex":0.67}],"flex":3}'; portal_1_template clob := '{"xtype":"portalpane","flex":1,"height":"100%","items":[],"paneType":"portalpane","widgets":LEFT_PORTAL_WIDGETS,"defaultSettings":{}}'; portal_2_template clob := '{"xtype":"container","cls":"hbox ","layout":{"type":"hbox","align":"stretch"},"items":[{"xtype":"portalpane","cls":"left","flex":1,"htmlText":"50%","items":[],"widgets":LEFT_PORTAL_WIDGETS,"paneType":"portalpane","defaultSettings":{}},{"xtype":"dashboardsplitter"},{"xtype":"portalpane","cls":"right","flex":1,"htmlText":"50%","items":[],"paneType":"portalpane","widgets":MIDDLE_PORTAL_WIDGETS,"defaultSettings":{}}],"flex":3}'; portal_left_key varchar2(40) := 'LEFT_PORTAL_WIDGETS'; portal_middle_key varchar2(40) := 'MIDDLE_PORTAL_WIDGETS'; portal_right_key varchar2(40) := 'RIGHT_PORTAL_WIDGETS'; /* * TABBED TEMPLATE * Keys for replacement are TAB_WIDGETS */ tabbed_template clob := '{"xtype":"tabbedpane","flex":1,"height":"100%","items":[],"paneType":"tabbedpane","widgets":TAB_WIDGETS,"defaultSettings":{}}'; tabbed_key varchar2(40) := 'TAB_WIDGETS'; /* * DESKTOP TEMPLATE * Keys for replacement are DESKTOP_WIDGETS */ desktop_template clob := '{"xtype":"desktoppane","flex":1,"height":"100%","items":[],"paneType":"desktoppane","widgets":DESKTOP_WIDGETS,"defaultSettings":DESKTOP_DEFAULTS}'; desktop_key varchar2(40) := 'DESKTOP_WIDGETS'; desktop_defaults_key varchar2(40) := 'DESKTOP_DEFAULTS'; /* owfGetGuid - Declare a function that generates appropriate system uuids. */ procedure owfGetGuid (guid out varchar2) is begin select substr(sys_guid(),1,8)||'-'||substr(sys_guid(),9,4)||'-'||substr(sys_guid(),13,4)||'-'||substr(sys_guid(),17,4)||'-'||substr(sys_guid(),20) into guid from dual; end; /* owfBuildExtParamString - a simple function for creating a json parameter string. */ procedure owfBuildExtParamString (param_name in varchar2, param_value in varchar2, param out varchar2) is begin param := '"' || param_name || '":"' || param_value || '"'; end; procedure owfGetWidgetDefinition( dashboard_id in number, dashboard_guid in varchar2, pane_guid in varchar2, widget_id in number, widget_guid in varchar2, unique_id in varchar2, wname in varchar2, active in number, x in number, y in number, z_index in number, maximized in number, minimized in number, pinned in number, collapsed in number, column_pos in number, button_id in varchar2, button_opened in number, region in varchar2, state_position in number, height in number, width in number, column_order in varchar2, config out clob) is singleton number(1,0); param varchar2(1024); begin /* insert into conversion_logs (msg) values (concat('Createing widget config for: ', unique_id)); */ /* Get the widget */ begin select w.singleton into singleton from widget_definition w where w.widget_guid = widget_guid; exception when TOO_MANY_ROWS THEN singleton := 0; when NO_DATA_FOUND THEN singleton := 0; end; config := '{'; if length(widget_guid) > 0 then owfBuildExtParamString('widgetGuid', widget_guid, param); config := config || param || ','; else config := config || '"widgetGuid":null,'; end if; owfBuildExtParamString('uniqueId', unique_id, param); config := config || param || ','; owfBuildExtParamString('dashboardGuid', dashboard_guid, param); config := config || param || ','; owfBuildExtParamString('paneGuid', pane_guid, param); config := config || param || ','; owfBuildExtParamString('name', wname, param); config := config || param || ','; if (active != 0) then config := config || '"active":true,'; else config := config || '"active":false,'; end if; param := '"x":' || x; config := config || param || ','; param := '"y":' || y; config := config || param || ','; param := '"zIndex":' || z_index; config := config || param || ','; if (maximized != 0) then config := config || '"maximized":true,'; else config := config || '"maximized":false,'; end if; if (minimized != 0) then config := config || '"minimized":true,'; else config := config || '"minimized":false,'; end if; if (pinned != 0) then config := config || '"pinned":true,'; else config := config || '"pinned":false,'; end if; config := config || param || ','; if (collapsed != 0) then config := config || '"collapsed":true,'; else config := config || '"collapsed":false,'; end if; param := '"columnPos":' || column_pos; config := config || param || ','; if button_id != null then owfBuildExtParamString('buttonId', button_id, param); config := config || param || ','; else config := concat(config, '"buttonId":"",'); end if; if (button_opened != 0) then config := config || '"buttonOpened":true,'; else config := config || '"buttonOpened":false,'; end if; owfBuildExtParamString('region', region, param); config := config || param || ','; param := '"statePosition":' || state_position; config := config || param || ','; if (singleton != 0) then config := config || '"singleton":true,'; else config := config || '"singleton":false,'; end if; param := '"height":' || height; config := config || param || ','; param := '"width":' || width; config := config || param || ','; owfBuildExtParamString('columnOrder', '', param); config := config || param || ','; config := substr(config, 1, length(config) - 1); config := config || '}'; end; /* Convert Desktop Dashboards */ procedure owfConvertDesktopDashboard(dashboard_id in number, dashboard_guid in varchar2, defaults in clob, config out clob) is vwidget_guid varchar2(255); vunique_id varchar2(255); vname varchar2(200); vactive number(1,0); vx number(10, 0); vy number(10, 0); vz_index number(10, 0); vmaximized number(1,0); vminimized number(1,0); vpinned number(1,0); vcollapsed number(1,0); vcolumn_pos number(10, 0); vbutton_id varchar2(255); vbutton_opened number(1,0); vregion varchar2(15); vstate_position number(10,0); vsingleton number(1,0); vheight number(10, 0); vwidth number(10, 0); vcolumn_order varchar2(15); vwidget_id number(19, 0); vwidget_unique_id varchar2(255); widget_config varchar2(4096); desktop_widget_str clob; desktop_pane_guid varchar2(255); cursor widget_cursor(cursor_dash_id number) is select id, unique_id, region, widget_guid, name, active, x, y, z_index, maximized, minimized, pinned, collapsed, column_pos, button_id, button_opened, state_position, height, width from dashboard_widget_state dws where dws.dashboard_id = cursor_dash_id order by button_id, state_position; begin /* Start the config string. */ config := desktop_template; desktop_widget_str := '['; widget_config := ''; /* Get a uuid for the desktop pane. */ owfGetGuid(desktop_pane_guid); /* Open the widgets cursor. */ /*insert into conversion_logs (msg) values (concat('Opening widget cursor for dashboard ', dashboard_id)); */ open widget_cursor(dashboard_id); loop fetch widget_cursor into vwidget_id, vunique_id, vregion, vwidget_guid, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vstate_position, vheight, vwidth; exit when widget_cursor%NOTFOUND; /*insert into conversion_logs (msg) values (concat('Adding desktop widget ', vunique_id));*/ owfGetWidgetDefinition(dashboard_id, dashboard_guid, desktop_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); desktop_widget_str := desktop_widget_str || widget_config || ','; end loop; close widget_cursor; /* Build the final config text block. */ if length(desktop_widget_str) > 1 then /* Chop off the last , and close out the config object. */ desktop_widget_str := substr(desktop_widget_str, 1, length(desktop_widget_str) - 1) || ']'; else desktop_widget_str := desktop_widget_str || ']'; end if; config := replace(config, desktop_key, desktop_widget_str); if defaults is null then config := replace(config, desktop_defaults_key, '{}'); else config := replace(config, desktop_defaults_key, defaults); end if; end; /* Convert Tabbed Dashboards */ procedure owfConvertTabbedDashboard(dashboard_id in number, dashboard_guid in varchar2, config out clob) is vwidget_guid varchar2(255); vunique_id varchar2(255); vname varchar2(200); vactive number(1,0); vx number(10, 0); vy number(10, 0); vz_index number(10, 0); vmaximized number(1,0); vminimized number(1,0); vpinned number(1,0); vcollapsed number(1,0); vcolumn_pos number(10, 0); vbutton_id varchar2(255); vbutton_opened number(1,0); vregion varchar2(15); vstate_position number(10,0); vsingleton number(1,0); vheight number(10, 0); vwidth number(10, 0); vcolumn_order varchar2(15); vwidget_id number(19, 0); vwidget_unique_id varchar2(255); widget_config varchar2(4096); tab_widget_str clob; tab_pane_guid varchar2(255); cursor widget_cursor(cursor_dash_id number) is select id, unique_id, region, widget_guid, name, active, x, y, z_index, maximized, minimized, pinned, collapsed, column_pos, button_id, button_opened, state_position, height, width from dashboard_widget_state where dashboard_widget_state.dashboard_id = cursor_dash_id order by state_position; begin /* Start the config string. */ config := tabbed_template; tab_widget_str := '['; widget_config := ''; /* Get a uuid for the desktop pane. */ owfGetGuid(tab_pane_guid); /* Open the widgets cursor. */ /*insert into conversion_logs (msg) values (concat('Opening widget cursor for dashboard ', dashboard_id)); */ open widget_cursor(dashboard_id); loop fetch widget_cursor into vwidget_id, vunique_id, vregion, vwidget_guid, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vstate_position, vheight, vwidth; exit when widget_cursor%NOTFOUND; /*insert into conversion_logs (msg) values (concat('Adding desktop widget ', vunique_id));*/ owfGetWidgetDefinition(dashboard_id, dashboard_guid, tab_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, 0, 0, 0, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); tab_widget_str := tab_widget_str || widget_config || ','; end loop; close widget_cursor; /* Build the final config text block. */ if length(tab_widget_str) > 1 then /* Chop off the last , and close out the config object. */ tab_widget_str := substr(tab_widget_str, 1, length(tab_widget_str) - 1) || ']'; else tab_widget_str := tab_widget_str || ']'; end if; config := replace(config, tabbed_key, tab_widget_str); /* insert into conversion_logs (msg) values ('Generated a desktop dashboard config. '); */ end; /* Convert Portal Dashboards */ procedure owfConvertPortalDashboard(dashboard_id in number, dashboard_guid in varchar2, config out clob) is vwidget_guid varchar2(255); vunique_id varchar2(255); vname varchar2(200); vactive number(1,0); vx number(10, 0); vy number(10, 0); vz_index number(10, 0); vmaximized number(1,0); vminimized number(1,0); vpinned number(1,0); vcollapsed number(1,0); vcolumn_pos number(10, 0); vbutton_id varchar2(255); vbutton_opened number(1,0); vregion varchar2(15); vstate_position number(10,0); vsingleton number(1,0); vheight number(10, 0); vwidth number(10, 0); vcolumn_order varchar2(15); vwidget_id number(19, 0); vwidget_unique_id varchar2(255); widget_config varchar2(4096); portal_widget_str clob; left_widget_str clob; middle_widget_str clob; right_widget_str clob; left_pane_guid varchar2(255); middle_pane_guid varchar2(255); right_pane_guid varchar2(255); max_column number := 0; temp_id number := 0; cursor widget_cursor(cursor_dash_id number) is select id, unique_id, region, widget_guid, name, active, x, y, z_index, maximized, minimized, pinned, collapsed, column_pos, button_id, button_opened, state_position, height, width from dashboard_widget_state where dashboard_widget_state.dashboard_id = cursor_dash_id order by state_position; begin /* Start the config string. */ portal_widget_str := '['; widget_config := ''; left_widget_str := '['; middle_widget_str := '['; right_widget_str := '['; widget_config := ''; /* Get a uuid for the desktop pane. */ owfGetGuid(left_pane_guid); owfGetGuid(middle_pane_guid); owfGetGuid(right_pane_guid); /* Get the number of columns in this portal dashboard. */ begin temp_id := dashboard_id; select max(w.column_pos) into max_column from dashboard_widget_state w where w.dashboard_id = temp_id; exception when TOO_MANY_ROWS THEN max_column := 0; when NO_DATA_FOUND THEN max_column := 0; end; /* Determine which of the new portal templates to use. Note: column values are 0-based.*/ config := portal_1_template; if max_column = 1 then config := portal_2_template; elsif max_column = 2 then config := portal_3_template; end if; /* Open the widgets cursor. */ open widget_cursor(dashboard_id); loop fetch widget_cursor into vwidget_id, vunique_id, vregion, vwidget_guid, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vstate_position, vheight, vwidth; exit when widget_cursor%NOTFOUND; /* Insert widgets into the appropriate column. Any widgets not in * a second or third column default to the first column; this includes * background widgets. */ if vcolumn_pos = '1' then owfGetWidgetDefinition(dashboard_id, dashboard_guid, middle_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); middle_widget_str := middle_widget_str || widget_config || ','; elsif vcolumn_pos = '2' then owfGetWidgetDefinition(dashboard_id, dashboard_guid, right_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); right_widget_str := right_widget_str || widget_config || ','; else owfGetWidgetDefinition(dashboard_id, dashboard_guid, left_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); left_widget_str := left_widget_str || widget_config || ','; end if; end loop; close widget_cursor; /* Build the final config text block. */ if length(left_widget_str) > 1 then /* Chop off the last , and close out the config object. */ left_widget_str := substr(left_widget_str, 1, length(left_widget_str) - 1) || ']'; else left_widget_str := left_widget_str || ']'; end if; if length(middle_widget_str) > 1 then /* Chop off the last , and close out the config object. */ middle_widget_str := substr(middle_widget_str, 1, length(middle_widget_str) - 1) || ']'; else middle_widget_str := middle_widget_str || ']'; end if; if length(right_widget_str) > 1 then /* Chop off the last , and close out the config object. */ right_widget_str := substr(right_widget_str, 1, length(right_widget_str) - 1) || ']'; else right_widget_str := right_widget_str || ']'; end if; config := replace(config, portal_left_key, left_widget_str); if max_column > 0 then config := replace(config, portal_middle_key, middle_widget_str); end if; if max_column > 1 then config := replace(config, portal_right_key, right_widget_str); end if; end; /* Convert Accordion Dashboards */ procedure owfConvertAccordionDashboard(dashboard_id in number, dashboard_guid in varchar2, config out clob) is vwidget_guid varchar2(255); vunique_id varchar2(255); vname varchar2(200); vactive number(1,0); vx number(10, 0); vy number(10, 0); vz_index number(10, 0); vmaximized number(1,0); vminimized number(1,0); vpinned number(1,0); vcollapsed number(1,0); vcolumn_pos number(10, 0); vbutton_id varchar2(255); vbutton_opened number(1,0); vregion varchar2(15); vstate_position number(10,0); vsingleton number(1,0); vheight number(10, 0); vwidth number(10, 0); vcolumn_order varchar2(15); vwidget_id number(19, 0); vwidget_unique_id varchar2(255); widget_config varchar2(4096); accordion_widget_str clob; right_widget_str clob; top_widget_str clob; bottom_widget_str clob; accordion_pane_guid varchar2(255); right_pane_guid varchar2(255); top_pane_guid varchar2(255); bottom_pane_guid varchar2(255); bottom_widget_height number(10,0) := 125; accordion_width number(10,0) := 225; cursor widget_cursor(cursor_dash_id number) is select id, unique_id, region, widget_guid, name, active, x, y, z_index, maximized, minimized, pinned, collapsed, column_pos, button_id, button_opened, state_position, height, width from dashboard_widget_state where dashboard_widget_state.dashboard_id = cursor_dash_id order by state_position; begin /* Start the config string. */ widget_config := ''; config := accordion_template; accordion_widget_str := '['; right_widget_str := '['; top_widget_str := ''; bottom_widget_str := ''; /* Get a uuid for the desktop pane. */ owfGetGuid(accordion_pane_guid); owfGetGuid(right_pane_guid); /* Open the widgets cursor. */ open widget_cursor(dashboard_id); loop fetch widget_cursor into vwidget_id, vunique_id, vregion, vwidget_guid, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vstate_position, vheight, vwidth; exit when widget_cursor%NOTFOUND; if vregion = 'center' then /*insert into conversion_logs (msg) values (concat('Adding middle portal widget ', vunique_id));*/ owfGetWidgetDefinition(dashboard_id, dashboard_guid, top_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); top_widget_str := widget_config; elsif vregion = 'south' then owfGetWidgetDefinition(dashboard_id, dashboard_guid, bottom_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); bottom_widget_height := vheight; bottom_widget_str := widget_config; else /* Throw the widget in the accordion pane in the new format. This includes background widgets. * that may not have the 'accordion' region set. */ owfGetWidgetDefinition(dashboard_id, dashboard_guid, accordion_pane_guid, vwidget_id, vwidget_guid, vunique_id, vname, vactive, vx, vy, vz_index, vmaximized, vminimized, vpinned, vcollapsed, vcolumn_pos, vbutton_id, vbutton_opened, vregion, vstate_position, vheight, vwidth, vcolumn_order, widget_config); accordion_width := vwidth; accordion_widget_str := accordion_widget_str || widget_config || ','; end if; end loop; close widget_cursor; /* Build the final config text block. */ if length(accordion_widget_str) > 1 then /* Chop off the last , and close out the config object. */ accordion_widget_str := substr(accordion_widget_str, 1, length(accordion_widget_str) - 1) || ']'; else accordion_widget_str := accordion_widget_str || ']'; end if; if length(top_widget_str) > 0 then right_widget_str := right_widget_str || top_widget_str || ','; end if; if length(bottom_widget_str) > 0 then right_widget_str := right_widget_str || bottom_widget_str || ','; end if; if length(right_widget_str) > 1 then /* Chop off the last ',' and close out the config object. */ right_widget_str := substr(right_widget_str, 1, length(right_widget_str) - 1) || ']'; else right_widget_str := right_widget_str || ']'; end if; config := replace(config, accordion_widgets_key, accordion_widget_str); config := replace(config, accordion_widgets_key, accordion_widget_str); config := replace(config, accordion_right_widgets_key, right_widget_str); config := replace(config, accordion_width_key, accordion_width); end; /* * PROCEDURE: convertDashboards() * This procedure reads OWF 5 data values from the dashboard and dashboar_widget_state tables and * attempts to convert OWF 5 dashboards to OWF 6 dashboards. It does this by looping over all the * dashboard records, pulling their OWF 5 based values and generating an EXT JS Config object that * will be placed in the Dashboard.layout_config field introduced in OWF 6. */ procedure owfConvertDashboards is current_dash_id number(19, 0); current_dash_guid varchar2(255); current_layout varchar2(9); current_defaults clob; current_config clob; cursor dashboard_cursor is select id, guid, layout, default_settings from dashboard; begin /*insert into conversion_logs (msg) values ('Opening dashboard cursor');*/ /* Open the dashboard cursor. */ open dashboard_cursor; loop fetch dashboard_cursor into current_dash_id, current_dash_guid, current_layout, current_defaults; exit when dashboard_cursor%NOTFOUND; if current_layout = 'accordion' then owfConvertAccordionDashboard(current_dash_id, current_dash_guid, current_config); update dashboard set dashboard.layout_config = current_config where dashboard.id = current_dash_id; elsif current_layout = 'desktop' then owfConvertDesktopDashboard(current_dash_id, current_dash_guid, current_defaults, current_config); update dashboard set dashboard.layout_config = current_config where dashboard.id = current_dash_id; elsif current_layout = 'portal' then owfConvertPortalDashboard(current_dash_id, current_dash_guid, current_config); update dashboard set dashboard.layout_config = current_config where dashboard.id = current_dash_id; else /* Fall-through case. Convert any tabbed dashboards and any unknown custom types to tabbed. */ owfConvertTabbedDashboard(current_dash_id, current_dash_guid, current_config); update dashboard set dashboard.layout_config = current_config where dashboard.id = current_dash_id; end if; end loop; close dashboard_cursor; end; begin owfConvertDashboards(); end; / /* Ending with a basic sql command so liquibase doesn't add trailing semi-colons. */ select 'Conversion Completed' from dual; INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'Convert OWF 5 style dashboards to OWF 6 style dashboards', SYSTIMESTAMP, 'SQL From File', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-59', '2.0.1', '3:1636a76fed616e2cd4c43964cf1b4067', 22); -- Changeset changelog_6.0.0.groovy::6.0.0-63::owf::(Checksum: 3:ac6187e64b8b8b98e880da00e25f9f77) -- upgrade any pwds that were pending approval to use the disabled column update person_widget_definition pwd set pwd.disabled = 1 where pwd.id in ( select pwd.id from person_widget_definition pwd, tag_links taglinks where pwd.id = taglinks.tag_ref and taglinks.type = 'personWidgetDefinition' and taglinks.editable = 0 ); INSERT INTO DATABASECHANGELOG (AUTHOR, COMMENTS, DATEEXECUTED, DESCRIPTION, EXECTYPE, FILENAME, ID, LIQUIBASE, MD5SUM, ORDEREXECUTED) VALUES ('owf', 'upgrade any pwds that were pending approval to use the disabled column', SYSTIMESTAMP, 'Custom SQL', 'EXECUTED', 'changelog_6.0.0.groovy', '6.0.0-63', '2.0.1', '3:ac6187e64b8b8b98e880da00e25f9f77', 23); -- Release Database Lock
/** * <feature scope="SanteDB.Persistence.Data.ADO" id="20201214-01" name="Update:20201214-01" applyRange="1.1.0.0-1.2.0.0" invariantName="FirebirdSQL"> * <summary>Update: Add PURGED status key</summary> * <remarks>Adds status key PURGED to the database</remarks> * <isInstalled>select ck_patch('20201214-01') from rdb$database</isInstalled> * </feature> */ INSERT INTO CD_TBL (CD_ID, IS_SYS) VALUES (char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD'), true);--#! INSERT INTO CD_VRSN_TBL (CD_VRSN_ID, CD_ID, STS_CD_ID, CLS_ID, CRT_PROV_ID, CRT_UTC, MNEMONIC) VALUES (gen_uuid(), char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD'), char_to_uuid('C8064CBD-FA06-4530-B430-1A52F1530C27'), char_to_uuid('54B93182-FC19-47A2-82C6-089FD70A4F45'), char_to_uuid('fadca076-3690-4a6e-af9e-f1cd68e8c7e8'), CURRENT_TIMESTAMP, 'PURGED');--#! INSERT INTO CD_NAME_TBL (NAME_ID, CD_ID, EFFT_VRSN_SEQ_ID, LANG_CS, VAL) SELECT gen_uuid(), char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD'), vrsn_seq_id, 'EN', 'Purged' FROM CD_VRSN_TBL WHERE CD_ID = char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD');--#! INSERT INTO CD_SET_MEM_ASSOC_TBL (CD_ID, SET_ID) VALUES (char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD'), char_to_uuid('93A48F6A-6808-4C70-83A2-D02178C2A883'));--#! INSERT INTO CD_SET_MEM_ASSOC_TBL (CD_ID, SET_ID) VALUES (char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD'), char_to_uuid('AAE906AA-27B3-4CDB-AFF1-F08B0FD31E59'));--#! INSERT INTO CD_SET_MEM_ASSOC_TBL (CD_ID, SET_ID) VALUES (char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD'), char_to_uuid('C7578340-A8FF-4D7D-8105-581016324E68'));--#! DROP TRIGGER TG_CD_VRSN_TBL_SEQ;--#! CREATE TRIGGER TG_CD_VRSN_TBL_SEQ FOR CD_VRSN_TBL ACTIVE BEFORE INSERT POSITION 0 AS BEGIN IF (NEW.VRSN_SEQ_ID IS NULL) THEN NEW.VRSN_SEQ_ID = NEXT VALUE FOR CD_VRSN_SEQ; END;--#! DROP TRIGGER TG_PHON_VAL_TBL_SEQ;--#! CREATE TRIGGER TG_PHON_VAL_TBL_SEQ FOR PHON_VAL_TBL ACTIVE BEFORE INSERT POSITION 0 AS BEGIN IF (NEW.VAL_SEQ_ID IS NULL) THEN NEW.VAL_SEQ_ID = NEXT VALUE FOR PHON_VAL_SEQ; END;--#! DROP TRIGGER TG_ACT_VRSN_TBL_SEQ;--#! CREATE TRIGGER TG_ACT_VRSN_TBL_SEQ FOR ACT_VRSN_TBL ACTIVE BEFORE INSERT POSITION 0 AS BEGIN IF (NEW.VRSN_SEQ_ID IS NULL) THEN NEW.VRSN_SEQ_ID = NEXT VALUE FOR ACT_VRSN_SEQ; END;--#! DROP TRIGGER TG_ENT_VRSN_TBL_SEQ;--#! CREATE TRIGGER TG_ENT_VRSN_TBL_SEQ FOR ENT_VRSN_TBL ACTIVE BEFORE INSERT POSITION 0 AS BEGIN IF (NEW.VRSN_SEQ_ID IS NULL) THEN NEW.VRSN_SEQ_ID = NEXT VALUE FOR ENT_VRSN_SEQ; END;--#! ALTER TABLE pat_tbl ADD vip_sts_cd_id UUID;--#! ALTER TABLE pat_tbl ADD CONSTRAINT fk_vip_sts_cd_cd_id FOREIGN KEY (vip_sts_cd_id) REFERENCES CD_TBL (CD_ID);--#! ALTER TABLE pat_tbl ADD CONSTRAINT ck_vip_sts_cd CHECK (vip_sts_cd_id IS NULL OR IS_CD_SET_MEM(vip_sts_cd_id, 'VipStatus') OR IS_CD_SET_MEM(vip_sts_cd_id, 'NullReason'));--#! ALTER TABLE psn_tbl ADD occ_cd_id UUID;--#! ALTER TABLE psn_tbl ADD CONSTRAINT fk_occ_cd_cd_id FOREIGN KEY (occ_cd_id) REFERENCES CD_TBL (CD_ID);--#! ALTER TABLE psn_tbl ADD CONSTRAINT ck_occ_cd CHECK (occ_cd_id IS NULL OR IS_CD_SET_MEM(occ_cd_id, 'OccupationType') OR IS_CD_SET_MEM(occ_cd_id, 'NullReason'));--#! ALTER TABLE ACT_VRSN_TBL DROP CONSTRAINT ck_act_vrsn_act_utc;--#! ALTER TABLE ACT_VRSN_TBL ADD CONSTRAINT ck_act_vrsn_act_utc CHECK (sts_cd_id = char_to_uuid('39995C08-0A5C-4549-8BA7-D187F9B3C4FD') OR ((act_utc IS NOT NULL) OR (act_start_utc IS NOT NULL) OR (act_stop_utc IS NOT NULL)));--#! SELECT REG_PATCH('20201214-01') FROM RDB$DATABASE;
<filename>oauth2-server/src/main/resources/data.sql INSERT INTO `oauth_client_details` VALUES ('client1', 'resources1', 'secret', 'read,write', 'authorization_code', 'http://localhost:8080/client/test', 'ROLE_CLIENT', NULL, NULL, NULL, NULL); INSERT INTO `oauth_client_details` VALUES ('client2', 'resources2', 'secret', 'read', 'authorization_code', 'http://localhost:8080/test/test', 'ROLE_CLIENT', NULL, NULL, NULL, NULL);
{% macro dbt__incremental_delete(schema, model) -%} {%- set unique_key = model['config'].get('unique_key') -%} {%- set identifier = model['name'] -%} delete from "{{ schema }}"."{{ identifier }}" where ({{ unique_key }}) in ( select ({{ unique_key }}) from "{{ identifier }}__dbt_incremental_tmp" ); {%- endmacro %} {% macro dbt__create_incremental(schema, model, dist, sort, sql, adapter) -%} {%- set identifier = model['name'] -%} {%- set sql_where = model['config'].get('sql_where', 'null') -%} {%- set unique_key = model['config'].get('unique_key', 'null') -%} {% if not adapter.already_exists(schema, identifier) -%} create table "{{ schema }}"."{{ identifier }}" {{ dist }} {{ sort }} as ( {{ sql }} ); {%- else -%} create temporary table "{{ identifier }}__dbt_incremental_tmp" as ( with dbt_incr_sbq as ( {{ sql }} ) select * from dbt_incr_sbq where ({{ sql_where }}) or ({{ sql_where }}) is null ); -- DBT_OPERATION { function: expand_column_types_if_needed, args: { temp_table: "{{ identifier }}__dbt_incremental_tmp", to_schema: "{{ schema }}", to_table: "{{ identifier }}"} } {% set dest_columns = adapter.get_columns_in_table(schema, identifier) %} {% set dest_cols_csv = dest_columns | map(attribute='quoted') | join(', ') %} {% if model.get('config', {}).get('unique_key') is not none -%} {{ dbt__incremental_delete(schema, model) }} {%- endif %} insert into "{{ schema }}"."{{ identifier }}" ({{ dest_cols_csv }}) ( select {{ dest_cols_csv }} from "{{ identifier }}__dbt_incremental_tmp" ); {%- endif %} {%- endmacro %}
<filename>setup/000-imbo.sql<gh_stars>0 CREATE TABLE IF NOT EXISTS public.imageinfo ( "id" serial NOT NULL, "user" character varying COLLATE pg_catalog."default" NOT NULL, "imageIdentifier" character varying COLLATE pg_catalog."default" NOT NULL, "size" integer NOT NULL, "extension" character varying COLLATE pg_catalog."default" NOT NULL, "mime" character varying COLLATE pg_catalog."default" NOT NULL, "added" bigint NOT NULL, "updated" bigint NOT NULL, "width" integer NOT NULL, "height" integer NOT NULL, "checksum" character varying(32) COLLATE pg_catalog."default" NOT NULL, "originalChecksum" character varying(32) COLLATE pg_catalog."default" NOT NULL, "metadata" json, CONSTRAINT "imageinfo_pkey" PRIMARY KEY ("id"), CONSTRAINT "imageinfo_user_imageIdentifier_key" UNIQUE ("user", "imageIdentifier") ) TABLESPACE pg_default; CREATE TABLE IF NOT EXISTS public.imagevariations ( "user" character varying COLLATE pg_catalog."default" NOT NULL, "imageIdentifier" character varying COLLATE pg_catalog."default" NOT NULL, "width" integer NOT NULL, "height" integer NOT NULL, "added" bigint NOT NULL, CONSTRAINT "imagevariations_pkey" PRIMARY KEY ("user", "imageIdentifier", "width") ) TABLESPACE pg_default; CREATE TABLE IF NOT EXISTS public.shorturl ( "shortUrlId" character varying(7) COLLATE pg_catalog."default" NOT NULL, "user" character varying COLLATE pg_catalog."default" NOT NULL, "imageIdentifier" character varying COLLATE pg_catalog."default" NOT NULL, "extension" character varying COLLATE pg_catalog."default", "query" text COLLATE pg_catalog."default" NOT NULL, CONSTRAINT "shorturl_pkey" PRIMARY KEY ("shortUrlId") ) TABLESPACE pg_default; CREATE INDEX IF NOT EXISTS "params" ON public.shorturl USING btree ( "user" COLLATE pg_catalog."default" ASC NULLS LAST, "imageIdentifier" COLLATE pg_catalog."default" ASC NULLS LAST, "extension" COLLATE pg_catalog."default" ASC NULLS LAST, "query" COLLATE pg_catalog."default" ASC NULLS LAST ) TABLESPACE pg_default;
<filename>dht.sql -- MySQL dump 10.13 Distrib 5.7.25, for Linux (x86_64) -- -- Host: 192.168.1.24 Database: dht -- ------------------------------------------------------ -- Server version 5.5.5-10.1.37-MariaDB-0+deb9u1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `data` -- DROP TABLE IF EXISTS `data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `data` ( `record_id` int(11) NOT NULL AUTO_INCREMENT, `humidity` int(11) NOT NULL, `temperature` int(11) NOT NULL, `datetime` varchar(100) NOT NULL, PRIMARY KEY (`record_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2973 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `data` -- LOCK TABLES `data` WRITE; /*!40000 ALTER TABLE `data` DISABLE KEYS */; INSERT INTO `data` VALUES (2930,46,24,'2019-04-02 00:00:06'),(2931,46,24,'2019-04-02 00:30:05'),(2932,46,24,'2019-04-02 01:00:05'),(2933,47,24,'2019-04-02 01:30:06'),(2934,46,24,'2019-04-02 02:00:06'),(2935,47,24,'2019-04-02 02:30:05'),(2936,46,24,'2019-04-02 03:00:03'),(2937,46,24,'2019-04-02 03:30:06'),(2938,23,12,'2019-04-02 04:00:03'),(2939,46,24,'2019-04-02 04:30:05'),(2940,46,24,'2019-04-02 05:00:06'),(2941,46,24,'2019-04-02 05:30:03'),(2942,46,23,'2019-04-02 06:00:05'),(2943,46,23,'2019-04-02 06:30:06'),(2944,46,23,'2019-04-02 07:00:03'),(2945,46,23,'2019-04-02 07:30:03'),(2946,46,23,'2019-04-02 08:00:06'),(2947,46,23,'2019-04-02 08:30:03'),(2948,46,23,'2019-04-02 09:00:03'),(2949,46,23,'2019-04-02 09:30:06'),(2950,47,23,'2019-04-02 10:00:06'),(2951,47,23,'2019-04-02 10:30:06'),(2952,47,24,'2019-04-02 11:00:06'),(2953,48,24,'2019-04-02 11:30:08'),(2954,48,24,'2019-04-02 12:00:03'),(2955,54,24,'2019-04-02 12:30:03'),(2956,42,24,'2019-04-02 13:00:05'),(2957,42,24,'2019-04-02 13:30:03'),(2958,42,25,'2019-04-02 14:00:06'),(2959,42,25,'2019-04-02 14:30:03'),(2960,42,25,'2019-04-02 15:00:03'),(2961,41,26,'2019-04-02 15:30:05'),(2962,41,26,'2019-04-02 16:00:05'),(2963,41,26,'2019-04-02 16:30:03'),(2964,40,27,'2019-04-02 17:00:06'),(2965,39,27,'2019-04-02 17:30:06'),(2966,39,28,'2019-04-02 18:00:05'),(2967,39,28,'2019-04-02 18:30:03'),(2968,39,28,'2019-04-02 19:00:06'),(2969,39,28,'2019-04-02 19:30:05'),(2970,37,28,'2019-04-02 20:00:06'),(2971,37,28,'2019-04-02 20:30:03'),(2972,36,28,'2019-04-02 21:00:03'); /*!40000 ALTER TABLE `data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `data_history` -- DROP TABLE IF EXISTS `data_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `data_history` ( `record_id` int(11) NOT NULL AUTO_INCREMENT, `humidity` int(11) NOT NULL, `temperature` int(11) NOT NULL, `datetime` varchar(45) NOT NULL, PRIMARY KEY (`record_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2930 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `data_history` -- LOCK TABLES `data_history` WRITE; /*!40000 ALTER TABLE `data_history` DISABLE KEYS */; INSERT INTO `data_history` VALUES (1,20,30,'2019-01-01 23:06:01'),(2,20,30,'2019-01-01 23:06:11'),(76,36,30,'2019-01-01 23:19:16'),(77,36,30,'2019-01-01 23:30:03'),(78,36,30,'2019-01-01 23:45:03'),(79,36,29,'2019-01-02 00:00:03'),(80,36,29,'2019-01-02 00:15:03'),(81,36,29,'2019-01-02 00:30:03'),(82,36,29,'2019-01-02 00:45:03'),(83,36,29,'2019-01-02 01:00:03'),(84,36,29,'2019-01-02 01:15:03'),(85,36,29,'2019-01-02 01:30:03'),(86,36,29,'2019-01-02 01:45:03'),(87,36,29,'2019-01-02 02:00:05'),(88,36,29,'2019-01-02 02:15:06'),(89,35,29,'2019-01-02 02:30:03'),(90,36,29,'2019-01-02 02:45:03'),(91,36,29,'2019-01-02 03:00:03'),(92,36,29,'2019-01-02 03:15:03'),(93,37,31,'2019-01-02 03:30:03'),(94,38,30,'2019-01-02 03:45:03'),(95,38,30,'2019-01-02 04:00:03'),(96,38,30,'2019-01-02 04:15:03'),(97,37,30,'2019-01-02 04:30:03'),(98,38,30,'2019-01-02 04:45:03'),(99,38,30,'2019-01-02 05:00:03'),(100,38,30,'2019-01-02 05:15:03'),(101,38,30,'2019-01-02 05:30:03'),(102,38,30,'2019-01-02 05:45:03'),(103,37,30,'2019-01-02 06:00:03'),(104,37,30,'2019-01-02 06:15:03'),(105,37,30,'2019-01-02 06:30:03'),(106,38,30,'2019-01-02 06:45:03'),(107,38,30,'2019-01-02 07:00:03'),(108,37,30,'2019-01-02 07:15:03'),(109,37,30,'2019-01-02 07:30:03'),(110,37,30,'2019-01-02 07:45:03'),(111,37,30,'2019-01-02 08:00:03'),(112,37,30,'2019-01-02 08:15:03'),(113,38,30,'2019-01-02 08:30:03'),(114,38,30,'2019-01-02 08:45:06'),(115,38,30,'2019-01-02 09:00:03'),(116,37,30,'2019-01-02 09:15:03'),(117,38,30,'2019-01-02 09:30:03'),(118,38,30,'2019-01-02 09:45:03'),(119,38,30,'2019-01-02 10:00:03'),(120,38,30,'2019-01-02 10:15:03'),(121,38,30,'2019-01-02 10:30:03'),(122,38,30,'2019-01-02 10:45:03'),(123,39,30,'2019-01-02 11:00:03'),(124,38,30,'2019-01-02 11:15:03'),(125,38,31,'2019-01-02 11:30:03'),(126,37,29,'2019-01-02 11:45:03'),(127,37,29,'2019-01-02 12:00:03'),(128,37,29,'2019-01-02 12:15:03'),(129,37,29,'2019-01-02 12:30:03'),(130,38,29,'2019-01-02 12:42:29'),(131,38,29,'2019-01-02 12:45:15'),(132,38,29,'2019-01-02 13:00:03'),(133,40,29,'2019-01-02 13:15:03'),(134,40,29,'2019-01-02 13:30:03'),(135,40,29,'2019-01-02 13:45:03'),(136,42,30,'2019-01-02 14:00:03'),(137,41,30,'2019-01-02 14:15:03'),(138,55,31,'2019-01-02 14:30:18'),(139,37,31,'2019-01-02 14:45:03'),(140,41,30,'2019-01-02 15:00:03'),(141,41,30,'2019-01-02 15:15:03'),(142,41,30,'2019-01-02 15:30:03'),(143,41,30,'2019-01-02 15:45:03'),(144,41,30,'2019-01-02 16:00:03'),(145,41,30,'2019-01-02 16:15:03'),(146,148,15,'2019-01-02 16:30:03'),(147,41,30,'2019-01-02 16:45:03'),(148,41,30,'2019-01-02 17:00:03'),(149,40,30,'2019-01-02 17:15:03'),(150,40,30,'2019-01-02 17:30:03'),(151,40,30,'2019-01-02 17:45:03'),(152,40,30,'2019-01-02 18:00:03'),(153,40,30,'2019-01-02 18:15:03'),(154,41,30,'2019-01-02 18:30:03'),(155,41,30,'2019-01-02 18:45:03'),(156,41,30,'2019-01-02 19:00:03'),(157,40,30,'2019-01-02 19:15:03'),(158,40,29,'2019-01-02 19:30:03'),(159,40,29,'2019-01-02 19:45:03'),(160,36,27,'2019-01-09 09:45:03'),(161,36,27,'2019-01-09 10:00:03'),(162,36,28,'2019-01-09 10:15:03'),(163,36,28,'2019-01-09 10:30:03'),(164,35,28,'2019-01-09 10:45:03'),(165,35,28,'2019-01-09 11:00:03'),(166,35,28,'2019-01-09 11:15:03'),(167,35,28,'2019-01-09 11:30:03'),(168,35,28,'2019-01-09 11:45:03'),(169,35,28,'2019-01-09 12:00:03'),(170,34,29,'2019-01-09 12:15:03'),(171,34,29,'2019-01-09 12:30:03'),(172,34,29,'2019-01-09 12:45:03'),(173,34,29,'2019-01-09 13:00:03'),(174,34,29,'2019-01-09 13:15:03'),(175,34,29,'2019-01-09 13:30:03'),(176,34,29,'2019-01-09 13:45:03'),(177,34,29,'2019-01-09 14:00:03'),(178,34,29,'2019-01-09 14:15:03'),(179,34,29,'2019-01-09 14:30:03'),(180,34,29,'2019-01-09 14:45:03'),(181,34,29,'2019-01-09 15:00:03'),(182,34,29,'2019-01-09 15:15:03'),(183,34,29,'2019-01-09 15:30:03'),(184,34,29,'2019-01-09 15:45:03'),(185,34,29,'2019-01-09 16:00:03'),(186,35,30,'2019-01-09 16:15:06'),(187,35,30,'2019-01-09 16:30:03'),(188,35,30,'2019-01-09 16:45:05'),(189,35,30,'2019-01-09 17:00:06'),(190,35,30,'2019-01-09 17:15:03'),(191,35,30,'2019-01-09 17:30:03'),(192,35,30,'2019-01-09 17:45:03'),(193,35,30,'2019-01-09 18:00:03'),(194,35,30,'2019-01-09 18:15:03'),(195,35,30,'2019-01-09 18:30:03'),(196,35,30,'2019-01-09 18:45:03'),(197,35,30,'2019-01-09 19:00:03'),(198,35,30,'2019-01-09 19:15:03'),(199,35,30,'2019-01-09 19:30:04'),(200,35,30,'2019-01-09 19:45:03'),(201,35,30,'2019-01-09 20:00:03'),(202,35,30,'2019-01-09 20:15:03'),(203,35,30,'2019-01-09 20:30:03'),(204,35,30,'2019-01-09 20:45:03'),(205,35,30,'2019-01-09 21:00:03'),(206,35,30,'2019-01-09 21:15:03'),(207,35,30,'2019-01-09 21:30:03'),(208,35,30,'2019-01-09 21:45:03'),(209,35,29,'2019-01-09 22:00:03'),(210,35,29,'2019-01-09 22:15:03'),(211,35,29,'2019-01-09 22:30:03'),(212,35,29,'2019-01-09 22:45:03'),(213,35,29,'2019-01-09 23:00:06'),(214,35,29,'2019-01-09 23:12:55'),(215,35,29,'2019-01-09 23:13:02'),(216,35,29,'2019-01-09 23:13:29'),(217,35,29,'2019-01-09 23:15:03'),(218,35,29,'2019-01-09 23:16:08'),(219,35,29,'2019-01-09 23:30:03'),(220,35,29,'2019-01-09 23:45:03'),(221,35,29,'2019-01-10 00:00:04'),(222,35,29,'2019-01-10 00:15:03'),(223,35,29,'2019-01-10 00:28:40'),(224,35,29,'2019-01-10 00:30:04'),(225,35,29,'2019-01-10 00:31:30'),(226,35,29,'2019-01-10 01:00:03'),(227,35,29,'2019-01-10 01:30:03'),(228,35,29,'2019-01-10 02:00:03'),(229,35,29,'2019-01-10 02:30:03'),(230,35,28,'2019-01-10 03:00:04'),(231,35,28,'2019-01-10 03:30:03'),(232,35,28,'2019-01-10 04:00:03'),(233,35,28,'2019-01-10 04:30:03'),(234,35,28,'2019-01-10 05:00:03'),(235,35,28,'2019-01-10 05:30:03'),(236,35,28,'2019-01-10 06:00:03'),(237,35,27,'2019-01-10 06:30:04'),(238,35,27,'2019-01-10 07:00:03'),(239,34,27,'2019-01-10 07:30:04'),(240,36,26,'2019-01-10 08:00:03'),(241,36,26,'2019-01-10 08:30:04'),(242,35,26,'2019-01-10 09:00:03'),(243,35,26,'2019-01-10 09:30:04'),(244,35,26,'2019-01-10 10:00:03'),(245,35,26,'2019-01-10 10:30:04'),(246,35,26,'2019-01-10 11:00:03'),(247,35,26,'2019-01-10 11:30:03'),(248,35,26,'2019-01-10 12:00:03'),(249,35,26,'2019-01-10 12:30:03'),(250,35,26,'2019-01-10 13:00:04'),(251,35,25,'2019-01-10 13:30:03'),(252,35,25,'2019-01-10 14:00:04'),(253,35,25,'2019-01-10 14:30:03'),(254,35,25,'2019-01-10 15:00:03'),(255,35,25,'2019-01-10 15:30:03'),(256,35,26,'2019-01-10 16:00:03'),(257,35,26,'2019-01-10 16:30:03'),(258,35,26,'2019-01-10 17:00:03'),(259,35,26,'2019-01-10 17:30:03'),(260,35,26,'2019-01-10 18:00:03'),(261,35,25,'2019-01-10 18:30:03'),(262,35,25,'2019-01-10 19:00:03'),(263,35,25,'2019-01-10 19:30:03'),(264,35,25,'2019-01-10 20:00:03'),(265,35,25,'2019-01-10 20:30:03'),(266,34,25,'2019-01-10 21:00:04'),(267,35,24,'2019-01-10 21:30:06'),(268,35,24,'2019-01-10 22:00:03'),(269,35,24,'2019-01-10 22:30:03'),(270,35,24,'2019-01-10 23:00:03'),(271,35,23,'2019-01-10 23:30:03'),(272,35,23,'2019-01-11 00:00:03'),(273,35,23,'2019-01-11 00:30:03'),(274,35,23,'2019-01-11 01:00:04'),(275,35,23,'2019-01-11 01:30:03'),(276,34,23,'2019-01-11 02:00:03'),(277,35,23,'2019-01-11 02:30:03'),(278,36,22,'2019-01-11 03:00:03'),(279,35,22,'2019-01-11 03:30:04'),(280,35,22,'2019-01-11 04:00:03'),(281,35,22,'2019-01-11 04:30:03'),(282,35,22,'2019-01-11 05:00:03'),(283,35,22,'2019-01-11 05:30:03'),(284,35,22,'2019-01-11 06:00:03'),(285,35,21,'2019-01-11 06:30:04'),(286,35,21,'2019-01-11 07:00:03'),(287,35,21,'2019-01-11 07:30:04'),(288,35,21,'2019-01-11 08:00:03'),(289,35,21,'2019-01-11 08:30:03'),(290,35,21,'2019-01-11 09:00:03'),(291,35,21,'2019-01-11 09:30:03'),(292,35,21,'2019-01-11 10:00:03'),(293,35,21,'2019-01-11 10:30:03'),(294,35,21,'2019-01-11 11:00:03'),(295,35,22,'2019-01-11 11:30:04'),(296,35,22,'2019-01-11 12:00:03'),(297,35,22,'2019-01-11 12:30:03'),(298,35,22,'2019-01-11 13:00:03'),(299,34,22,'2019-01-11 13:30:03'),(300,34,22,'2019-01-11 14:00:04'),(301,34,22,'2019-01-11 14:30:03'),(302,34,22,'2019-01-11 15:00:03'),(303,33,23,'2019-01-11 15:30:04'),(304,33,23,'2019-01-11 16:00:03'),(305,145,11,'2019-01-11 16:30:03'),(306,34,24,'2019-01-11 16:47:44'),(307,34,24,'2019-01-11 16:54:12'),(308,34,24,'2019-01-11 17:00:03'),(309,33,25,'2019-01-11 17:30:06'),(310,33,25,'2019-01-11 18:00:04'),(311,34,25,'2019-01-11 18:30:03'),(312,34,26,'2019-01-11 19:00:03'),(313,34,26,'2019-01-11 19:23:57'),(314,34,26,'2019-01-11 19:30:04'),(315,34,26,'2019-01-11 20:00:03'),(316,34,26,'2019-01-11 20:30:03'),(317,34,26,'2019-01-11 21:00:03'),(318,34,26,'2019-01-11 21:30:03'),(319,34,26,'2019-01-11 22:00:04'),(320,34,25,'2019-01-11 22:30:03'),(321,34,25,'2019-01-11 23:00:04'),(322,34,25,'2019-01-11 23:30:03'),(323,34,25,'2019-01-12 00:00:03'),(324,34,25,'2019-01-12 00:30:03'),(325,34,25,'2019-01-12 01:00:03'),(326,34,25,'2019-01-12 01:30:04'),(327,34,25,'2019-01-12 02:00:03'),(328,35,24,'2019-01-12 02:30:03'),(329,35,24,'2019-01-12 03:00:03'),(330,35,24,'2019-01-12 03:30:03'),(331,35,24,'2019-01-12 04:00:03'),(332,35,24,'2019-01-12 04:30:03'),(333,35,24,'2019-01-12 05:00:03'),(334,35,24,'2019-01-12 05:30:04'),(335,35,24,'2019-01-12 06:00:03'),(336,35,24,'2019-01-12 06:30:03'),(337,35,24,'2019-01-12 07:00:03'),(338,35,24,'2019-01-12 07:30:03'),(339,35,23,'2019-01-12 08:00:06'),(340,35,23,'2019-01-12 08:30:03'),(341,35,24,'2019-01-12 09:00:03'),(342,35,24,'2019-01-12 09:30:03'),(343,35,24,'2019-01-12 10:00:03'),(344,35,24,'2019-01-12 10:30:03'),(345,35,24,'2019-01-12 11:00:03'),(346,36,24,'2019-01-12 11:30:04'),(347,36,24,'2019-01-12 12:00:03'),(348,35,25,'2019-01-12 12:30:03'),(349,35,25,'2019-01-12 13:00:04'),(350,35,25,'2019-01-12 13:30:03'),(351,35,25,'2019-01-12 14:00:03'),(352,35,25,'2019-01-12 14:30:03'),(353,35,25,'2019-01-12 15:00:03'),(354,35,26,'2019-01-12 15:30:03'),(355,35,26,'2019-01-12 16:00:03'),(356,35,26,'2019-01-12 16:30:03'),(357,34,27,'2019-01-12 17:00:03'),(358,34,28,'2019-01-12 17:30:04'),(359,34,28,'2019-01-12 18:00:03'),(360,35,28,'2019-01-12 18:30:03'),(361,34,29,'2019-01-12 19:00:03'),(362,34,29,'2019-01-12 19:30:03'),(363,34,29,'2019-01-12 20:00:03'),(364,34,29,'2019-01-12 20:30:03'),(365,34,29,'2019-01-12 21:00:03'),(366,34,29,'2019-01-12 21:30:04'),(367,34,29,'2019-01-12 22:00:03'),(368,34,29,'2019-01-12 22:30:03'),(369,35,28,'2019-01-12 23:00:03'),(370,35,28,'2019-01-12 23:30:03'),(371,35,28,'2019-01-13 00:00:04'),(372,35,28,'2019-01-13 00:30:03'),(373,35,28,'2019-01-13 01:00:04'),(374,35,28,'2019-01-13 01:30:03'),(375,35,28,'2019-01-13 02:00:04'),(376,35,28,'2019-01-13 02:30:03'),(377,35,28,'2019-01-13 03:00:04'),(378,35,28,'2019-01-13 03:30:03'),(379,145,14,'2019-01-13 04:00:03'),(380,35,28,'2019-01-13 04:30:04'),(381,35,27,'2019-01-13 05:00:03'),(382,35,27,'2019-01-13 05:30:03'),(383,35,27,'2019-01-13 06:00:03'),(384,35,27,'2019-01-13 06:30:03'),(385,35,27,'2019-01-13 07:00:03'),(386,35,27,'2019-01-13 07:30:03'),(387,35,27,'2019-01-13 08:00:03'),(388,35,27,'2019-01-13 08:30:03'),(389,35,27,'2019-01-13 09:00:04'),(390,36,26,'2019-01-13 09:30:03'),(391,36,26,'2019-01-13 10:00:04'),(392,36,26,'2019-01-13 10:30:03'),(393,36,26,'2019-01-13 11:00:03'),(394,36,26,'2019-01-13 11:30:03'),(395,36,26,'2019-01-13 12:00:03'),(396,37,26,'2019-01-13 12:30:03'),(397,37,26,'2019-01-13 13:00:06'),(398,37,26,'2019-01-13 13:30:06'),(399,37,26,'2019-01-13 14:00:03'),(400,37,26,'2019-01-13 14:30:04'),(401,37,26,'2019-01-13 15:00:03'),(402,37,26,'2019-01-13 15:30:03'),(403,37,26,'2019-01-13 16:00:03'),(404,37,26,'2019-01-13 16:30:05'),(405,37,26,'2019-01-13 17:00:03'),(406,36,27,'2019-01-13 17:30:03'),(407,36,27,'2019-01-13 18:00:03'),(408,36,28,'2019-01-13 18:30:03'),(409,36,28,'2019-01-13 19:00:04'),(410,36,28,'2019-01-13 19:30:03'),(411,36,28,'2019-01-13 20:00:04'),(412,36,28,'2019-01-13 20:30:03'),(413,146,13,'2019-01-13 21:00:03'),(414,35,28,'2019-01-13 21:30:03'),(415,35,27,'2019-01-13 22:00:03'),(416,36,27,'2019-01-13 22:30:03'),(417,37,26,'2019-01-13 23:00:05'),(418,37,26,'2019-01-13 23:30:03'),(419,36,26,'2019-01-14 00:00:03'),(420,37,26,'2019-01-14 00:30:04'),(421,37,26,'2019-01-14 01:00:03'),(422,37,26,'2019-01-14 01:30:03'),(423,37,26,'2019-01-14 02:00:03'),(424,37,26,'2019-01-14 02:30:03'),(425,37,26,'2019-01-14 03:00:04'),(426,37,26,'2019-01-14 03:30:03'),(427,37,26,'2019-01-14 04:00:03'),(428,146,13,'2019-01-14 04:30:03'),(429,37,25,'2019-01-14 05:00:03'),(430,37,25,'2019-01-14 05:30:03'),(431,36,25,'2019-01-14 06:00:03'),(432,36,25,'2019-01-14 06:30:04'),(433,36,25,'2019-01-14 07:00:03'),(434,36,25,'2019-01-14 07:30:03'),(435,36,25,'2019-01-14 08:00:03'),(436,37,25,'2019-01-14 08:30:03'),(437,37,25,'2019-01-14 09:00:04'),(438,37,25,'2019-01-14 09:30:03'),(439,37,25,'2019-01-14 10:00:03'),(440,37,25,'2019-01-14 10:30:03'),(441,36,25,'2019-01-14 11:00:03'),(442,36,25,'2019-01-14 11:30:03'),(443,37,26,'2019-01-14 12:00:06'),(444,37,26,'2019-01-14 12:30:03'),(445,37,26,'2019-01-14 13:00:04'),(446,37,26,'2019-01-14 13:30:03'),(447,37,26,'2019-01-14 14:00:04'),(448,37,26,'2019-01-14 14:30:06'),(449,37,26,'2019-01-14 15:00:03'),(450,37,26,'2019-01-14 15:30:04'),(451,36,27,'2019-01-14 16:00:03'),(452,36,27,'2019-01-14 16:30:04'),(453,37,28,'2019-01-14 17:00:03'),(454,37,28,'2019-01-14 17:30:03'),(455,36,29,'2019-01-14 18:00:03'),(456,36,29,'2019-01-14 18:30:03'),(457,36,29,'2019-01-14 19:00:04'),(458,36,29,'2019-01-14 19:30:03'),(459,36,29,'2019-01-14 20:00:03'),(460,36,28,'2019-01-14 20:30:03'),(461,36,28,'2019-01-14 21:00:03'),(462,36,28,'2019-01-14 21:30:03'),(463,36,28,'2019-01-14 22:00:03'),(464,36,28,'2019-01-14 22:30:03'),(465,37,28,'2019-01-14 23:00:03'),(466,37,28,'2019-01-14 23:30:04'),(467,146,14,'2019-01-15 00:00:03'),(468,37,27,'2019-01-15 00:30:04'),(469,37,27,'2019-01-15 01:00:03'),(470,37,27,'2019-01-15 01:30:03'),(471,37,27,'2019-01-15 02:00:03'),(472,37,27,'2019-01-15 02:30:03'),(473,36,27,'2019-01-15 03:00:03'),(474,36,27,'2019-01-15 03:30:03'),(475,37,26,'2019-01-15 04:00:03'),(476,37,26,'2019-01-15 04:30:03'),(477,37,26,'2019-01-15 05:00:04'),(478,37,26,'2019-01-15 05:30:03'),(479,37,26,'2019-01-15 06:00:03'),(480,37,26,'2019-01-15 06:30:04'),(481,37,26,'2019-01-15 07:00:03'),(482,37,26,'2019-01-15 07:30:03'),(483,37,26,'2019-01-15 08:00:04'),(484,37,26,'2019-01-15 08:30:03'),(485,37,26,'2019-01-15 09:00:04'),(486,37,26,'2019-01-15 09:30:03'),(487,38,26,'2019-01-15 10:00:03'),(488,38,26,'2019-01-15 10:30:03'),(489,38,26,'2019-01-15 11:00:03'),(490,38,26,'2019-01-15 11:30:04'),(491,38,26,'2019-01-15 12:00:06'),(492,38,26,'2019-01-15 12:30:03'),(493,38,26,'2019-01-15 13:00:04'),(494,40,26,'2019-01-15 13:30:03'),(495,40,26,'2019-01-15 14:00:03'),(496,40,26,'2019-01-15 14:30:03'),(497,40,26,'2019-01-15 15:00:03'),(498,40,26,'2019-01-15 15:30:03'),(499,40,26,'2019-01-15 16:00:03'),(500,40,26,'2019-01-15 16:30:04'),(501,40,26,'2019-01-15 17:00:03'),(502,39,26,'2019-01-15 17:30:04'),(503,39,25,'2019-01-15 18:00:03'),(504,40,25,'2019-01-15 18:30:03'),(505,39,25,'2019-01-15 19:00:03'),(506,39,24,'2019-01-15 19:30:03'),(507,39,23,'2019-01-15 20:00:03'),(508,40,22,'2019-01-15 20:30:04'),(509,40,22,'2019-01-15 21:00:03'),(510,40,22,'2019-01-15 21:30:03'),(511,39,22,'2019-01-15 22:00:03'),(512,38,23,'2019-01-15 22:30:03'),(513,39,23,'2019-01-15 23:00:04'),(514,38,23,'2019-01-15 23:30:03'),(515,39,23,'2019-01-16 00:00:06'),(516,39,23,'2019-01-16 00:30:03'),(517,38,23,'2019-01-16 01:00:04'),(518,39,23,'2019-01-16 01:30:03'),(519,39,23,'2019-01-16 02:00:04'),(520,39,23,'2019-01-16 02:30:03'),(521,39,23,'2019-01-16 03:00:03'),(522,38,23,'2019-01-16 03:30:03'),(523,38,23,'2019-01-16 04:00:03'),(524,38,23,'2019-01-16 04:30:03'),(525,38,23,'2019-01-16 05:00:03'),(526,38,23,'2019-01-16 05:30:06'),(527,38,23,'2019-01-16 06:00:04'),(528,38,23,'2019-01-16 06:30:04'),(529,38,23,'2019-01-16 07:00:03'),(530,39,22,'2019-01-16 07:30:03'),(531,39,22,'2019-01-16 08:00:03'),(532,39,22,'2019-01-16 08:30:03'),(533,38,23,'2019-01-16 09:00:04'),(534,38,23,'2019-01-16 09:30:03'),(535,39,23,'2019-01-16 10:00:04'),(536,39,23,'2019-01-16 10:30:03'),(537,39,23,'2019-01-16 11:00:03'),(538,39,23,'2019-01-16 11:30:03'),(539,39,23,'2019-01-16 12:00:03'),(540,39,23,'2019-01-16 12:30:03'),(541,39,23,'2019-01-16 13:00:03'),(542,38,24,'2019-01-16 13:30:04'),(543,38,24,'2019-01-16 14:00:03'),(544,38,24,'2019-01-16 14:30:03'),(545,38,24,'2019-01-16 15:00:03'),(546,37,25,'2019-01-16 15:30:03'),(547,37,25,'2019-01-16 16:00:04'),(548,38,25,'2019-01-16 16:30:03'),(549,38,26,'2019-01-16 17:00:03'),(550,37,27,'2019-01-16 17:30:05'),(551,37,27,'2019-01-16 18:00:04'),(552,37,28,'2019-01-16 18:30:03'),(553,36,28,'2019-01-16 19:00:04'),(554,35,27,'2019-01-16 19:30:03'),(555,35,27,'2019-01-16 20:00:03'),(556,35,28,'2019-01-16 20:30:03'),(557,36,28,'2019-01-16 21:00:03'),(558,35,27,'2019-01-16 21:30:04'),(559,36,27,'2019-01-16 22:00:03'),(560,36,27,'2019-01-16 22:30:03'),(561,36,27,'2019-01-16 23:00:03'),(562,36,27,'2019-01-16 23:30:06'),(563,36,27,'2019-01-17 00:00:03'),(564,36,27,'2019-01-17 00:30:03'),(565,37,27,'2019-01-17 01:00:03'),(566,37,27,'2019-01-17 01:30:03'),(567,38,26,'2019-01-17 02:00:03'),(568,38,26,'2019-01-17 02:30:03'),(569,38,26,'2019-01-17 03:00:03'),(570,38,26,'2019-01-17 03:30:03'),(571,38,26,'2019-01-17 04:00:04'),(572,37,26,'2019-01-17 04:30:03'),(573,37,26,'2019-01-17 05:00:04'),(574,37,25,'2019-01-17 05:30:03'),(575,36,25,'2019-01-17 06:00:03'),(576,36,25,'2019-01-17 06:30:03'),(577,36,25,'2019-01-17 07:00:03'),(578,35,25,'2019-01-17 07:30:03'),(579,37,24,'2019-01-17 08:00:04'),(580,36,24,'2019-01-17 08:30:03'),(581,36,24,'2019-01-17 09:00:03'),(582,36,24,'2019-01-17 09:30:03'),(583,36,24,'2019-01-17 10:00:03'),(584,36,24,'2019-01-17 10:30:03'),(585,36,24,'2019-01-17 11:00:03'),(586,36,24,'2019-01-17 11:30:03'),(587,36,24,'2019-01-17 12:00:03'),(588,36,24,'2019-01-17 12:30:03'),(589,36,24,'2019-01-17 13:00:03'),(590,36,24,'2019-01-17 13:30:03'),(591,36,24,'2019-01-17 14:00:03'),(592,36,24,'2019-01-17 14:30:03'),(593,36,24,'2019-01-17 15:00:04'),(594,35,25,'2019-01-17 15:30:03'),(595,36,24,'2019-01-17 16:00:03'),(596,35,25,'2019-01-17 16:30:04'),(597,35,25,'2019-01-17 17:00:03'),(598,36,24,'2019-01-17 17:30:03'),(599,36,24,'2019-01-17 18:00:03'),(600,34,25,'2019-01-17 18:30:03'),(601,34,25,'2019-01-17 19:00:04'),(602,34,25,'2019-01-17 19:30:03'),(603,34,25,'2019-01-17 20:00:03'),(604,35,24,'2019-01-17 20:30:03'),(605,35,24,'2019-01-17 21:00:03'),(606,35,24,'2019-01-17 21:30:04'),(607,35,23,'2019-01-17 22:00:03'),(608,35,23,'2019-01-17 22:30:04'),(609,35,23,'2019-01-17 23:00:03'),(610,35,23,'2019-01-17 23:30:03'),(611,35,23,'2019-01-18 00:00:03'),(612,34,23,'2019-01-18 00:30:03'),(613,35,22,'2019-01-18 01:00:04'),(614,145,11,'2019-01-18 01:30:03'),(615,35,22,'2019-01-18 02:00:03'),(616,35,22,'2019-01-18 02:30:03'),(617,35,22,'2019-01-18 03:00:03'),(618,145,11,'2019-01-18 03:30:03'),(619,35,21,'2019-01-18 04:00:03'),(620,35,21,'2019-01-18 04:30:03'),(621,35,21,'2019-01-18 05:00:04'),(622,35,21,'2019-01-18 05:30:03'),(623,35,21,'2019-01-18 06:00:04'),(624,35,21,'2019-01-18 06:30:04'),(625,36,20,'2019-01-18 07:00:06'),(626,36,20,'2019-01-18 07:30:03'),(627,36,20,'2019-01-18 08:00:04'),(628,36,20,'2019-01-18 08:30:03'),(629,36,20,'2019-01-18 09:00:03'),(630,36,20,'2019-01-18 09:30:05'),(631,36,21,'2019-01-18 10:00:03'),(632,37,21,'2019-01-18 10:30:03'),(633,36,20,'2019-01-18 11:00:04'),(634,36,20,'2019-01-18 11:30:03'),(635,36,20,'2019-01-18 12:00:03'),(636,36,20,'2019-01-18 12:30:03'),(637,36,20,'2019-01-18 13:00:03'),(638,36,20,'2019-01-18 13:30:04'),(639,35,21,'2019-01-18 14:00:03'),(640,35,21,'2019-01-18 14:30:04'),(641,35,21,'2019-01-18 15:00:03'),(642,36,21,'2019-01-18 15:30:03'),(643,35,21,'2019-01-18 16:00:03'),(644,36,22,'2019-01-18 16:30:03'),(645,36,22,'2019-01-18 17:00:04'),(646,36,22,'2019-01-18 17:30:03'),(647,35,23,'2019-01-18 18:00:03'),(648,35,23,'2019-01-18 18:30:03'),(649,36,23,'2019-01-18 19:00:03'),(650,35,23,'2019-01-18 19:30:04'),(651,35,23,'2019-01-18 20:00:03'),(652,35,23,'2019-01-18 20:30:04'),(653,35,23,'2019-01-18 21:00:03'),(654,35,23,'2019-01-18 21:30:03'),(655,35,23,'2019-01-18 22:00:03'),(656,35,23,'2019-01-18 22:30:03'),(657,36,22,'2019-01-18 23:00:03'),(658,36,22,'2019-01-18 23:30:03'),(659,36,22,'2019-01-19 00:00:03'),(660,36,22,'2019-01-19 00:30:03'),(661,36,22,'2019-01-19 01:00:03'),(662,36,22,'2019-01-19 01:30:03'),(663,36,22,'2019-01-19 02:00:06'),(664,36,22,'2019-01-19 02:30:03'),(665,36,22,'2019-01-19 03:00:04'),(666,36,22,'2019-01-19 03:30:03'),(667,36,22,'2019-01-19 04:00:03'),(668,36,21,'2019-01-19 04:30:03'),(669,36,21,'2019-01-19 05:00:03'),(670,36,21,'2019-01-19 05:30:03'),(671,36,21,'2019-01-19 06:00:03'),(672,36,21,'2019-01-19 06:30:03'),(673,36,21,'2019-01-19 07:00:04'),(674,36,21,'2019-01-19 07:30:03'),(675,37,20,'2019-01-19 08:00:04'),(676,37,20,'2019-01-19 08:30:03'),(677,36,20,'2019-01-19 09:00:03'),(678,37,20,'2019-01-19 09:30:03'),(679,36,21,'2019-01-19 10:00:03'),(680,36,21,'2019-01-19 10:30:03'),(681,36,21,'2019-01-19 11:00:03'),(682,36,21,'2019-01-19 11:30:03'),(683,36,22,'2019-01-19 12:00:03'),(684,36,22,'2019-01-19 12:30:03'),(685,36,22,'2019-01-19 13:00:03'),(686,36,22,'2019-01-19 13:30:03'),(687,36,22,'2019-01-19 14:00:03'),(688,36,22,'2019-01-19 14:30:03'),(689,35,23,'2019-01-19 15:00:03'),(690,35,23,'2019-01-19 15:30:04'),(691,35,23,'2019-01-19 16:00:03'),(692,35,24,'2019-01-19 16:30:03'),(693,35,24,'2019-01-19 17:00:03'),(694,35,24,'2019-01-19 17:30:03'),(695,34,25,'2019-01-19 18:00:03'),(696,34,25,'2019-01-19 18:30:03'),(697,34,25,'2019-01-19 19:00:04'),(698,34,25,'2019-01-19 19:30:03'),(699,34,25,'2019-01-19 20:00:04'),(700,34,25,'2019-01-19 20:30:03'),(701,34,25,'2019-01-19 21:00:03'),(702,34,25,'2019-01-19 21:30:03'),(703,34,25,'2019-01-19 22:00:03'),(704,35,25,'2019-01-19 22:30:03'),(705,35,24,'2019-01-19 23:00:03'),(706,36,24,'2019-01-19 23:30:03'),(707,36,24,'2019-01-20 00:00:03'),(708,35,24,'2019-01-20 00:30:03'),(709,35,24,'2019-01-20 01:00:04'),(710,35,24,'2019-01-20 01:30:03'),(711,35,24,'2019-01-20 02:00:04'),(712,35,24,'2019-01-20 02:30:03'),(713,35,23,'2019-01-20 03:00:04'),(714,35,23,'2019-01-20 03:30:03'),(715,35,23,'2019-01-20 04:00:03'),(716,35,23,'2019-01-20 04:30:06'),(717,35,23,'2019-01-20 05:00:03'),(718,35,23,'2019-01-20 05:30:03'),(719,35,23,'2019-01-20 06:00:03'),(720,35,23,'2019-01-20 06:30:03'),(721,36,22,'2019-01-20 07:00:03'),(722,36,22,'2019-01-20 07:30:03'),(723,36,22,'2019-01-20 08:00:03'),(724,36,22,'2019-01-20 08:30:03'),(725,36,22,'2019-01-20 09:00:04'),(726,36,22,'2019-01-20 09:30:03'),(727,36,22,'2019-01-20 10:00:03'),(728,36,22,'2019-01-20 10:30:03'),(729,35,23,'2019-01-20 11:00:03'),(730,35,23,'2019-01-20 11:30:04'),(731,35,23,'2019-01-20 12:00:03'),(732,35,24,'2019-01-20 12:30:03'),(733,35,24,'2019-01-20 13:00:03'),(734,35,23,'2019-01-20 13:30:03'),(735,35,23,'2019-01-20 14:00:03'),(736,145,12,'2019-01-20 14:30:03'),(737,35,24,'2019-01-20 15:00:03'),(738,35,24,'2019-01-20 15:30:03'),(739,35,24,'2019-01-20 16:00:03'),(740,35,25,'2019-01-20 16:30:05'),(741,35,25,'2019-01-20 17:00:03'),(742,35,26,'2019-01-20 17:30:03'),(743,35,26,'2019-01-20 18:00:04'),(744,35,26,'2019-01-20 18:30:03'),(745,34,27,'2019-01-20 19:00:03'),(746,34,27,'2019-01-20 19:30:03'),(747,34,27,'2019-01-20 20:00:03'),(748,34,27,'2019-01-20 20:30:03'),(749,35,26,'2019-01-20 21:00:03'),(750,35,26,'2019-01-20 21:30:04'),(751,35,26,'2019-01-20 22:00:03'),(752,35,26,'2019-01-20 22:30:03'),(753,35,26,'2019-01-20 23:00:03'),(754,35,26,'2019-01-20 23:30:03'),(755,35,26,'2019-01-21 00:00:04'),(756,35,25,'2019-01-21 00:30:03'),(757,35,26,'2019-01-21 01:00:03'),(758,35,25,'2019-01-21 01:30:03'),(759,35,25,'2019-01-21 02:00:06'),(760,35,25,'2019-01-21 02:30:03'),(761,35,25,'2019-01-21 03:00:04'),(762,35,25,'2019-01-21 03:30:03'),(763,35,25,'2019-01-21 04:00:04'),(764,36,24,'2019-01-21 04:30:03'),(765,36,24,'2019-01-21 05:00:03'),(766,36,24,'2019-01-21 05:30:03'),(767,36,24,'2019-01-21 06:00:03'),(768,36,24,'2019-01-21 06:30:04'),(769,36,24,'2019-01-21 07:00:03'),(770,36,24,'2019-01-21 07:30:04'),(771,36,24,'2019-01-21 08:00:03'),(772,35,24,'2019-01-21 08:30:04'),(773,36,24,'2019-01-21 09:00:03'),(774,36,24,'2019-01-21 09:30:03'),(775,36,24,'2019-01-21 10:00:03'),(776,36,24,'2019-01-21 10:30:03'),(777,36,24,'2019-01-21 11:00:04'),(778,36,24,'2019-01-21 11:30:03'),(779,36,24,'2019-01-21 12:00:03'),(780,35,25,'2019-01-21 12:30:03'),(781,35,25,'2019-01-21 13:00:04'),(782,35,25,'2019-01-21 13:30:03'),(783,35,25,'2019-01-21 14:00:03'),(784,35,25,'2019-01-21 14:30:04'),(785,35,26,'2019-01-21 15:00:03'),(786,36,26,'2019-01-21 15:30:04'),(787,36,26,'2019-01-21 16:00:03'),(788,35,27,'2019-01-21 16:30:03'),(789,35,28,'2019-01-21 17:00:03'),(790,35,28,'2019-01-21 17:30:03'),(791,34,29,'2019-01-21 18:00:04'),(792,34,29,'2019-01-21 18:30:03'),(793,34,29,'2019-01-21 19:00:04'),(794,34,29,'2019-01-21 19:30:03'),(795,34,29,'2019-01-21 20:00:03'),(796,34,29,'2019-01-21 20:30:03'),(797,34,30,'2019-01-21 21:00:03'),(798,34,29,'2019-01-21 21:30:04'),(799,34,28,'2019-01-21 22:00:03'),(800,34,28,'2019-01-21 22:30:04'),(801,35,28,'2019-01-21 23:00:03'),(802,35,28,'2019-01-21 23:30:03'),(803,35,28,'2019-01-22 00:00:03'),(804,35,28,'2019-01-22 00:30:03'),(805,35,28,'2019-01-22 01:00:03'),(806,35,28,'2019-01-22 01:30:03'),(807,35,28,'2019-01-22 02:00:03'),(808,35,28,'2019-01-22 02:30:04'),(809,35,28,'2019-01-22 03:00:03'),(810,35,28,'2019-01-22 03:30:03'),(811,35,27,'2019-01-22 04:00:03'),(812,35,27,'2019-01-22 04:30:03'),(813,35,27,'2019-01-22 05:00:03'),(814,35,27,'2019-01-22 05:30:04'),(815,35,27,'2019-01-22 06:00:03'),(816,35,27,'2019-01-22 06:30:03'),(817,35,27,'2019-01-22 07:00:03'),(818,36,26,'2019-01-22 07:30:03'),(819,36,26,'2019-01-22 08:00:04'),(820,36,26,'2019-01-22 08:30:03'),(821,36,26,'2019-01-22 09:00:04'),(822,35,27,'2019-01-22 09:30:03'),(823,35,27,'2019-01-22 10:00:03'),(824,146,13,'2019-01-22 10:30:03'),(825,36,28,'2019-01-22 11:00:03'),(826,35,28,'2019-01-22 11:30:03'),(827,36,28,'2019-01-22 12:00:03'),(828,36,28,'2019-01-22 12:30:04'),(829,36,28,'2019-01-22 13:00:03'),(830,35,29,'2019-01-22 13:30:03'),(831,35,29,'2019-01-22 14:00:03'),(832,35,29,'2019-01-22 14:30:03'),(833,35,29,'2019-01-22 15:00:05'),(834,35,29,'2019-01-22 15:30:03'),(835,145,15,'2019-01-22 16:00:03'),(836,36,30,'2019-01-22 16:30:03'),(837,34,29,'2019-01-22 17:00:03'),(838,35,29,'2019-01-22 17:30:04'),(839,35,30,'2019-01-22 18:00:03'),(840,35,30,'2019-01-22 18:30:03'),(841,33,31,'2019-01-22 19:00:03'),(842,33,30,'2019-01-22 19:30:03'),(843,33,29,'2019-01-22 20:00:04'),(844,34,29,'2019-01-22 20:30:03'),(845,34,30,'2019-01-22 21:00:04'),(846,34,30,'2019-01-22 21:30:03'),(847,34,30,'2019-01-22 22:00:03'),(848,34,30,'2019-01-22 22:30:03'),(849,34,30,'2019-01-22 23:00:03'),(850,34,30,'2019-01-22 23:30:03'),(851,34,30,'2019-01-23 00:00:03'),(852,34,30,'2019-01-23 00:30:03'),(853,34,29,'2019-01-23 01:00:03'),(854,34,29,'2019-01-23 01:30:03'),(855,35,29,'2019-01-23 02:00:03'),(856,35,29,'2019-01-23 02:30:03'),(857,35,29,'2019-01-23 03:00:03'),(858,35,29,'2019-01-23 03:30:03'),(859,35,29,'2019-01-23 04:00:04'),(860,35,29,'2019-01-23 04:30:03'),(861,35,29,'2019-01-23 05:00:03'),(862,35,29,'2019-01-23 05:30:03'),(863,36,30,'2019-01-23 06:00:03'),(864,36,30,'2019-01-23 06:30:03'),(865,36,30,'2019-01-23 07:00:04'),(866,36,30,'2019-01-23 07:30:03'),(867,36,29,'2019-01-23 08:00:06'),(868,36,29,'2019-01-23 08:30:03'),(869,36,29,'2019-01-23 09:00:03'),(870,36,29,'2019-01-23 09:30:03'),(871,36,29,'2019-01-23 10:00:03'),(872,36,29,'2019-01-23 10:30:03'),(873,36,29,'2019-01-23 11:00:03'),(874,36,29,'2019-01-23 11:30:03'),(875,35,29,'2019-01-23 12:00:03'),(876,35,29,'2019-01-23 12:30:03'),(877,35,29,'2019-01-23 13:00:04'),(878,36,29,'2019-01-23 13:30:03'),(879,36,29,'2019-01-23 14:00:03'),(880,36,29,'2019-01-23 14:30:03'),(881,36,30,'2019-01-23 15:00:03'),(882,36,30,'2019-01-23 15:30:03'),(883,36,30,'2019-01-23 16:00:03'),(884,35,29,'2019-01-23 16:30:03'),(885,35,29,'2019-01-23 17:00:04'),(886,34,31,'2019-01-23 17:30:03'),(887,33,31,'2019-01-23 18:00:03'),(888,34,30,'2019-01-23 18:30:03'),(889,33,29,'2019-01-23 19:00:03'),(890,33,29,'2019-01-23 19:30:04'),(891,34,29,'2019-01-23 20:00:03'),(892,34,29,'2019-01-23 20:30:04'),(893,145,15,'2019-01-23 21:00:03'),(894,35,30,'2019-01-23 21:30:03'),(895,35,30,'2019-01-23 22:00:03'),(896,35,30,'2019-01-23 22:30:03'),(897,35,30,'2019-01-23 23:00:03'),(898,35,30,'2019-01-23 23:30:03'),(899,35,29,'2019-01-24 00:00:06'),(900,35,29,'2019-01-24 00:30:03'),(901,35,29,'2019-01-24 01:00:04'),(902,35,29,'2019-01-24 01:30:03'),(903,35,29,'2019-01-24 02:00:03'),(904,35,29,'2019-01-24 02:30:03'),(905,35,29,'2019-01-24 03:00:03'),(906,35,29,'2019-01-24 03:30:03'),(907,35,29,'2019-01-24 04:00:03'),(908,35,29,'2019-01-24 04:30:04'),(909,35,29,'2019-01-24 05:00:03'),(910,35,29,'2019-01-24 05:30:03'),(911,36,28,'2019-01-24 06:00:03'),(912,36,28,'2019-01-24 06:30:03'),(913,36,28,'2019-01-24 07:00:03'),(914,36,28,'2019-01-24 07:30:06'),(915,36,28,'2019-01-24 08:00:04'),(916,36,28,'2019-01-24 08:30:03'),(917,36,28,'2019-01-24 09:00:03'),(918,36,28,'2019-01-24 09:30:03'),(919,36,28,'2019-01-24 10:00:03'),(920,36,28,'2019-01-24 10:30:03'),(921,36,28,'2019-01-24 11:00:03'),(922,36,28,'2019-01-24 11:30:03'),(923,36,28,'2019-01-24 12:00:03'),(924,36,28,'2019-01-24 12:30:04'),(925,36,29,'2019-01-24 13:00:03'),(926,36,29,'2019-01-24 13:30:03'),(927,35,29,'2019-01-24 14:00:03'),(928,36,29,'2019-01-24 14:30:03'),(929,36,29,'2019-01-24 15:00:04'),(930,36,29,'2019-01-24 15:30:03'),(931,36,29,'2019-01-24 16:00:03'),(932,37,30,'2019-01-24 16:30:03'),(933,35,29,'2019-01-24 17:00:03'),(934,35,29,'2019-01-24 17:30:04'),(935,35,30,'2019-01-24 18:00:03'),(936,35,30,'2019-01-24 18:30:03'),(937,35,31,'2019-01-24 19:00:03'),(938,35,31,'2019-01-24 19:30:03'),(939,35,31,'2019-01-24 20:00:03'),(940,35,31,'2019-01-24 20:30:03'),(941,35,30,'2019-01-24 21:00:03'),(942,35,29,'2019-01-24 21:30:03'),(943,35,29,'2019-01-24 22:00:03'),(944,35,29,'2019-01-24 22:30:03'),(945,35,29,'2019-01-24 23:00:03'),(946,35,29,'2019-01-24 23:30:04'),(947,35,29,'2019-01-25 00:00:03'),(948,35,29,'2019-01-25 00:30:04'),(949,36,30,'2019-01-25 01:00:03'),(950,36,30,'2019-01-25 01:30:03'),(951,36,30,'2019-01-25 02:00:03'),(952,35,30,'2019-01-25 02:30:03'),(953,35,29,'2019-01-25 03:00:04'),(954,35,29,'2019-01-25 03:30:03'),(955,35,29,'2019-01-25 04:00:04'),(956,35,29,'2019-01-25 04:30:03'),(957,35,29,'2019-01-25 05:00:03'),(958,35,29,'2019-01-25 05:30:03'),(959,35,29,'2019-01-25 06:00:03'),(960,35,29,'2019-01-25 06:30:03'),(961,35,29,'2019-01-25 07:00:04'),(962,36,28,'2019-01-25 07:30:03'),(963,36,28,'2019-01-25 08:00:03'),(964,36,28,'2019-01-25 08:30:03'),(965,36,28,'2019-01-25 09:00:03'),(966,36,28,'2019-01-25 09:30:04'),(967,36,28,'2019-01-25 10:00:03'),(968,36,28,'2019-01-25 10:30:04'),(969,36,28,'2019-01-25 11:00:03'),(970,36,28,'2019-01-25 11:30:03'),(971,36,28,'2019-01-25 12:00:03'),(972,36,28,'2019-01-25 12:30:03'),(973,36,28,'2019-01-25 13:00:03'),(974,36,28,'2019-01-25 13:30:03'),(975,36,28,'2019-01-25 14:00:03'),(976,36,28,'2019-01-25 14:30:03'),(977,36,27,'2019-01-25 15:00:04'),(978,36,27,'2019-01-25 15:30:03'),(979,37,27,'2019-01-25 16:00:03'),(980,37,27,'2019-01-25 16:30:05'),(981,37,27,'2019-01-25 17:00:03'),(982,37,26,'2019-01-25 17:30:03'),(983,37,25,'2019-01-25 18:00:04'),(984,36,25,'2019-01-25 18:30:03'),(985,37,26,'2019-01-25 19:00:03'),(986,37,26,'2019-01-25 19:30:03'),(987,38,26,'2019-01-25 20:00:03'),(988,38,26,'2019-01-25 20:30:04'),(989,38,26,'2019-01-25 21:00:03'),(990,38,26,'2019-01-25 21:30:03'),(991,38,26,'2019-01-25 22:00:03'),(992,38,26,'2019-01-25 22:30:03'),(993,38,26,'2019-01-25 23:00:03'),(994,38,26,'2019-01-25 23:30:03'),(995,38,26,'2019-01-26 00:00:04'),(996,38,26,'2019-01-26 00:30:03'),(997,38,26,'2019-01-26 01:00:03'),(998,38,26,'2019-01-26 01:30:06'),(999,38,26,'2019-01-26 02:00:03'),(1000,38,26,'2019-01-26 02:30:03'),(1001,38,26,'2019-01-26 03:00:03'),(1002,38,26,'2019-01-26 03:30:03'),(1003,38,26,'2019-01-26 04:00:03'),(1004,37,26,'2019-01-26 04:30:03'),(1005,38,26,'2019-01-26 05:00:03'),(1006,38,26,'2019-01-26 05:30:04'),(1007,38,26,'2019-01-26 06:00:03'),(1008,38,26,'2019-01-26 06:30:03'),(1009,39,26,'2019-01-26 07:00:06'),(1010,38,26,'2019-01-26 07:30:04'),(1011,39,26,'2019-01-26 08:00:03'),(1012,39,26,'2019-01-26 08:30:03'),(1013,39,26,'2019-01-26 09:00:03'),(1014,39,26,'2019-01-26 09:30:03'),(1015,39,26,'2019-01-26 10:00:04'),(1016,39,26,'2019-01-26 10:30:03'),(1017,39,26,'2019-01-26 11:00:03'),(1018,147,13,'2019-01-26 11:30:03'),(1019,147,13,'2019-01-26 12:00:03'),(1020,39,27,'2019-01-26 12:30:04'),(1021,39,27,'2019-01-26 13:00:03'),(1022,39,28,'2019-01-26 13:30:03'),(1023,40,28,'2019-01-26 14:00:04'),(1024,40,28,'2019-01-26 14:30:03'),(1025,40,28,'2019-01-26 15:00:03'),(1026,39,29,'2019-01-26 15:30:03'),(1027,39,29,'2019-01-26 16:00:04'),(1028,39,29,'2019-01-26 16:30:03'),(1029,39,29,'2019-01-26 17:00:03'),(1030,36,29,'2019-01-26 17:30:03'),(1031,37,30,'2019-01-26 18:00:03'),(1032,146,15,'2019-01-26 18:30:03'),(1034,38,30,'2019-01-26 20:00:04'),(1035,38,30,'2019-01-26 20:30:04'),(1036,39,30,'2019-01-26 21:00:03'),(1037,39,30,'2019-01-26 21:30:04'),(1038,39,30,'2019-01-26 22:00:03'),(1039,39,30,'2019-01-26 22:30:03'),(1040,38,29,'2019-01-26 23:00:03'),(1041,38,29,'2019-01-26 23:30:04'),(1042,39,29,'2019-01-27 00:00:06'),(1043,39,29,'2019-01-27 00:30:03'),(1044,39,29,'2019-01-27 01:00:03'),(1045,39,29,'2019-01-27 01:30:03'),(1046,148,14,'2019-01-27 02:00:03'),(1047,39,29,'2019-01-27 02:30:03'),(1048,39,29,'2019-01-27 03:00:03'),(1049,39,29,'2019-01-27 03:30:03'),(1050,39,29,'2019-01-27 04:00:03'),(1051,39,29,'2019-01-27 04:30:04'),(1052,39,29,'2019-01-27 05:00:03'),(1053,39,29,'2019-01-27 05:30:04'),(1054,39,29,'2019-01-27 06:00:03'),(1055,39,29,'2019-01-27 06:30:04'),(1056,40,28,'2019-01-27 07:00:03'),(1057,41,28,'2019-01-27 07:30:04'),(1058,41,28,'2019-01-27 08:00:03'),(1059,41,28,'2019-01-27 08:30:03'),(1060,41,28,'2019-01-27 09:00:03'),(1061,40,29,'2019-01-27 09:30:03'),(1062,40,29,'2019-01-27 10:00:04'),(1063,40,29,'2019-01-27 10:30:03'),(1064,41,29,'2019-01-27 11:00:04'),(1065,41,29,'2019-01-27 11:30:04'),(1066,41,29,'2019-01-27 12:00:03'),(1067,41,29,'2019-01-27 12:30:04'),(1068,42,29,'2019-01-27 13:00:03'),(1069,42,29,'2019-01-27 13:30:03'),(1070,43,30,'2019-01-27 14:00:03'),(1071,43,30,'2019-01-27 14:30:03'),(1072,43,30,'2019-01-27 15:00:03'),(1073,42,29,'2019-01-27 15:30:03'),(1074,42,29,'2019-01-27 16:00:03'),(1075,42,29,'2019-01-27 16:30:04'),(1076,42,31,'2019-01-27 17:00:03'),(1077,37,31,'2019-01-27 17:30:04'),(1078,37,31,'2019-01-27 18:00:03'),(1079,37,30,'2019-01-27 18:30:03'),(1080,39,30,'2019-01-27 19:00:04'),(1081,39,30,'2019-01-27 19:30:03'),(1082,38,31,'2019-01-27 20:00:04'),(1083,40,30,'2019-01-27 20:30:03'),(1084,40,30,'2019-01-27 21:00:04'),(1085,40,30,'2019-01-27 21:30:03'),(1086,40,30,'2019-01-27 22:00:06'),(1087,40,30,'2019-01-27 22:07:05'),(1088,40,30,'2019-01-27 22:30:04'),(1089,41,30,'2019-01-27 23:00:06'),(1090,41,30,'2019-01-27 23:30:08'),(1091,41,29,'2019-01-28 00:00:06'),(1092,42,29,'2019-01-28 00:30:06'),(1093,41,29,'2019-01-28 01:00:06'),(1094,41,29,'2019-01-28 01:30:06'),(1095,42,29,'2019-01-28 02:00:06'),(1096,42,29,'2019-01-28 02:30:06'),(1097,42,29,'2019-01-28 03:00:03'),(1098,42,29,'2019-01-28 03:30:06'),(1099,42,29,'2019-01-28 04:00:06'),(1100,43,30,'2019-01-28 04:30:03'),(1101,43,30,'2019-01-28 05:00:06'),(1102,43,30,'2019-01-28 05:30:04'),(1103,43,30,'2019-01-28 06:00:03'),(1104,43,30,'2019-01-28 06:30:06'),(1105,43,30,'2019-01-28 07:00:03'),(1106,43,30,'2019-01-28 07:30:04'),(1107,43,30,'2019-01-28 08:00:06'),(1108,43,30,'2019-01-28 08:30:06'),(1109,43,30,'2019-01-28 09:00:03'),(1110,43,30,'2019-01-28 09:30:04'),(1111,43,30,'2019-01-28 10:00:03'),(1112,45,30,'2019-01-28 10:30:06'),(1113,45,30,'2019-01-28 11:00:06'),(1114,45,30,'2019-01-28 11:30:04'),(1115,44,29,'2019-01-28 12:00:06'),(1116,44,29,'2019-01-28 12:30:03'),(1117,44,29,'2019-01-28 13:00:03'),(1118,43,30,'2019-01-28 13:30:06'),(1119,42,30,'2019-01-28 14:00:04'),(1120,42,30,'2019-01-28 14:30:03'),(1121,41,31,'2019-01-28 15:00:06'),(1122,41,31,'2019-01-28 15:30:03'),(1123,41,31,'2019-01-28 16:00:06'),(1124,41,31,'2019-01-28 16:30:04'),(1125,40,32,'2019-01-28 17:00:06'),(1126,40,32,'2019-01-28 17:30:03'),(1127,39,33,'2019-01-28 18:00:03'),(1128,39,33,'2019-01-28 18:30:06'),(1129,39,33,'2019-01-28 19:00:03'),(1130,39,33,'2019-01-28 19:30:06'),(1131,39,33,'2019-01-28 20:00:06'),(1132,39,33,'2019-01-28 20:30:06'),(1133,39,33,'2019-01-28 21:00:06'),(1134,39,33,'2019-01-28 21:30:04'),(1135,39,33,'2019-01-28 22:00:06'),(1136,39,33,'2019-01-28 22:30:06'),(1137,39,33,'2019-01-28 23:00:04'),(1138,39,33,'2019-01-28 23:30:04'),(1139,40,32,'2019-01-29 00:00:06'),(1140,39,33,'2019-01-29 00:30:03'),(1141,40,32,'2019-01-29 01:00:03'),(1142,40,32,'2019-01-29 01:30:06'),(1143,40,32,'2019-01-29 02:00:06'),(1144,40,31,'2019-01-29 02:30:07'),(1145,40,32,'2019-01-29 03:00:04'),(1146,40,31,'2019-01-29 03:30:06'),(1147,40,31,'2019-01-29 04:00:06'),(1148,40,31,'2019-01-29 04:30:06'),(1149,39,31,'2019-01-29 05:00:06'),(1150,39,31,'2019-01-29 05:30:06'),(1151,39,31,'2019-01-29 06:00:06'),(1152,39,31,'2019-01-29 06:30:06'),(1153,39,31,'2019-01-29 07:00:03'),(1154,39,31,'2019-01-29 07:30:03'),(1155,40,30,'2019-01-29 08:00:06'),(1156,40,30,'2019-01-29 08:30:06'),(1157,40,30,'2019-01-29 09:00:03'),(1158,39,31,'2019-01-29 09:30:06'),(1159,40,31,'2019-01-29 10:00:04'),(1160,40,31,'2019-01-29 10:30:06'),(1161,40,31,'2019-01-29 11:00:03'),(1162,40,31,'2019-01-29 11:30:03'),(1163,39,31,'2019-01-29 12:00:06'),(1164,38,31,'2019-01-29 12:30:06'),(1165,39,31,'2019-01-29 13:00:06'),(1166,39,32,'2019-01-29 13:30:06'),(1167,39,32,'2019-01-29 14:00:08'),(1168,39,32,'2019-01-29 14:30:06'),(1169,38,33,'2019-01-29 15:00:06'),(1170,38,33,'2019-01-29 15:30:06'),(1171,38,33,'2019-01-29 16:00:03'),(1172,37,33,'2019-01-29 16:30:06'),(1173,38,34,'2019-01-29 17:00:06'),(1174,35,31,'2019-01-29 17:30:06'),(1175,35,31,'2019-01-29 18:00:06'),(1176,35,31,'2019-01-29 18:30:06'),(1177,35,31,'2019-01-29 19:00:04'),(1178,35,31,'2019-01-29 19:30:06'),(1179,35,31,'2019-01-29 20:00:06'),(1180,35,31,'2019-01-29 20:30:06'),(1181,35,31,'2019-01-29 21:00:03'),(1182,35,31,'2019-01-29 21:30:04'),(1183,38,34,'2019-01-29 22:00:06'),(1184,39,34,'2019-01-29 22:30:06'),(1185,39,34,'2019-01-29 23:00:03'),(1186,39,32,'2019-01-29 23:30:09'),(1187,38,32,'2019-01-30 00:00:06'),(1188,38,31,'2019-01-30 00:30:06'),(1189,38,31,'2019-01-30 01:00:06'),(1190,38,31,'2019-01-30 01:30:03'),(1191,37,31,'2019-01-30 02:00:06'),(1192,38,30,'2019-01-30 02:30:06'),(1193,38,30,'2019-01-30 03:00:06'),(1194,38,30,'2019-01-30 03:30:06'),(1195,38,30,'2019-01-30 04:00:04'),(1196,34,30,'2019-01-30 04:30:04'),(1197,38,29,'2019-01-30 05:00:06'),(1198,39,31,'2019-01-30 05:30:03'),(1199,38,29,'2019-01-30 06:00:06'),(1200,40,30,'2019-01-30 06:30:06'),(1201,40,30,'2019-01-30 07:00:08'),(1202,40,30,'2019-01-30 07:30:06'),(1203,40,30,'2019-01-30 08:00:06'),(1204,40,30,'2019-01-30 08:30:03'),(1205,40,29,'2019-01-30 09:00:03'),(1206,40,29,'2019-01-30 09:30:06'),(1207,40,29,'2019-01-30 10:00:03'),(1208,39,29,'2019-01-30 10:30:06'),(1209,39,29,'2019-01-30 11:00:03'),(1210,38,29,'2019-01-30 11:30:06'),(1211,39,29,'2019-01-30 12:00:03'),(1212,38,29,'2019-01-30 12:30:04'),(1213,38,29,'2019-01-30 13:00:04'),(1214,147,14,'2019-01-30 13:30:03'),(1215,38,28,'2019-01-30 14:00:04'),(1216,38,29,'2019-01-30 14:30:04'),(1217,38,29,'2019-01-30 15:00:06'),(1218,38,29,'2019-01-30 15:30:06'),(1219,39,29,'2019-01-30 16:00:04'),(1220,38,30,'2019-01-30 16:30:06'),(1221,39,30,'2019-01-30 17:00:03'),(1222,36,29,'2019-01-30 17:30:03'),(1223,35,29,'2019-01-30 18:00:06'),(1224,35,29,'2019-01-30 18:30:04'),(1225,36,29,'2019-01-30 19:00:06'),(1226,36,29,'2019-01-30 19:30:04'),(1227,37,29,'2019-01-30 20:00:06'),(1228,146,15,'2019-01-30 20:30:03'),(1229,37,29,'2019-01-30 21:00:06'),(1230,37,29,'2019-01-30 21:30:03'),(1231,37,29,'2019-01-30 22:00:03'),(1232,37,29,'2019-01-30 22:30:03'),(1233,37,29,'2019-01-30 23:00:03'),(1234,38,29,'2019-01-30 23:30:03'),(1235,38,29,'2019-01-31 00:00:04'),(1236,40,30,'2019-01-31 00:30:06'),(1237,40,30,'2019-01-31 01:00:03'),(1238,40,30,'2019-01-31 01:30:04'),(1239,39,30,'2019-01-31 02:00:06'),(1240,38,29,'2019-01-31 02:30:06'),(1241,38,29,'2019-01-31 03:00:07'),(1242,37,29,'2019-01-31 03:30:06'),(1243,37,29,'2019-01-31 04:00:06'),(1244,37,29,'2019-01-31 04:30:03'),(1245,36,28,'2019-01-31 05:00:06'),(1246,37,28,'2019-01-31 05:30:06'),(1247,36,28,'2019-01-31 06:00:06'),(1248,36,28,'2019-01-31 06:30:06'),(1249,36,28,'2019-01-31 07:00:03'),(1250,36,27,'2019-01-31 07:30:04'),(1251,146,13,'2019-01-31 08:00:03'),(1252,36,26,'2019-01-31 08:30:06'),(1253,36,26,'2019-01-31 09:00:06'),(1254,36,27,'2019-01-31 09:30:06'),(1255,36,27,'2019-01-31 10:00:06'),(1256,36,27,'2019-01-31 10:30:06'),(1257,146,13,'2019-01-31 11:00:03'),(1258,36,27,'2019-01-31 11:30:06'),(1259,36,27,'2019-01-31 12:00:06'),(1260,36,27,'2019-01-31 12:30:03'),(1261,36,28,'2019-01-31 13:00:06'),(1262,36,28,'2019-01-31 13:30:04'),(1263,36,28,'2019-01-31 14:00:06'),(1264,36,28,'2019-01-31 14:30:03'),(1265,37,28,'2019-01-31 15:00:06'),(1266,37,28,'2019-01-31 15:30:06'),(1267,37,28,'2019-01-31 16:00:04'),(1268,36,29,'2019-01-31 16:30:06'),(1269,36,29,'2019-01-31 17:00:03'),(1270,36,29,'2019-01-31 17:30:03'),(1271,36,30,'2019-01-31 18:00:08'),(1272,36,30,'2019-01-31 18:30:04'),(1273,35,29,'2019-01-31 19:00:06'),(1274,35,29,'2019-01-31 19:30:04'),(1275,36,30,'2019-01-31 20:00:06'),(1276,35,30,'2019-01-31 20:30:03'),(1277,37,29,'2019-02-01 23:00:03'),(1278,37,29,'2019-02-01 23:18:55'),(1279,37,29,'2019-02-01 23:19:49'),(1280,35,25,'2019-02-06 08:31:06'),(1281,35,25,'2019-02-06 09:00:04'),(1282,35,24,'2019-02-06 09:30:06'),(1283,35,23,'2019-02-06 10:00:05'),(1284,35,23,'2019-02-06 10:30:03'),(1285,35,23,'2019-02-06 11:00:03'),(1286,36,24,'2019-02-06 11:30:06'),(1287,36,25,'2019-02-06 12:00:05'),(1288,35,26,'2019-02-06 12:30:05'),(1289,36,26,'2019-02-06 13:00:05'),(1290,36,26,'2019-02-06 13:30:06'),(1291,35,27,'2019-02-06 14:00:06'),(1292,35,27,'2019-02-06 14:30:06'),(1293,35,28,'2019-02-06 15:00:05'),(1294,34,29,'2019-02-06 15:30:06'),(1295,34,29,'2019-02-06 16:00:03'),(1296,34,29,'2019-02-06 16:30:04'),(1297,33,30,'2019-02-06 17:00:05'),(1298,33,30,'2019-02-06 17:30:03'),(1299,33,29,'2019-02-06 18:00:03'),(1300,34,30,'2019-02-06 18:30:05'),(1301,34,30,'2019-02-06 19:00:03'),(1302,34,30,'2019-02-06 19:30:04'),(1303,34,30,'2019-02-06 20:00:04'),(1304,34,30,'2019-02-06 20:30:03'),(1305,34,29,'2019-02-06 21:00:06'),(1306,34,29,'2019-02-06 21:30:06'),(1307,34,29,'2019-02-06 22:00:06'),(1308,34,29,'2019-02-06 22:30:03'),(1309,34,29,'2019-02-06 23:00:06'),(1310,34,29,'2019-02-06 23:30:06'),(1311,35,28,'2019-02-07 00:00:06'),(1312,35,28,'2019-02-07 00:30:06'),(1313,35,28,'2019-02-07 01:00:06'),(1314,35,28,'2019-02-07 01:30:04'),(1315,35,28,'2019-02-07 02:00:03'),(1316,35,28,'2019-02-07 02:30:06'),(1317,35,28,'2019-02-07 03:00:03'),(1318,35,28,'2019-02-07 03:30:03'),(1319,35,28,'2019-02-07 04:00:03'),(1320,35,27,'2019-02-07 04:30:06'),(1321,35,27,'2019-02-07 05:00:06'),(1322,34,27,'2019-02-07 05:30:03'),(1323,34,27,'2019-02-07 06:00:06'),(1324,36,26,'2019-02-07 06:30:05'),(1325,36,26,'2019-02-07 07:00:06'),(1326,36,26,'2019-02-07 07:30:06'),(1327,36,26,'2019-02-07 08:00:03'),(1328,36,26,'2019-02-07 08:30:06'),(1329,36,26,'2019-02-07 09:00:05'),(1330,36,26,'2019-02-07 09:30:06'),(1331,36,26,'2019-02-07 10:00:06'),(1332,36,26,'2019-02-07 10:30:04'),(1333,35,27,'2019-02-07 11:00:06'),(1334,35,27,'2019-02-07 11:30:06'),(1335,34,24,'2019-02-07 12:00:03'),(1336,35,27,'2019-02-07 12:30:03'),(1337,35,28,'2019-02-07 13:00:05'),(1338,35,28,'2019-02-07 13:30:03'),(1339,35,28,'2019-02-07 14:00:03'),(1340,35,28,'2019-02-07 14:30:05'),(1341,35,28,'2019-02-07 15:00:06'),(1342,34,29,'2019-02-07 15:30:06'),(1343,34,29,'2019-02-07 16:00:03'),(1344,34,29,'2019-02-07 16:30:03'),(1345,35,29,'2019-02-07 17:00:06'),(1346,35,29,'2019-02-07 17:30:04'),(1347,35,30,'2019-02-07 18:00:04'),(1348,33,29,'2019-02-07 18:30:05'),(1349,33,29,'2019-02-07 19:00:03'),(1350,33,29,'2019-02-07 19:30:03'),(1351,34,29,'2019-02-07 20:00:05'),(1352,34,29,'2019-02-07 20:30:05'),(1353,34,29,'2019-02-07 21:00:03'),(1354,35,30,'2019-02-07 21:30:05'),(1355,34,31,'2019-02-07 22:00:03'),(1356,35,30,'2019-02-07 22:30:03'),(1357,35,30,'2019-02-07 23:00:03'),(1358,35,30,'2019-02-07 23:30:06'),(1359,35,30,'2019-02-08 00:00:05'),(1360,35,30,'2019-02-08 00:30:06'),(1361,145,15,'2019-02-08 01:00:05'),(1362,35,29,'2019-02-08 01:30:03'),(1363,35,29,'2019-02-08 02:00:06'),(1364,35,29,'2019-02-08 02:30:06'),(1365,35,29,'2019-02-08 03:00:06'),(1366,35,29,'2019-02-08 03:30:03'),(1367,35,29,'2019-02-08 04:00:03'),(1368,35,29,'2019-02-08 04:30:03'),(1369,35,29,'2019-02-08 05:00:03'),(1370,35,29,'2019-02-08 05:30:05'),(1371,35,29,'2019-02-08 06:00:05'),(1372,36,28,'2019-02-08 06:30:05'),(1373,36,28,'2019-02-08 07:00:03'),(1374,36,28,'2019-02-08 07:30:04'),(1375,36,28,'2019-02-08 08:00:03'),(1376,36,28,'2019-02-08 08:30:03'),(1377,36,28,'2019-02-08 09:00:03'),(1378,36,28,'2019-02-08 09:30:03'),(1379,36,28,'2019-02-08 10:00:03'),(1380,36,28,'2019-02-08 10:30:03'),(1381,36,28,'2019-02-08 11:00:03'),(1382,35,29,'2019-02-08 11:30:05'),(1383,35,29,'2019-02-08 12:00:05'),(1384,35,29,'2019-02-08 12:30:05'),(1385,35,29,'2019-02-08 13:00:04'),(1386,35,29,'2019-02-08 13:30:03'),(1387,35,30,'2019-02-08 14:00:04'),(1388,34,29,'2019-02-08 14:30:06'),(1389,34,29,'2019-02-08 15:00:03'),(1390,33,29,'2019-02-08 15:30:06'),(1391,33,29,'2019-02-08 16:00:03'),(1392,33,29,'2019-02-08 16:30:08'),(1393,33,29,'2019-02-08 17:00:03'),(1394,33,29,'2019-02-08 17:30:06'),(1395,33,29,'2019-02-08 18:00:03'),(1396,34,30,'2019-02-08 18:30:08'),(1397,33,31,'2019-02-08 19:00:08'),(1398,34,30,'2019-02-08 19:30:03'),(1399,34,30,'2019-02-08 20:00:09'),(1400,34,30,'2019-02-08 20:30:03'),(1401,34,30,'2019-02-08 21:00:06'),(1402,34,30,'2019-02-08 21:30:03'),(1403,34,30,'2019-02-08 22:00:08'),(1404,34,30,'2019-02-08 22:30:09'),(1405,34,30,'2019-02-08 23:00:08'),(1406,34,29,'2019-02-08 23:30:06'),(1407,34,29,'2019-02-09 00:00:08'),(1408,34,29,'2019-02-09 00:30:03'),(1409,34,29,'2019-02-09 01:00:10'),(1410,34,29,'2019-02-09 01:30:03'),(1411,34,29,'2019-02-09 02:00:04'),(1412,34,29,'2019-02-09 02:30:03'),(1413,35,30,'2019-02-09 03:00:09'),(1414,35,30,'2019-02-09 03:30:06'),(1415,35,30,'2019-02-09 04:00:05'),(1416,35,30,'2019-02-09 04:30:03'),(1417,35,30,'2019-02-09 05:00:03'),(1418,35,30,'2019-02-09 05:30:03'),(1419,35,30,'2019-02-09 06:00:11'),(1420,35,30,'2019-02-09 06:30:03'),(1421,36,29,'2019-02-09 07:00:03'),(1422,36,29,'2019-02-09 07:30:03'),(1423,36,29,'2019-02-09 08:00:04'),(1424,36,29,'2019-02-09 08:30:03'),(1425,36,29,'2019-02-09 09:00:04'),(1426,36,29,'2019-02-09 09:30:08'),(1427,36,29,'2019-02-09 10:00:03'),(1428,36,29,'2019-02-09 10:30:03'),(1429,146,14,'2019-02-09 11:00:04'),(1430,36,29,'2019-02-09 11:30:03'),(1431,36,30,'2019-02-09 12:00:08'),(1432,36,30,'2019-02-09 12:30:03'),(1433,36,30,'2019-02-09 13:00:03'),(1434,35,29,'2019-02-09 13:30:09'),(1435,35,29,'2019-02-09 14:00:03'),(1436,35,29,'2019-02-09 14:30:03'),(1437,34,30,'2019-02-09 15:00:04'),(1438,34,30,'2019-02-09 15:30:05'),(1439,34,30,'2019-02-09 16:00:03'),(1440,33,31,'2019-02-09 16:30:03'),(1441,33,31,'2019-02-09 17:00:08'),(1442,33,31,'2019-02-09 17:30:03'),(1443,32,31,'2019-02-09 18:00:09'),(1444,32,31,'2019-02-09 18:30:03'),(1445,32,31,'2019-02-09 19:00:04'),(1446,32,31,'2019-02-09 19:30:03'),(1447,32,31,'2019-02-09 20:00:03'),(1448,32,31,'2019-02-09 20:30:03'),(1449,32,31,'2019-02-09 21:00:06'),(1450,32,31,'2019-02-09 21:30:03'),(1451,32,31,'2019-02-09 22:00:09'),(1452,32,31,'2019-02-09 22:30:03'),(1453,33,31,'2019-02-09 23:00:08'),(1454,33,31,'2019-02-09 23:30:08'),(1455,33,31,'2019-02-10 00:00:03'),(1456,34,30,'2019-02-10 00:30:03'),(1457,34,30,'2019-02-10 01:00:06'),(1458,34,30,'2019-02-10 01:30:03'),(1459,33,30,'2019-02-10 02:00:08'),(1460,33,30,'2019-02-10 02:30:03'),(1461,33,29,'2019-02-10 03:00:03'),(1462,33,29,'2019-02-10 03:30:06'),(1463,33,29,'2019-02-10 04:00:08'),(1464,35,30,'2019-02-10 04:30:05'),(1465,35,30,'2019-02-10 05:00:03'),(1466,35,30,'2019-02-10 05:30:03'),(1467,35,30,'2019-02-10 06:00:04'),(1468,35,30,'2019-02-10 06:30:08'),(1469,35,29,'2019-02-10 07:00:08'),(1470,35,29,'2019-02-10 07:30:03'),(1471,35,29,'2019-02-10 08:00:06'),(1472,35,29,'2019-02-10 08:30:03'),(1473,35,29,'2019-02-10 09:00:03'),(1474,35,29,'2019-02-10 09:30:03'),(1475,35,29,'2019-02-10 10:00:03'),(1476,35,29,'2019-02-10 10:30:03'),(1477,35,30,'2019-02-10 11:00:03'),(1478,34,30,'2019-02-10 11:30:08'),(1479,34,30,'2019-02-10 12:00:03'),(1480,35,30,'2019-02-10 12:30:03'),(1481,33,29,'2019-02-10 13:00:08'),(1482,33,29,'2019-02-10 13:30:08'),(1483,33,30,'2019-02-10 14:00:08'),(1484,34,30,'2019-02-10 14:30:05'),(1485,33,31,'2019-02-10 15:00:08'),(1486,33,31,'2019-02-10 15:30:03'),(1487,33,31,'2019-02-10 16:00:03'),(1488,33,31,'2019-02-10 16:30:06'),(1489,33,32,'2019-02-10 17:00:08'),(1490,33,32,'2019-02-10 17:30:03'),(1491,32,33,'2019-02-10 18:00:06'),(1492,33,32,'2019-02-10 18:30:03'),(1493,33,33,'2019-02-10 19:00:03'),(1494,33,33,'2019-02-10 19:30:03'),(1495,33,33,'2019-02-10 20:00:03'),(1496,33,33,'2019-02-10 20:30:03'),(1497,144,16,'2019-02-10 21:00:03'),(1498,33,32,'2019-02-10 21:30:08'),(1499,33,32,'2019-02-10 22:00:08'),(1500,33,32,'2019-02-10 22:30:03'),(1501,33,32,'2019-02-10 23:00:08'),(1502,33,32,'2019-02-10 23:30:03'),(1503,1,0,'2019-02-11 00:00:03'),(1504,33,32,'2019-02-11 00:30:08'),(1505,33,32,'2019-02-11 01:00:03'),(1506,33,31,'2019-02-11 01:30:06'),(1507,33,31,'2019-02-11 02:00:03'),(1508,33,31,'2019-02-11 02:30:06'),(1509,33,31,'2019-02-11 03:00:03'),(1510,34,31,'2019-02-11 03:30:06'),(1511,34,31,'2019-02-11 04:00:03'),(1512,34,31,'2019-02-11 04:30:09'),(1513,34,31,'2019-02-11 05:00:08'),(1514,33,31,'2019-02-11 05:30:03'),(1515,34,30,'2019-02-11 06:00:08'),(1516,34,30,'2019-02-11 06:30:09'),(1517,34,30,'2019-02-11 07:00:03'),(1518,34,29,'2019-02-11 07:30:06'),(1519,34,29,'2019-02-11 08:00:04'),(1520,35,30,'2019-02-11 08:30:08'),(1521,35,30,'2019-02-11 09:00:03'),(1522,35,30,'2019-02-11 09:30:03'),(1523,35,29,'2019-02-11 10:00:03'),(1524,35,29,'2019-02-11 10:30:03'),(1525,34,29,'2019-02-11 11:00:03'),(1526,35,28,'2019-02-11 11:30:03'),(1527,35,28,'2019-02-11 12:00:03'),(1528,35,28,'2019-02-11 12:30:08'),(1529,35,28,'2019-02-11 13:00:03'),(1530,35,27,'2019-02-11 13:30:08'),(1531,34,27,'2019-02-11 14:00:05'),(1532,35,27,'2019-02-11 14:30:03'),(1533,34,27,'2019-02-11 15:00:03'),(1534,34,27,'2019-02-11 15:30:03'),(1535,2,27,'2019-02-11 16:00:03'),(1536,34,28,'2019-02-11 16:30:03'),(1537,34,28,'2019-02-11 17:00:03'),(1538,33,28,'2019-02-11 17:30:09'),(1539,34,28,'2019-02-11 18:00:03'),(1540,33,28,'2019-02-11 18:30:08'),(1541,33,28,'2019-02-11 19:00:06'),(1542,33,28,'2019-02-11 19:30:03'),(1543,33,27,'2019-02-11 20:00:03'),(1544,33,27,'2019-02-11 20:30:04'),(1545,34,26,'2019-02-11 21:00:03'),(1546,34,26,'2019-02-11 21:30:03'),(1547,33,25,'2019-02-11 22:00:06'),(1548,33,25,'2019-02-11 22:30:03'),(1549,33,25,'2019-02-11 23:00:06'),(1550,33,25,'2019-02-11 23:30:03'),(1551,33,25,'2019-02-12 00:00:03'),(1552,2,24,'2019-02-12 00:30:03'),(1553,34,24,'2019-02-12 01:00:03'),(1554,34,23,'2019-02-12 01:30:05'),(1555,34,23,'2019-02-12 02:00:08'),(1556,34,23,'2019-02-12 02:30:04'),(1557,34,23,'2019-02-12 03:00:03'),(1558,33,23,'2019-02-12 03:30:03'),(1559,34,22,'2019-02-12 04:00:03'),(1560,34,22,'2019-02-12 04:30:03'),(1561,34,22,'2019-02-12 05:00:03'),(1562,34,22,'2019-02-12 05:30:03'),(1563,34,21,'2019-02-12 06:00:05'),(1564,34,21,'2019-02-12 06:30:03'),(1565,34,20,'2019-02-12 07:00:09'),(1566,34,20,'2019-02-12 07:30:03'),(1567,34,20,'2019-02-12 08:00:03'),(1568,35,21,'2019-02-12 08:30:09'),(1569,35,21,'2019-02-12 09:00:03'),(1570,34,21,'2019-02-12 09:30:03'),(1571,34,21,'2019-02-12 10:00:03'),(1572,34,21,'2019-02-12 10:30:03'),(1573,34,21,'2019-02-12 11:00:08'),(1574,34,21,'2019-02-12 11:30:08'),(1575,34,21,'2019-02-12 12:00:03'),(1576,34,21,'2019-02-12 12:30:03'),(1577,34,20,'2019-02-12 13:00:09'),(1578,34,20,'2019-02-12 13:30:03'),(1579,34,20,'2019-02-12 14:00:09'),(1580,34,20,'2019-02-12 14:30:03'),(1581,34,20,'2019-02-12 15:00:08'),(1582,34,20,'2019-02-12 15:30:03'),(1583,33,21,'2019-02-12 16:00:03'),(1584,33,21,'2019-02-12 16:30:03'),(1585,34,22,'2019-02-12 17:00:06'),(1586,34,22,'2019-02-12 17:30:09'),(1587,34,22,'2019-02-12 18:00:03'),(1588,33,23,'2019-02-12 18:30:03'),(1589,33,23,'2019-02-12 19:00:08'),(1590,33,23,'2019-02-12 19:30:08'),(1591,33,23,'2019-02-12 20:00:09'),(1592,33,23,'2019-02-12 20:30:08'),(1593,33,23,'2019-02-12 21:00:03'),(1594,34,22,'2019-02-12 21:30:05'),(1595,34,22,'2019-02-12 22:00:06'),(1596,34,22,'2019-02-12 22:30:08'),(1597,34,22,'2019-02-12 23:00:03'),(1598,34,22,'2019-02-12 23:30:06'),(1599,34,22,'2019-02-13 00:00:08'),(1600,34,22,'2019-02-13 00:30:06'),(1601,34,22,'2019-02-13 01:00:03'),(1602,34,22,'2019-02-13 01:30:03'),(1603,34,22,'2019-02-13 02:00:03'),(1604,34,22,'2019-02-13 02:30:03'),(1605,34,21,'2019-02-13 03:00:09'),(1606,34,21,'2019-02-13 03:30:08'),(1607,34,21,'2019-02-13 04:00:06'),(1608,34,21,'2019-02-13 04:30:03'),(1609,34,21,'2019-02-13 05:00:06'),(1610,34,21,'2019-02-13 05:30:03'),(1611,34,21,'2019-02-13 06:00:03'),(1612,34,21,'2019-02-13 06:30:08'),(1613,34,20,'2019-02-13 07:00:08'),(1614,34,20,'2019-02-13 07:30:06'),(1615,34,20,'2019-02-13 08:00:03'),(1616,34,20,'2019-02-13 08:30:03'),(1617,35,20,'2019-02-13 09:00:08'),(1618,34,20,'2019-02-13 09:30:03'),(1619,35,20,'2019-02-13 10:00:06'),(1620,35,20,'2019-02-13 10:30:03'),(1621,34,21,'2019-02-13 11:00:03'),(1622,34,21,'2019-02-13 11:30:05'),(1623,34,21,'2019-02-13 12:00:06'),(1624,34,21,'2019-02-13 12:30:09'),(1625,34,21,'2019-02-13 13:00:03'),(1626,34,17,'2019-02-13 13:30:06'),(1627,34,22,'2019-02-13 14:00:06'),(1628,34,22,'2019-02-13 14:30:08'),(1629,34,22,'2019-02-13 15:00:03'),(1630,34,22,'2019-02-13 15:30:03'),(1631,34,22,'2019-02-13 16:00:03'),(1632,34,22,'2019-02-13 16:30:06'),(1633,34,22,'2019-02-13 17:00:03'),(1634,33,23,'2019-02-13 17:30:03'),(1635,34,24,'2019-02-13 18:00:06'),(1636,33,24,'2019-02-13 18:30:08'),(1637,34,24,'2019-02-13 19:00:03'),(1638,33,23,'2019-02-13 19:30:08'),(1639,34,23,'2019-02-13 20:00:06'),(1640,34,23,'2019-02-13 20:30:03'),(1641,34,22,'2019-02-13 21:00:03'),(1642,34,6,'2019-02-13 21:30:03'),(1643,34,22,'2019-02-13 22:00:05'),(1644,34,22,'2019-02-13 22:30:05'),(1645,34,22,'2019-02-13 23:00:05'),(1646,34,22,'2019-02-13 23:30:09'),(1647,34,22,'2019-02-14 00:00:03'),(1648,34,22,'2019-02-14 00:30:03'),(1649,34,22,'2019-02-14 01:00:05'),(1650,34,22,'2019-02-14 01:30:03'),(1651,35,22,'2019-02-14 02:00:03'),(1652,34,22,'2019-02-14 02:30:03'),(1653,35,22,'2019-02-14 03:00:05'),(1654,35,22,'2019-02-14 03:30:05'),(1655,35,22,'2019-02-14 04:00:06'),(1656,35,22,'2019-02-14 04:30:08'),(1657,35,22,'2019-02-14 05:00:06'),(1658,35,22,'2019-02-14 05:30:03'),(1659,35,22,'2019-02-14 06:00:03'),(1660,35,22,'2019-02-14 06:30:03'),(1661,35,22,'2019-02-14 07:00:06'),(1662,35,22,'2019-02-14 07:30:05'),(1663,35,22,'2019-02-14 08:00:03'),(1664,35,22,'2019-02-14 08:30:03'),(1665,35,22,'2019-02-14 09:00:06'),(1666,35,22,'2019-02-14 09:30:03'),(1667,35,22,'2019-02-14 10:00:03'),(1668,35,21,'2019-02-14 10:30:05'),(1669,35,21,'2019-02-14 11:00:03'),(1670,35,21,'2019-02-14 11:30:06'),(1671,35,21,'2019-02-14 12:00:04'),(1672,35,21,'2019-02-14 12:30:05'),(1673,35,21,'2019-02-14 13:00:06'),(1674,35,21,'2019-02-14 13:30:09'),(1675,35,21,'2019-02-14 14:00:04'),(1676,35,21,'2019-02-14 14:30:05'),(1677,35,21,'2019-02-14 15:00:03'),(1678,35,21,'2019-02-14 15:30:06'),(1679,35,21,'2019-02-14 16:00:03'),(1680,35,22,'2019-02-14 16:30:04'),(1681,35,22,'2019-02-14 17:00:03'),(1682,35,22,'2019-02-14 17:30:06'),(1683,35,22,'2019-02-14 18:00:03'),(1684,35,22,'2019-02-14 18:30:04'),(1685,34,23,'2019-02-14 19:00:06'),(1686,35,22,'2019-02-14 19:30:05'),(1687,35,22,'2019-02-14 20:00:06'),(1688,35,22,'2019-02-14 20:30:03'),(1689,35,22,'2019-02-14 21:00:05'),(1690,35,22,'2019-02-14 21:30:06'),(1691,35,22,'2019-02-14 22:00:05'),(1692,35,22,'2019-02-14 22:30:06'),(1693,145,11,'2019-02-14 23:00:03'),(1694,35,22,'2019-02-14 23:30:05'),(1695,35,22,'2019-02-15 00:00:03'),(1696,35,22,'2019-02-15 00:30:03'),(1697,35,22,'2019-02-15 01:00:06'),(1698,35,22,'2019-02-15 01:30:06'),(1699,35,22,'2019-02-15 02:00:03'),(1700,35,21,'2019-02-15 02:30:03'),(1701,35,21,'2019-02-15 03:00:06'),(1702,35,21,'2019-02-15 03:30:06'),(1703,35,21,'2019-02-15 04:00:06'),(1704,35,21,'2019-02-15 04:30:06'),(1705,35,21,'2019-02-15 05:00:03'),(1706,35,21,'2019-02-15 05:30:03'),(1707,35,21,'2019-02-15 06:00:05'),(1708,35,21,'2019-02-15 06:30:03'),(1709,36,20,'2019-02-15 07:00:06'),(1710,36,20,'2019-02-15 07:30:05'),(1711,36,20,'2019-02-15 08:00:03'),(1712,36,20,'2019-02-15 08:30:06'),(1713,36,20,'2019-02-15 09:00:05'),(1714,36,20,'2019-02-15 09:30:06'),(1715,36,20,'2019-02-15 10:00:06'),(1716,35,21,'2019-02-15 10:30:03'),(1717,35,21,'2019-02-15 11:00:05'),(1718,35,21,'2019-02-15 11:30:05'),(1719,35,21,'2019-02-15 12:00:03'),(1720,35,21,'2019-02-15 12:30:04'),(1721,35,22,'2019-02-15 13:00:05'),(1722,36,22,'2019-02-15 13:30:06'),(1723,36,22,'2019-02-15 14:00:06'),(1724,35,22,'2019-02-15 14:30:03'),(1725,36,22,'2019-02-15 15:00:03'),(1726,35,23,'2019-02-15 15:30:06'),(1727,35,23,'2019-02-15 16:00:03'),(1728,35,23,'2019-02-15 16:30:03'),(1729,35,24,'2019-02-15 17:00:03'),(1730,35,24,'2019-02-15 17:30:06'),(1731,35,24,'2019-02-15 18:00:03'),(1732,35,24,'2019-02-15 18:30:06'),(1733,35,24,'2019-02-15 19:00:03'),(1734,34,24,'2019-02-15 19:30:03'),(1735,35,24,'2019-02-15 20:00:03'),(1736,34,25,'2019-02-15 20:30:05'),(1737,145,12,'2019-02-15 21:00:06'),(1738,34,25,'2019-02-15 21:30:05'),(1739,34,25,'2019-02-15 22:00:03'),(1740,35,24,'2019-02-15 22:30:06'),(1741,35,24,'2019-02-15 23:00:03'),(1742,35,24,'2019-02-15 23:30:03'),(1743,35,24,'2019-02-16 00:00:03'),(1744,35,24,'2019-02-16 00:30:06'),(1745,35,24,'2019-02-16 01:00:03'),(1746,35,24,'2019-02-16 01:30:06'),(1747,35,24,'2019-02-16 02:00:03'),(1748,35,23,'2019-02-16 02:30:06'),(1749,35,23,'2019-02-16 03:00:05'),(1750,35,23,'2019-02-16 03:30:03'),(1751,35,23,'2019-02-16 04:00:03'),(1752,35,23,'2019-02-16 04:30:05'),(1753,35,23,'2019-02-16 05:00:05'),(1754,35,23,'2019-02-16 05:30:03'),(1755,36,22,'2019-02-16 06:00:06'),(1756,36,22,'2019-02-16 06:30:03'),(1757,36,22,'2019-02-16 07:00:06'),(1758,36,22,'2019-02-16 07:30:06'),(1759,36,22,'2019-02-16 08:00:06'),(1760,36,22,'2019-02-16 08:30:03'),(1761,36,22,'2019-02-16 09:00:05'),(1762,36,22,'2019-02-16 09:30:05'),(1763,36,22,'2019-02-16 10:00:03'),(1764,36,22,'2019-02-16 10:30:03'),(1765,36,22,'2019-02-16 11:00:03'),(1766,35,23,'2019-02-16 11:30:03'),(1767,35,23,'2019-02-16 12:00:06'),(1768,35,23,'2019-02-16 12:30:06'),(1769,35,23,'2019-02-16 13:00:04'),(1770,35,23,'2019-02-16 13:30:05'),(1771,35,23,'2019-02-16 14:00:03'),(1772,35,24,'2019-02-16 14:30:06'),(1773,35,24,'2019-02-16 15:00:03'),(1774,145,12,'2019-02-16 15:30:03'),(1775,34,25,'2019-02-16 16:00:06'),(1776,35,25,'2019-02-16 16:30:06'),(1777,35,26,'2019-02-16 17:00:06'),(1778,35,26,'2019-02-16 17:30:06'),(1779,35,26,'2019-02-16 18:00:04'),(1780,34,27,'2019-02-16 18:30:06'),(1781,34,27,'2019-02-16 19:00:03'),(1782,34,27,'2019-02-16 19:30:06'),(1783,34,27,'2019-02-16 20:00:05'),(1784,34,27,'2019-02-16 20:30:06'),(1785,145,13,'2019-02-16 21:00:06'),(1786,34,27,'2019-02-16 21:30:06'),(1787,34,27,'2019-02-16 22:00:03'),(1788,34,27,'2019-02-16 22:30:03'),(1789,35,26,'2019-02-16 23:00:06'),(1790,35,26,'2019-02-16 23:30:03'),(1791,35,26,'2019-02-17 00:00:03'),(1792,145,13,'2019-02-17 00:30:06'),(1793,35,26,'2019-02-17 01:00:03'),(1794,35,26,'2019-02-17 01:30:03'),(1795,35,26,'2019-02-17 02:00:06'),(1796,35,26,'2019-02-17 02:30:03'),(1797,35,26,'2019-02-17 03:30:06'),(1798,35,26,'2019-02-17 04:00:06'),(1799,35,26,'2019-02-17 04:30:03'),(1800,35,25,'2019-02-17 05:00:05'),(1801,35,25,'2019-02-17 05:30:03'),(1802,35,25,'2019-02-17 06:00:08'),(1803,35,25,'2019-02-17 06:30:03'),(1804,35,25,'2019-02-17 07:00:03'),(1805,35,25,'2019-02-17 07:30:03'),(1806,35,25,'2019-02-17 08:00:03'),(1807,35,25,'2019-02-17 08:30:06'),(1808,35,25,'2019-02-17 09:00:03'),(1809,35,25,'2019-02-17 09:30:03'),(1810,35,25,'2019-02-17 10:00:06'),(1811,35,25,'2019-02-17 10:30:05'),(1812,36,25,'2019-02-17 11:00:05'),(1813,36,25,'2019-02-17 11:30:06'),(1814,36,26,'2019-02-17 12:00:05'),(1815,36,26,'2019-02-17 12:30:06'),(1816,36,26,'2019-02-17 13:00:03'),(1817,36,26,'2019-02-17 13:30:03'),(1818,36,26,'2019-02-17 14:00:06'),(1819,35,29,'2019-02-17 20:30:06'),(1820,35,29,'2019-02-17 21:00:06'),(1821,35,29,'2019-02-17 21:30:04'),(1822,35,29,'2019-02-17 22:00:03'),(1823,35,29,'2019-02-17 22:30:05'),(1824,35,29,'2019-02-17 23:00:03'),(1825,35,29,'2019-02-17 23:30:05'),(1826,35,29,'2019-02-18 00:00:05'),(1827,35,29,'2019-02-18 00:30:03'),(1828,36,28,'2019-02-18 01:00:05'),(1829,36,28,'2019-02-18 01:30:06'),(1830,36,28,'2019-02-18 02:00:03'),(1831,36,28,'2019-02-18 02:30:03'),(1832,36,28,'2019-02-18 03:00:03'),(1833,36,28,'2019-02-18 03:30:03'),(1834,36,28,'2019-02-18 04:00:03'),(1835,35,28,'2019-02-18 04:30:03'),(1836,35,28,'2019-02-18 05:00:06'),(1837,35,28,'2019-02-18 05:30:03'),(1838,35,27,'2019-02-18 06:00:06'),(1839,35,27,'2019-02-18 06:30:06'),(1840,35,27,'2019-02-18 07:00:05'),(1841,35,27,'2019-02-18 07:30:06'),(1842,35,27,'2019-02-18 08:00:03'),(1843,36,26,'2019-02-18 08:30:06'),(1844,36,2,'2019-02-18 09:00:03'),(1845,36,26,'2019-02-18 09:30:03'),(1846,35,27,'2019-02-18 10:00:04'),(1847,35,27,'2019-02-18 10:30:04'),(1848,36,27,'2019-02-18 11:00:06'),(1849,36,27,'2019-02-18 11:30:06'),(1850,36,27,'2019-02-18 12:00:03'),(1851,36,28,'2019-02-18 12:30:06'),(1852,36,28,'2019-02-18 13:00:05'),(1853,36,28,'2019-02-18 13:30:03'),(1854,36,28,'2019-02-18 14:00:03'),(1855,36,28,'2019-02-18 14:30:03'),(1856,35,29,'2019-02-18 15:00:06'),(1857,35,29,'2019-02-18 15:30:06'),(1858,35,29,'2019-02-18 16:00:03'),(1859,35,29,'2019-02-18 16:30:04'),(1860,36,29,'2019-02-18 17:00:06'),(1861,35,29,'2019-02-18 17:30:03'),(1862,36,30,'2019-02-18 18:00:06'),(1863,35,30,'2019-02-18 18:30:04'),(1864,34,29,'2019-02-18 19:00:08'),(1865,34,29,'2019-02-18 19:30:03'),(1866,34,29,'2019-02-18 20:00:06'),(1867,145,14,'2019-02-18 20:30:03'),(1868,35,30,'2019-02-18 21:00:08'),(1869,35,30,'2019-02-18 21:30:04'),(1870,35,30,'2019-02-18 22:00:04'),(1871,35,30,'2019-02-18 22:30:03'),(1872,35,30,'2019-02-18 23:00:03'),(1873,35,30,'2019-02-18 23:30:03'),(1874,35,30,'2019-02-19 00:00:03'),(1875,35,29,'2019-02-19 00:30:05'),(1876,35,29,'2019-02-19 01:00:03'),(1877,35,29,'2019-02-19 01:30:03'),(1878,35,29,'2019-02-19 02:00:03'),(1879,35,29,'2019-02-19 02:30:03'),(1880,35,29,'2019-02-19 03:00:05'),(1881,35,29,'2019-02-19 03:30:05'),(1882,35,29,'2019-02-19 04:00:05'),(1883,35,29,'2019-02-19 04:30:03'),(1884,35,29,'2019-02-19 05:00:05'),(1885,35,29,'2019-02-19 05:30:09'),(1886,36,28,'2019-02-19 06:00:03'),(1887,36,28,'2019-02-19 06:30:03'),(1888,36,28,'2019-02-19 07:00:03'),(1889,36,28,'2019-02-19 07:30:03'),(1890,36,28,'2019-02-19 08:00:06'),(1891,36,28,'2019-02-19 08:30:03'),(1892,36,28,'2019-02-19 09:00:05'),(1893,36,28,'2019-02-19 09:30:05'),(1894,36,28,'2019-02-19 10:00:03'),(1895,36,28,'2019-02-19 10:30:06'),(1896,36,28,'2019-02-19 11:00:03'),(1897,35,29,'2019-02-19 11:30:03'),(1898,35,29,'2019-02-19 12:00:04'),(1899,35,29,'2019-02-19 12:30:06'),(1900,35,29,'2019-02-19 13:00:03'),(1901,35,29,'2019-02-19 13:30:06'),(1902,35,30,'2019-02-19 14:00:03'),(1903,35,30,'2019-02-19 14:30:05'),(1904,35,30,'2019-02-19 15:00:03'),(1905,34,29,'2019-02-19 15:30:06'),(1906,34,29,'2019-02-19 16:00:06'),(1907,34,30,'2019-02-19 16:30:06'),(1908,34,30,'2019-02-19 17:00:03'),(1909,34,31,'2019-02-19 17:30:03'),(1910,34,31,'2019-02-19 18:00:06'),(1911,34,31,'2019-02-19 18:30:03'),(1912,34,31,'2019-02-19 19:00:06'),(1913,34,31,'2019-02-19 19:30:04'),(1914,33,31,'2019-02-19 20:00:05'),(1915,33,31,'2019-02-19 20:30:03'),(1916,33,31,'2019-02-19 21:00:06'),(1917,33,31,'2019-02-19 21:30:03'),(1918,33,31,'2019-02-19 22:00:03'),(1919,33,31,'2019-02-19 22:30:03'),(1920,34,31,'2019-02-19 23:00:06'),(1921,34,31,'2019-02-19 23:30:03'),(1922,34,31,'2019-02-20 00:00:03'),(1923,33,31,'2019-02-20 00:30:05'),(1924,33,31,'2019-02-20 01:00:04'),(1925,33,31,'2019-02-20 01:30:05'),(1926,33,31,'2019-02-20 02:00:03'),(1927,34,30,'2019-02-20 02:30:05'),(1928,34,30,'2019-02-20 03:00:03'),(1929,34,30,'2019-02-20 03:30:05'),(1930,34,30,'2019-02-20 04:00:06'),(1931,34,30,'2019-02-20 04:30:03'),(1932,34,30,'2019-02-20 05:00:03'),(1933,34,29,'2019-02-20 05:30:03'),(1934,34,29,'2019-02-20 06:00:03'),(1935,34,29,'2019-02-20 06:30:03'),(1936,34,29,'2019-02-20 07:00:03'),(1937,34,29,'2019-02-20 07:30:03'),(1938,34,29,'2019-02-20 08:00:04'),(1939,34,31,'2019-02-20 08:30:05'),(1940,35,30,'2019-02-20 09:00:03'),(1941,34,29,'2019-02-20 09:30:05'),(1942,34,29,'2019-02-20 10:00:05'),(1943,34,29,'2019-02-20 10:30:06'),(1944,34,29,'2019-02-20 11:00:06'),(1945,34,30,'2019-02-20 11:30:06'),(1946,34,30,'2019-02-20 12:00:03'),(1947,34,30,'2019-02-20 12:30:03'),(1948,35,30,'2019-02-20 13:00:03'),(1949,35,30,'2019-02-20 13:30:04'),(1950,34,31,'2019-02-20 14:00:06'),(1951,34,31,'2019-02-20 14:30:06'),(1952,34,31,'2019-02-20 15:00:03'),(1953,34,31,'2019-02-20 15:30:06'),(1954,34,31,'2019-02-20 16:00:03'),(1955,34,32,'2019-02-20 16:30:03'),(1956,34,32,'2019-02-20 17:00:03'),(1957,33,33,'2019-02-20 17:30:03'),(1958,33,33,'2019-02-20 18:00:03'),(1959,33,34,'2019-02-20 18:30:06'),(1960,33,34,'2019-02-20 19:00:06'),(1961,33,34,'2019-02-20 19:30:03'),(1962,33,34,'2019-02-20 20:00:05'),(1963,33,34,'2019-02-20 20:30:03'),(1964,33,33,'2019-02-20 21:00:06'),(1965,33,33,'2019-02-20 21:30:03'),(1966,33,33,'2019-02-20 22:00:03'),(1967,33,33,'2019-02-20 22:30:06'),(1968,33,33,'2019-02-20 23:00:03'),(1969,33,33,'2019-02-20 23:30:03'),(1970,33,33,'2019-02-21 00:00:03'),(1971,34,32,'2019-02-21 00:30:03'),(1972,34,32,'2019-02-21 01:00:03'),(1973,34,32,'2019-02-21 01:30:06'),(1974,33,32,'2019-02-21 02:00:06'),(1975,34,32,'2019-02-21 02:30:03'),(1976,34,31,'2019-02-21 03:00:06'),(1977,34,31,'2019-02-21 03:30:09'),(1978,34,31,'2019-02-21 04:00:05'),(1979,34,31,'2019-02-21 04:30:03'),(1980,33,31,'2019-02-21 05:00:03'),(1981,33,31,'2019-02-21 05:30:06'),(1982,33,31,'2019-02-21 06:00:03'),(1983,33,31,'2019-02-21 06:30:05'),(1984,33,31,'2019-02-21 07:00:05'),(1985,33,31,'2019-02-21 07:30:03'),(1986,34,30,'2019-02-21 08:00:03'),(1987,33,30,'2019-02-21 08:30:06'),(1988,33,30,'2019-02-21 09:00:03'),(1989,33,30,'2019-02-21 09:30:05'),(1990,33,30,'2019-02-21 10:00:03'),(1991,33,30,'2019-02-21 10:30:03'),(1992,34,30,'2019-02-21 11:00:06'),(1993,34,30,'2019-02-21 11:30:03'),(1994,34,30,'2019-02-21 12:00:05'),(1995,34,30,'2019-02-21 12:30:06'),(1996,34,30,'2019-02-21 13:00:05'),(1997,33,31,'2019-02-21 13:30:06'),(1998,33,31,'2019-02-21 14:00:06'),(1999,33,31,'2019-02-21 14:30:03'),(2000,33,31,'2019-02-21 15:00:06'),(2001,33,31,'2019-02-21 15:30:03'),(2002,33,31,'2019-02-21 16:00:03'),(2003,34,31,'2019-02-21 16:30:03'),(2004,34,32,'2019-02-21 17:00:06'),(2005,33,33,'2019-02-21 17:30:05'),(2006,33,33,'2019-02-21 18:00:06'),(2007,33,33,'2019-02-21 18:30:03'),(2008,33,33,'2019-02-21 19:00:03'),(2009,33,33,'2019-02-21 19:30:06'),(2010,33,33,'2019-02-21 20:00:03'),(2011,33,33,'2019-02-21 20:30:04'),(2012,33,33,'2019-02-21 21:00:03'),(2013,34,32,'2019-02-21 21:30:06'),(2014,34,32,'2019-02-21 22:00:06'),(2015,34,32,'2019-02-21 22:30:05'),(2016,34,32,'2019-02-21 23:00:03'),(2017,32,32,'2019-02-21 23:30:03'),(2018,34,32,'2019-02-22 00:00:03'),(2019,34,32,'2019-02-22 00:30:06'),(2020,34,31,'2019-02-22 01:00:05'),(2021,34,31,'2019-02-22 01:30:03'),(2022,34,31,'2019-02-22 02:00:06'),(2023,34,31,'2019-02-22 02:30:05'),(2024,34,31,'2019-02-22 03:00:05'),(2025,34,31,'2019-02-22 03:30:03'),(2026,34,31,'2019-02-22 04:00:04'),(2027,34,31,'2019-02-22 04:30:04'),(2028,34,31,'2019-02-22 05:00:04'),(2029,34,31,'2019-02-22 05:30:06'),(2030,33,31,'2019-02-22 06:00:06'),(2031,33,31,'2019-02-22 06:30:03'),(2032,34,30,'2019-02-22 07:00:05'),(2033,34,30,'2019-02-22 07:30:03'),(2034,34,30,'2019-02-22 08:00:06'),(2035,34,30,'2019-02-22 08:30:03'),(2036,34,30,'2019-02-22 09:00:03'),(2037,34,30,'2019-02-22 09:30:06'),(2038,34,30,'2019-02-22 10:00:05'),(2039,34,30,'2019-02-22 10:30:03'),(2040,34,29,'2019-02-22 11:00:03'),(2041,34,29,'2019-02-22 11:30:03'),(2042,34,29,'2019-02-22 12:00:03'),(2043,34,29,'2019-02-22 12:30:05'),(2044,34,29,'2019-02-22 13:00:06'),(2045,34,29,'2019-02-22 13:30:06'),(2046,34,29,'2019-02-22 14:00:05'),(2047,34,30,'2019-02-22 14:30:03'),(2048,34,30,'2019-02-22 15:00:06'),(2049,34,30,'2019-02-22 15:30:03'),(2050,34,30,'2019-02-22 16:00:03'),(2051,35,30,'2019-02-22 16:30:05'),(2052,34,30,'2019-02-22 17:00:06'),(2053,34,30,'2019-02-22 17:30:06'),(2054,35,30,'2019-02-22 18:00:05'),(2055,35,30,'2019-02-22 18:30:03'),(2056,35,30,'2019-02-22 19:00:05'),(2057,35,30,'2019-02-22 19:30:05'),(2058,35,30,'2019-02-22 20:00:05'),(2059,35,30,'2019-02-22 20:30:03'),(2060,145,15,'2019-02-22 21:00:05'),(2061,35,30,'2019-02-22 21:30:06'),(2062,35,30,'2019-02-22 22:00:05'),(2063,35,29,'2019-02-22 22:30:06'),(2064,35,29,'2019-02-22 23:00:06'),(2065,35,29,'2019-02-22 23:30:05'),(2066,35,29,'2019-02-23 00:00:05'),(2067,35,29,'2019-02-23 00:30:03'),(2068,36,31,'2019-02-23 01:00:03'),(2069,37,30,'2019-02-23 01:30:05'),(2070,37,30,'2019-02-23 02:00:06'),(2071,37,30,'2019-02-23 02:30:06'),(2072,37,30,'2019-02-23 03:00:03'),(2073,37,29,'2019-02-23 03:30:04'),(2074,37,29,'2019-02-23 04:00:03'),(2075,37,29,'2019-02-23 04:30:03'),(2076,37,29,'2019-02-23 05:00:06'),(2077,37,29,'2019-02-23 05:30:03'),(2078,37,29,'2019-02-23 06:00:06'),(2079,37,29,'2019-02-23 06:30:06'),(2080,37,29,'2019-02-23 07:00:06'),(2081,37,29,'2019-02-23 07:30:05'),(2082,37,29,'2019-02-23 08:00:03'),(2083,37,29,'2019-02-23 08:30:05'),(2084,37,29,'2019-02-23 09:00:03'),(2085,37,29,'2019-02-23 09:30:06'),(2086,37,29,'2019-02-23 10:00:03'),(2087,37,29,'2019-02-23 10:30:06'),(2088,37,29,'2019-02-23 11:00:08'),(2089,37,29,'2019-02-23 11:30:06'),(2090,37,29,'2019-02-23 12:00:06'),(2091,37,29,'2019-02-23 12:30:06'),(2092,37,29,'2019-02-23 13:00:05'),(2093,37,29,'2019-02-23 13:30:03'),(2094,38,28,'2019-02-23 14:00:06'),(2095,37,29,'2019-02-23 14:30:03'),(2096,38,28,'2019-02-23 15:00:03'),(2097,38,28,'2019-02-23 15:30:03'),(2098,38,28,'2019-02-23 16:00:03'),(2099,38,28,'2019-02-23 16:30:06'),(2100,37,29,'2019-02-23 17:00:03'),(2101,38,29,'2019-02-23 17:30:06'),(2102,37,29,'2019-02-23 18:00:03'),(2103,38,29,'2019-02-23 18:30:03'),(2104,39,28,'2019-02-23 19:00:03'),(2105,39,28,'2019-02-23 19:30:03'),(2106,39,28,'2019-02-23 20:00:04'),(2107,39,28,'2019-02-23 20:30:06'),(2108,39,28,'2019-02-23 21:00:03'),(2109,39,28,'2019-02-23 21:30:06'),(2110,39,28,'2019-02-23 22:00:06'),(2111,39,28,'2019-02-23 22:30:05'),(2112,39,28,'2019-02-23 23:00:05'),(2113,39,28,'2019-02-23 23:30:03'),(2114,39,28,'2019-02-24 00:00:06'),(2115,39,28,'2019-02-24 00:30:03'),(2116,39,28,'2019-02-24 01:00:03'),(2117,39,27,'2019-02-24 01:30:08'),(2118,38,27,'2019-02-24 02:00:06'),(2119,39,27,'2019-02-24 02:30:06'),(2120,39,27,'2019-02-24 03:00:06'),(2121,39,27,'2019-02-24 03:30:05'),(2122,40,26,'2019-02-24 04:00:05'),(2123,39,26,'2019-02-24 04:30:04'),(2124,40,26,'2019-02-24 05:00:05'),(2125,39,26,'2019-02-24 05:30:05'),(2126,39,26,'2019-02-24 06:00:03'),(2127,38,26,'2019-02-24 06:30:06'),(2128,38,26,'2019-02-24 07:00:03'),(2129,38,25,'2019-02-24 07:30:03'),(2130,37,25,'2019-02-24 08:00:05'),(2131,37,25,'2019-02-24 08:30:05'),(2132,37,25,'2019-02-24 09:00:06'),(2133,36,25,'2019-02-24 09:30:06'),(2134,36,25,'2019-02-24 10:00:03'),(2135,37,24,'2019-02-24 10:30:05'),(2136,37,24,'2019-02-24 11:00:06'),(2137,37,24,'2019-02-24 11:30:06'),(2138,36,24,'2019-02-24 12:00:05'),(2139,36,24,'2019-02-24 12:30:06'),(2140,36,24,'2019-02-24 13:00:03'),(2141,34,23,'2019-02-24 13:30:06'),(2142,34,24,'2019-02-24 14:00:05'),(2143,34,24,'2019-02-24 14:30:05'),(2144,34,24,'2019-02-24 15:00:06'),(2145,34,24,'2019-02-24 15:30:06'),(2146,34,24,'2019-02-24 16:00:06'),(2147,34,24,'2019-02-24 16:30:06'),(2148,33,25,'2019-02-24 17:00:06'),(2149,33,25,'2019-02-24 17:30:04'),(2150,34,25,'2019-02-24 18:00:03'),(2151,34,25,'2019-02-24 18:30:03'),(2152,34,25,'2019-02-24 19:00:06'),(2153,34,25,'2019-02-24 19:30:03'),(2154,34,25,'2019-02-24 20:00:05'),(2155,34,25,'2019-02-24 20:30:06'),(2156,34,25,'2019-02-24 21:00:04'),(2157,33,25,'2019-02-24 21:30:03'),(2158,34,24,'2019-02-24 22:00:06'),(2159,34,24,'2019-02-24 22:30:06'),(2160,34,24,'2019-02-24 23:00:05'),(2161,34,24,'2019-02-24 23:30:05'),(2162,34,24,'2019-02-25 00:00:06'),(2163,34,23,'2019-02-25 00:30:05'),(2164,34,23,'2019-02-25 01:00:03'),(2165,34,23,'2019-02-25 01:30:03'),(2166,34,23,'2019-02-25 02:00:06'),(2167,34,23,'2019-02-25 02:30:03'),(2168,34,23,'2019-02-25 03:00:03'),(2169,145,11,'2019-02-25 03:30:06'),(2170,145,11,'2019-02-25 04:00:05'),(2171,35,22,'2019-02-25 04:30:04'),(2172,33,16,'2019-02-25 05:00:03'),(2173,34,22,'2019-02-25 05:30:03'),(2174,34,22,'2019-02-25 06:00:06'),(2175,34,21,'2019-02-25 06:30:06'),(2176,34,21,'2019-02-25 07:00:05'),(2177,34,21,'2019-02-25 07:30:05'),(2178,34,21,'2019-02-25 08:00:06'),(2179,34,21,'2019-02-25 08:30:03'),(2180,34,21,'2019-02-25 09:00:06'),(2181,34,21,'2019-02-25 09:30:03'),(2182,35,20,'2019-02-25 10:00:05'),(2183,35,20,'2019-02-25 10:30:06'),(2184,35,20,'2019-02-25 11:00:03'),(2185,35,20,'2019-02-25 11:30:05'),(2186,34,20,'2019-02-25 12:00:06'),(2187,34,20,'2019-02-25 12:30:04'),(2188,34,20,'2019-02-25 13:00:03'),(2189,34,21,'2019-02-25 13:30:06'),(2190,34,21,'2019-02-25 14:00:03'),(2191,34,21,'2019-02-25 14:30:06'),(2192,34,21,'2019-02-25 15:00:06'),(2193,34,21,'2019-02-25 15:30:06'),(2194,34,21,'2019-02-25 16:00:03'),(2195,34,22,'2019-02-25 16:30:06'),(2196,34,22,'2019-02-25 17:00:06'),(2197,34,22,'2019-02-25 17:30:06'),(2198,34,22,'2019-02-25 18:00:03'),(2199,34,22,'2019-02-25 18:30:05'),(2200,34,22,'2019-02-25 19:00:08'),(2201,34,22,'2019-02-25 19:30:03'),(2202,34,22,'2019-02-25 20:00:03'),(2203,34,22,'2019-02-25 20:30:03'),(2204,34,22,'2019-02-25 21:00:05'),(2205,34,22,'2019-02-25 21:30:03'),(2206,34,21,'2019-02-25 22:00:05'),(2207,33,21,'2019-02-25 22:30:06'),(2208,33,21,'2019-02-25 23:00:09'),(2209,33,21,'2019-02-25 23:30:06'),(2210,33,21,'2019-02-26 00:00:06'),(2211,33,21,'2019-02-26 00:30:03'),(2212,34,20,'2019-02-26 01:00:03'),(2213,34,20,'2019-02-26 01:30:04'),(2214,34,20,'2019-02-26 02:00:03'),(2215,34,20,'2019-02-26 02:30:05'),(2216,34,20,'2019-02-26 03:00:04'),(2217,34,21,'2019-02-26 03:30:06'),(2218,35,20,'2019-02-26 04:00:06'),(2219,35,20,'2019-02-26 04:30:06'),(2220,35,20,'2019-02-26 05:00:03'),(2221,35,20,'2019-02-26 05:30:03'),(2222,35,23,'2019-02-26 06:00:06'),(2223,36,22,'2019-02-26 06:30:05'),(2224,36,22,'2019-02-26 07:00:03'),(2225,36,22,'2019-02-26 07:30:06'),(2226,36,22,'2019-02-26 08:00:06'),(2227,36,22,'2019-02-26 08:30:06'),(2228,36,22,'2019-02-26 09:00:03'),(2229,36,21,'2019-02-26 09:30:06'),(2230,36,21,'2019-02-26 10:00:05'),(2231,36,21,'2019-02-26 10:30:05'),(2232,36,21,'2019-02-26 11:00:03'),(2233,36,21,'2019-02-26 11:30:05'),(2234,36,21,'2019-02-26 12:00:03'),(2235,36,21,'2019-02-26 12:30:06'),(2236,36,21,'2019-02-26 13:00:03'),(2237,36,21,'2019-02-26 13:30:05'),(2238,36,21,'2019-02-26 14:00:03'),(2239,36,22,'2019-02-26 14:30:06'),(2240,36,22,'2019-02-26 15:00:06'),(2241,36,22,'2019-02-26 15:30:06'),(2242,145,10,'2019-02-26 16:00:05'),(2243,35,20,'2019-02-26 16:30:05'),(2244,35,20,'2019-02-26 17:00:03'),(2245,34,21,'2019-02-26 17:30:03'),(2246,34,20,'2019-02-26 18:00:05'),(2247,34,20,'2019-02-26 18:30:09'),(2248,34,20,'2019-02-26 19:00:03'),(2249,34,20,'2019-02-26 19:30:03'),(2250,34,20,'2019-02-26 20:00:03'),(2251,32,20,'2019-02-26 20:30:03'),(2252,34,20,'2019-02-26 21:00:06'),(2253,34,20,'2019-02-26 21:30:03'),(2254,33,20,'2019-02-26 22:00:06'),(2255,33,20,'2019-02-26 22:30:05'),(2256,34,21,'2019-02-26 23:00:06'),(2257,34,21,'2019-02-26 23:30:03'),(2258,34,21,'2019-02-27 00:00:03'),(2259,35,20,'2019-02-27 00:30:03'),(2260,35,23,'2019-02-27 01:00:05'),(2261,35,23,'2019-02-27 01:30:04'),(2262,35,23,'2019-02-27 02:00:03'),(2263,35,23,'2019-02-27 02:30:03'),(2264,36,22,'2019-02-27 03:00:06'),(2265,36,22,'2019-02-27 03:30:06'),(2266,36,22,'2019-02-27 04:00:03'),(2267,36,22,'2019-02-27 04:30:03'),(2268,36,21,'2019-02-27 05:00:06'),(2269,36,21,'2019-02-27 05:30:03'),(2270,36,21,'2019-02-27 06:00:06'),(2271,36,21,'2019-02-27 06:30:06'),(2272,36,21,'2019-02-27 07:00:05'),(2273,36,21,'2019-02-27 07:30:06'),(2274,36,21,'2019-02-27 08:00:03'),(2275,36,21,'2019-02-27 08:30:06'),(2276,36,21,'2019-02-27 09:00:05'),(2277,36,21,'2019-02-27 09:30:03'),(2278,36,21,'2019-02-27 10:00:03'),(2279,36,21,'2019-02-27 10:30:03'),(2280,36,21,'2019-02-27 11:00:06'),(2281,36,22,'2019-02-27 11:30:08'),(2282,36,22,'2019-02-27 12:00:05'),(2283,36,22,'2019-02-27 12:30:03'),(2284,36,22,'2019-02-27 13:00:03'),(2285,35,20,'2019-02-27 13:30:05'),(2286,34,21,'2019-02-27 14:00:06'),(2287,34,20,'2019-02-27 14:30:05'),(2288,34,21,'2019-02-27 15:00:03'),(2289,34,20,'2019-02-27 15:30:08'),(2290,33,21,'2019-02-27 16:00:06'),(2291,33,21,'2019-02-27 16:30:03'),(2292,33,21,'2019-02-27 17:00:03'),(2293,34,22,'2019-02-27 17:30:03'),(2294,34,22,'2019-02-27 18:00:05'),(2295,34,22,'2019-02-27 18:30:03'),(2296,34,22,'2019-02-27 19:00:05'),(2297,33,23,'2019-02-27 19:30:06'),(2298,33,23,'2019-02-27 20:00:03'),(2299,33,23,'2019-02-27 20:30:06'),(2300,33,23,'2019-02-27 21:00:03'),(2301,34,22,'2019-02-27 21:30:06'),(2302,34,22,'2019-02-27 22:00:06'),(2303,34,22,'2019-02-27 22:30:03'),(2304,34,22,'2019-02-27 23:00:05'),(2305,34,22,'2019-02-27 23:30:05'),(2306,34,22,'2019-02-28 00:00:06'),(2307,34,22,'2019-02-28 00:30:06'),(2308,34,22,'2019-02-28 01:00:03'),(2309,34,21,'2019-02-28 01:30:03'),(2310,34,21,'2019-02-28 02:00:05'),(2311,34,21,'2019-02-28 02:30:03'),(2312,34,21,'2019-02-28 03:00:06'),(2313,34,21,'2019-02-28 03:30:05'),(2314,34,21,'2019-02-28 04:00:03'),(2315,35,20,'2019-02-28 04:30:04'),(2316,35,20,'2019-02-28 05:00:03'),(2317,35,20,'2019-02-28 05:30:06'),(2318,35,20,'2019-02-28 06:00:03'),(2319,35,20,'2019-02-28 06:30:03'),(2320,35,20,'2019-02-28 07:00:03'),(2321,34,20,'2019-02-28 07:30:03'),(2322,35,21,'2019-02-28 08:00:05'),(2323,35,21,'2019-02-28 08:30:06'),(2324,35,21,'2019-02-28 09:00:05'),(2325,35,21,'2019-02-28 09:30:03'),(2326,35,21,'2019-02-28 10:00:03'),(2327,35,21,'2019-02-28 10:30:03'),(2328,35,21,'2019-02-28 11:00:03'),(2329,35,21,'2019-02-28 11:30:06'),(2330,34,20,'2019-02-28 12:00:06'),(2331,34,20,'2019-02-28 12:30:03'),(2332,35,20,'2019-02-28 13:00:03'),(2333,35,20,'2019-02-28 13:30:03'),(2334,35,20,'2019-02-28 14:00:03'),(2335,34,21,'2019-02-28 14:30:06'),(2336,34,21,'2019-02-28 15:00:06'),(2337,34,21,'2019-02-28 15:30:06'),(2338,34,21,'2019-02-28 16:00:04'),(2339,34,22,'2019-02-28 16:30:06'),(2340,34,22,'2019-02-28 17:00:03'),(2341,35,22,'2019-02-28 17:30:03'),(2342,34,23,'2019-02-28 18:00:06'),(2343,34,23,'2019-02-28 18:30:04'),(2344,34,23,'2019-02-28 19:00:03'),(2345,34,23,'2019-02-28 19:30:03'),(2346,34,23,'2019-02-28 20:00:04'),(2347,34,23,'2019-02-28 20:30:04'),(2348,34,23,'2019-02-28 21:00:03'),(2349,35,22,'2019-02-28 21:30:05'),(2350,35,22,'2019-02-28 22:00:03'),(2351,35,22,'2019-02-28 22:30:06'),(2352,35,22,'2019-02-28 23:00:05'),(2353,35,22,'2019-02-28 23:30:03'),(2354,34,22,'2019-03-01 00:00:03'),(2355,34,22,'2019-03-01 00:30:03'),(2356,34,22,'2019-03-01 01:00:03'),(2357,34,22,'2019-03-01 01:30:03'),(2358,34,22,'2019-03-01 02:00:05'),(2359,34,21,'2019-03-01 02:30:05'),(2360,34,21,'2019-03-01 03:00:03'),(2361,34,21,'2019-03-01 03:30:09'),(2362,34,21,'2019-03-01 04:00:03'),(2363,34,21,'2019-03-01 04:30:06'),(2364,32,21,'2019-03-01 05:00:03'),(2365,34,21,'2019-03-01 05:30:03'),(2366,34,21,'2019-03-01 06:00:03'),(2367,34,21,'2019-03-01 06:30:06'),(2368,34,21,'2019-03-01 07:00:06'),(2369,34,21,'2019-03-01 07:30:03'),(2370,35,20,'2019-03-01 08:00:03'),(2371,35,20,'2019-03-01 08:30:05'),(2372,35,20,'2019-03-01 09:00:05'),(2373,34,21,'2019-03-01 09:30:06'),(2374,35,21,'2019-03-01 10:00:06'),(2375,35,21,'2019-03-01 10:30:05'),(2376,35,21,'2019-03-01 11:00:03'),(2377,35,22,'2019-03-01 11:30:05'),(2378,35,22,'2019-03-01 12:00:06'),(2379,35,22,'2019-03-01 12:30:03'),(2380,36,22,'2019-03-01 13:00:06'),(2381,36,22,'2019-03-01 13:30:03'),(2382,36,22,'2019-03-01 14:00:03'),(2383,35,23,'2019-03-01 14:30:04'),(2384,35,23,'2019-03-01 15:00:06'),(2385,35,24,'2019-03-01 15:30:06'),(2386,35,24,'2019-03-01 16:00:03'),(2387,35,24,'2019-03-01 16:30:03'),(2388,35,24,'2019-03-01 17:00:03'),(2389,145,12,'2019-03-01 17:30:06'),(2390,145,12,'2019-03-01 18:00:03'),(2391,34,26,'2019-03-01 18:30:06'),(2392,34,26,'2019-03-01 19:00:06'),(2393,34,26,'2019-03-01 19:30:03'),(2394,34,26,'2019-03-01 20:00:03'),(2395,34,26,'2019-03-01 20:30:05'),(2396,34,26,'2019-03-01 21:00:06'),(2397,34,26,'2019-03-01 21:30:06'),(2398,34,26,'2019-03-01 22:00:03'),(2399,34,26,'2019-03-01 22:30:06'),(2400,35,26,'2019-03-01 23:00:06'),(2401,35,26,'2019-03-01 23:30:06'),(2402,35,26,'2019-03-02 00:00:03'),(2403,34,26,'2019-03-02 00:30:03'),(2404,35,26,'2019-03-02 01:00:06'),(2405,35,26,'2019-03-02 01:30:05'),(2406,35,25,'2019-03-02 02:00:05'),(2407,35,25,'2019-03-02 02:30:08'),(2408,35,25,'2019-03-02 03:00:03'),(2409,34,25,'2019-03-02 03:30:03'),(2410,34,25,'2019-03-02 04:00:09'),(2411,34,25,'2019-03-02 04:30:03'),(2412,35,24,'2019-03-02 05:00:05'),(2413,35,24,'2019-03-02 05:30:03'),(2414,34,24,'2019-03-02 06:00:06'),(2415,34,24,'2019-03-02 06:30:03'),(2416,34,23,'2019-03-02 07:00:03'),(2417,34,23,'2019-03-02 07:30:03'),(2418,34,23,'2019-03-02 08:00:03'),(2419,35,22,'2019-03-02 08:30:06'),(2420,35,22,'2019-03-02 09:00:06'),(2421,35,22,'2019-03-02 09:30:06'),(2422,35,22,'2019-03-02 10:00:05'),(2423,35,22,'2019-03-02 10:30:03'),(2424,35,22,'2019-03-02 11:00:03'),(2425,35,22,'2019-03-02 11:30:05'),(2426,35,22,'2019-03-02 12:00:03'),(2427,35,22,'2019-03-02 12:30:06'),(2428,35,22,'2019-03-02 13:00:06'),(2429,35,22,'2019-03-02 13:30:03'),(2430,35,22,'2019-03-02 14:00:03'),(2431,35,22,'2019-03-02 14:30:03'),(2432,34,23,'2019-03-02 15:00:05'),(2433,34,23,'2019-03-02 15:30:03'),(2434,34,23,'2019-03-02 16:00:03'),(2435,34,23,'2019-03-02 16:30:03'),(2436,34,24,'2019-03-02 17:00:05'),(2437,34,24,'2019-03-02 17:30:04'),(2438,33,25,'2019-03-02 18:00:06'),(2439,34,25,'2019-03-02 18:30:06'),(2440,34,25,'2019-03-02 19:00:03'),(2441,34,25,'2019-03-02 19:30:06'),(2442,34,25,'2019-03-02 20:00:03'),(2443,34,25,'2019-03-02 20:30:03'),(2444,34,25,'2019-03-02 21:00:04'),(2445,35,24,'2019-03-02 21:30:06'),(2446,35,24,'2019-03-02 22:00:06'),(2447,34,24,'2019-03-02 22:30:06'),(2448,34,24,'2019-03-02 23:00:03'),(2449,34,24,'2019-03-02 23:30:06'),(2450,34,24,'2019-03-03 00:00:06'),(2451,34,24,'2019-03-03 00:30:05'),(2452,34,24,'2019-03-03 01:00:06'),(2453,34,23,'2019-03-03 01:30:05'),(2454,34,23,'2019-03-03 02:00:03'),(2455,34,23,'2019-03-03 02:30:08'),(2456,34,23,'2019-03-03 03:00:03'),(2457,34,23,'2019-03-03 03:30:06'),(2458,34,23,'2019-03-03 04:00:06'),(2459,34,23,'2019-03-03 04:30:05'),(2460,34,23,'2019-03-03 05:00:03'),(2461,35,22,'2019-03-03 05:30:06'),(2462,35,22,'2019-03-03 06:00:04'),(2463,35,22,'2019-03-03 06:30:06'),(2464,35,22,'2019-03-03 07:00:06'),(2465,145,11,'2019-03-03 07:30:06'),(2466,35,22,'2019-03-03 08:00:05'),(2467,35,22,'2019-03-03 08:30:03'),(2468,35,22,'2019-03-03 09:00:03'),(2469,35,22,'2019-03-03 09:30:03'),(2470,35,22,'2019-03-03 10:00:03'),(2471,35,22,'2019-03-03 10:30:04'),(2472,35,22,'2019-03-03 11:00:06'),(2473,35,22,'2019-03-03 11:30:03'),(2474,35,22,'2019-03-03 12:00:03'),(2475,34,23,'2019-03-03 12:30:06'),(2476,34,23,'2019-03-03 13:00:03'),(2477,34,23,'2019-03-03 13:30:03'),(2478,34,23,'2019-03-03 14:00:06'),(2479,34,23,'2019-03-03 14:30:03'),(2480,34,23,'2019-03-03 15:00:06'),(2481,35,24,'2019-03-03 15:30:05'),(2482,34,24,'2019-03-03 16:00:03'),(2483,35,24,'2019-03-03 16:30:06'),(2484,35,24,'2019-03-03 17:00:05'),(2485,35,24,'2019-03-03 17:30:04'),(2486,34,25,'2019-03-03 18:00:04'),(2487,34,25,'2019-03-03 18:30:04'),(2488,34,25,'2019-03-03 19:00:03'),(2489,34,25,'2019-03-03 19:30:04'),(2490,34,25,'2019-03-03 20:00:06'),(2491,34,25,'2019-03-03 20:30:05'),(2492,34,25,'2019-03-03 21:00:03'),(2493,34,25,'2019-03-03 21:30:03'),(2494,34,25,'2019-03-03 22:00:06'),(2495,35,24,'2019-03-03 22:30:06'),(2496,34,25,'2019-03-03 23:00:03'),(2497,34,25,'2019-03-03 23:30:05'),(2498,35,24,'2019-03-04 00:00:03'),(2499,33,24,'2019-03-04 00:30:03'),(2500,34,25,'2019-03-04 01:00:06'),(2501,35,24,'2019-03-04 01:30:06'),(2502,35,24,'2019-03-04 02:00:04'),(2503,35,24,'2019-03-04 02:30:05'),(2504,35,24,'2019-03-04 03:00:04'),(2505,35,24,'2019-03-04 03:30:06'),(2506,35,24,'2019-03-04 04:00:03'),(2507,35,24,'2019-03-04 04:30:05'),(2508,35,24,'2019-03-04 05:00:03'),(2509,35,24,'2019-03-04 05:30:05'),(2510,35,24,'2019-03-04 06:00:03'),(2511,35,23,'2019-03-04 06:30:06'),(2512,35,23,'2019-03-04 07:00:04'),(2513,35,23,'2019-03-04 07:30:06'),(2514,35,23,'2019-03-04 08:00:06'),(2515,35,23,'2019-03-04 08:30:06'),(2516,35,23,'2019-03-04 09:00:06'),(2517,35,23,'2019-03-04 09:30:03'),(2518,35,23,'2019-03-04 10:00:03'),(2519,35,23,'2019-03-04 10:30:03'),(2520,35,23,'2019-03-04 11:00:03'),(2521,35,23,'2019-03-04 11:30:03'),(2522,36,23,'2019-03-04 12:00:06'),(2523,36,23,'2019-03-04 12:30:06'),(2524,36,23,'2019-03-04 13:00:06'),(2525,36,23,'2019-03-04 13:30:05'),(2526,37,22,'2019-03-04 14:00:06'),(2527,36,23,'2019-03-04 14:30:03'),(2528,36,23,'2019-03-04 15:00:03'),(2529,36,23,'2019-03-04 15:30:08'),(2530,36,23,'2019-03-04 16:00:06'),(2531,36,23,'2019-03-04 16:30:06'),(2532,36,23,'2019-03-04 17:00:03'),(2533,36,23,'2019-03-04 17:30:03'),(2534,36,24,'2019-03-04 18:00:05'),(2535,36,24,'2019-03-04 18:30:03'),(2536,36,24,'2019-03-04 19:00:06'),(2537,36,24,'2019-03-04 19:30:06'),(2538,36,24,'2019-03-04 20:00:03'),(2539,36,24,'2019-03-04 20:30:06'),(2540,36,24,'2019-03-04 21:00:03'),(2541,36,23,'2019-03-04 21:30:06'),(2542,36,23,'2019-03-04 22:00:05'),(2543,36,23,'2019-03-04 22:30:03'),(2544,36,23,'2019-03-04 23:00:03'),(2545,36,23,'2019-03-04 23:30:06'),(2546,36,23,'2019-03-05 00:00:03'),(2547,36,23,'2019-03-05 00:30:06'),(2548,36,23,'2019-03-05 01:00:06'),(2549,36,23,'2019-03-05 01:30:03'),(2550,36,23,'2019-03-05 02:00:06'),(2551,36,23,'2019-03-05 02:30:05'),(2552,37,22,'2019-03-05 03:00:03'),(2553,36,22,'2019-03-05 03:30:03'),(2554,37,22,'2019-03-05 04:00:06'),(2555,37,22,'2019-03-05 04:30:03'),(2556,37,22,'2019-03-05 05:00:03'),(2557,37,22,'2019-03-05 05:30:03'),(2558,37,22,'2019-03-05 06:00:03'),(2559,4,22,'2019-03-05 06:30:03'),(2560,36,22,'2019-03-05 07:00:06'),(2561,36,22,'2019-03-05 07:30:06'),(2562,36,22,'2019-03-05 08:00:05'),(2563,36,22,'2019-03-05 08:30:05'),(2564,36,4,'2019-03-05 09:00:03'),(2565,36,22,'2019-03-05 09:30:03'),(2566,36,22,'2019-03-05 10:00:05'),(2567,37,22,'2019-03-05 10:30:06'),(2568,36,22,'2019-03-05 11:00:03'),(2569,37,22,'2019-03-05 11:30:05'),(2570,37,22,'2019-03-05 12:00:05'),(2571,37,22,'2019-03-05 12:30:03'),(2572,36,23,'2019-03-05 13:00:03'),(2573,36,23,'2019-03-05 13:30:06'),(2574,36,23,'2019-03-05 14:00:04'),(2575,36,23,'2019-03-05 14:30:03'),(2576,36,23,'2019-03-05 15:00:03'),(2577,37,24,'2019-03-05 15:30:05'),(2578,37,24,'2019-03-05 16:00:03'),(2579,36,24,'2019-03-05 16:30:03'),(2580,36,25,'2019-03-05 17:00:05'),(2581,36,25,'2019-03-05 17:30:05'),(2582,36,25,'2019-03-05 18:00:04'),(2583,36,26,'2019-03-05 18:30:05'),(2584,36,26,'2019-03-05 19:00:06'),(2585,36,26,'2019-03-05 19:30:03'),(2586,36,26,'2019-03-05 20:00:03'),(2587,36,26,'2019-03-05 20:30:08'),(2588,36,26,'2019-03-05 21:00:05'),(2589,36,26,'2019-03-05 21:30:06'),(2590,36,25,'2019-03-05 22:00:05'),(2591,36,25,'2019-03-05 22:30:03'),(2592,36,25,'2019-03-05 23:00:06'),(2593,36,16,'2019-03-05 23:30:03'),(2594,32,25,'2019-03-06 00:00:03'),(2595,36,25,'2019-03-06 00:30:05'),(2596,36,25,'2019-03-06 01:00:06'),(2597,36,25,'2019-03-06 01:30:03'),(2598,36,25,'2019-03-06 02:00:05'),(2599,36,25,'2019-03-06 02:30:03'),(2600,36,25,'2019-03-06 03:00:03'),(2601,37,24,'2019-03-06 03:30:06'),(2602,37,24,'2019-03-06 04:00:06'),(2603,37,24,'2019-03-06 04:30:04'),(2604,37,24,'2019-03-06 05:00:05'),(2605,37,24,'2019-03-06 05:30:03'),(2606,37,24,'2019-03-06 06:00:03'),(2607,37,24,'2019-03-06 06:30:03'),(2608,37,24,'2019-03-06 07:00:03'),(2609,37,24,'2019-03-06 07:30:03'),(2610,37,24,'2019-03-06 08:00:05'),(2611,37,24,'2019-03-06 08:30:05'),(2612,37,24,'2019-03-06 09:00:03'),(2613,37,24,'2019-03-06 09:30:06'),(2614,37,24,'2019-03-06 10:00:06'),(2615,38,24,'2019-03-06 10:30:05'),(2616,38,24,'2019-03-06 11:00:06'),(2617,38,24,'2019-03-06 11:30:05'),(2618,38,24,'2019-03-06 12:00:03'),(2619,37,25,'2019-03-06 12:30:05'),(2620,37,25,'2019-03-06 13:00:03'),(2621,38,26,'2019-03-06 13:30:05'),(2622,38,26,'2019-03-06 14:00:05'),(2623,38,26,'2019-03-06 14:30:03'),(2624,38,26,'2019-03-06 15:00:06'),(2625,38,26,'2019-03-06 15:30:03'),(2626,37,27,'2019-03-06 16:00:04'),(2627,37,27,'2019-03-06 16:30:04'),(2628,37,28,'2019-03-06 17:00:03'),(2629,37,28,'2019-03-06 17:30:03'),(2630,146,14,'2019-03-06 18:00:06'),(2631,36,29,'2019-03-06 18:30:06'),(2632,36,29,'2019-03-06 19:00:03'),(2633,36,29,'2019-03-06 19:30:06'),(2634,146,14,'2019-03-06 20:00:06'),(2635,36,29,'2019-03-06 20:30:03'),(2636,36,29,'2019-03-06 21:00:05'),(2637,36,29,'2019-03-06 21:30:06'),(2638,36,29,'2019-03-06 22:00:06'),(2639,36,29,'2019-03-06 22:30:06'),(2640,36,29,'2019-03-06 23:00:06'),(2641,36,29,'2019-03-06 23:30:03'),(2642,37,29,'2019-03-07 00:00:05'),(2643,38,28,'2019-03-07 00:30:06'),(2644,38,28,'2019-03-07 01:00:06'),(2645,38,28,'2019-03-07 01:30:05'),(2646,38,28,'2019-03-07 02:00:05'),(2647,38,28,'2019-03-07 02:30:05'),(2648,38,28,'2019-03-07 03:00:03'),(2649,38,28,'2019-03-07 03:30:08'),(2650,38,28,'2019-03-07 04:00:05'),(2651,38,28,'2019-03-07 04:30:06'),(2652,38,28,'2019-03-07 05:00:06'),(2653,38,28,'2019-03-07 05:30:03'),(2654,38,28,'2019-03-07 06:00:03'),(2655,38,28,'2019-03-07 06:30:06'),(2656,38,28,'2019-03-07 07:00:06'),(2657,38,28,'2019-03-07 07:30:05'),(2658,38,28,'2019-03-07 08:00:03'),(2659,38,28,'2019-03-07 08:30:03'),(2660,38,28,'2019-03-07 09:00:03'),(2661,38,28,'2019-03-07 09:30:03'),(2662,39,28,'2019-03-07 10:00:04'),(2663,40,28,'2019-03-07 10:30:06'),(2664,39,28,'2019-03-07 11:00:03'),(2665,40,28,'2019-03-07 11:30:06'),(2666,40,28,'2019-03-07 12:00:08'),(2667,39,29,'2019-03-07 12:30:06'),(2668,38,29,'2019-03-07 13:00:03'),(2669,39,29,'2019-03-07 13:30:06'),(2670,40,29,'2019-03-07 14:00:06'),(2671,40,29,'2019-03-07 14:30:06'),(2672,41,29,'2019-03-07 15:00:05'),(2673,41,29,'2019-03-07 15:30:06'),(2674,42,29,'2019-03-07 16:00:05'),(2675,42,29,'2019-03-07 16:30:03'),(2676,42,30,'2019-03-07 17:00:06'),(2677,42,30,'2019-03-07 17:30:05'),(2678,41,29,'2019-03-07 18:00:03'),(2679,40,29,'2019-03-07 18:30:03'),(2680,39,30,'2019-03-07 19:00:06'),(2681,39,29,'2019-03-07 19:30:05'),(2682,39,29,'2019-03-07 20:00:06'),(2683,38,29,'2019-03-07 20:30:06'),(2684,38,29,'2019-03-07 21:00:03'),(2685,39,28,'2019-03-07 21:30:06'),(2686,39,28,'2019-03-07 22:00:06'),(2687,39,28,'2019-03-07 22:30:06'),(2688,39,28,'2019-03-07 23:00:06'),(2689,147,14,'2019-03-07 23:30:03'),(2690,39,28,'2019-03-08 00:00:05'),(2691,39,27,'2019-03-08 00:30:05'),(2692,38,27,'2019-03-08 01:00:03'),(2693,38,27,'2019-03-08 01:30:06'),(2694,39,26,'2019-03-08 02:00:08'),(2695,39,26,'2019-03-08 02:30:05'),(2696,39,26,'2019-03-08 03:00:03'),(2697,39,26,'2019-03-08 03:30:03'),(2698,39,26,'2019-03-08 04:00:03'),(2699,38,25,'2019-03-08 04:30:06'),(2700,38,26,'2019-03-08 05:00:03'),(2701,38,25,'2019-03-08 05:30:05'),(2702,38,25,'2019-03-08 06:00:05'),(2703,37,25,'2019-03-08 06:30:08'),(2704,37,25,'2019-03-08 07:00:03'),(2705,38,24,'2019-03-08 07:30:08'),(2706,38,24,'2019-03-08 08:00:03'),(2707,37,23,'2019-03-08 08:30:06'),(2708,37,23,'2019-03-08 09:00:06'),(2709,36,23,'2019-03-08 09:30:05'),(2710,36,23,'2019-03-08 10:00:06'),(2711,36,23,'2019-03-08 10:30:06'),(2712,36,23,'2019-03-08 11:00:03'),(2713,37,22,'2019-03-08 11:30:03'),(2714,36,22,'2019-03-08 12:00:04'),(2715,37,22,'2019-03-08 12:30:03'),(2716,37,22,'2019-03-08 13:00:03'),(2717,36,22,'2019-03-08 13:30:05'),(2718,36,22,'2019-03-08 14:00:06'),(2719,36,22,'2019-03-08 14:30:06'),(2720,36,22,'2019-03-08 15:00:03'),(2721,35,23,'2019-03-08 15:30:06'),(2722,145,11,'2019-03-08 16:00:05'),(2723,145,11,'2019-03-08 16:30:06'),(2724,34,23,'2019-03-08 17:00:05'),(2725,34,23,'2019-03-08 17:30:05'),(2726,34,23,'2019-03-08 18:00:06'),(2727,34,23,'2019-03-08 18:30:06'),(2728,34,23,'2019-03-08 19:00:06'),(2729,34,23,'2019-03-08 19:30:06'),(2730,35,22,'2019-03-08 20:00:05'),(2731,34,22,'2019-03-08 20:30:08'),(2732,34,22,'2019-03-08 21:00:03'),(2733,34,22,'2019-03-08 21:30:06'),(2734,34,22,'2019-03-08 22:00:03'),(2735,34,21,'2019-03-08 22:30:05'),(2736,34,21,'2019-03-08 23:00:06'),(2737,34,21,'2019-03-08 23:30:03'),(2738,34,21,'2019-03-09 00:00:05'),(2739,34,21,'2019-03-09 00:30:03'),(2740,35,20,'2019-03-09 01:00:06'),(2741,33,16,'2019-03-09 01:30:04'),(2742,35,20,'2019-03-09 02:00:06'),(2743,34,20,'2019-03-09 02:30:06'),(2744,34,20,'2019-03-09 03:00:03'),(2745,35,21,'2019-03-09 03:30:06'),(2746,36,20,'2019-03-09 04:00:05'),(2747,36,23,'2019-03-09 04:30:06'),(2748,36,23,'2019-03-09 05:00:06'),(2749,36,23,'2019-03-09 05:30:04'),(2750,37,22,'2019-03-09 06:00:03'),(2751,37,22,'2019-03-09 06:30:05'),(2752,37,22,'2019-03-09 07:00:05'),(2753,37,22,'2019-03-09 07:30:03'),(2754,37,21,'2019-03-09 08:00:03'),(2755,36,21,'2019-03-09 08:30:03'),(2756,36,21,'2019-03-09 09:00:06'),(2757,36,21,'2019-03-09 09:30:03'),(2758,36,21,'2019-03-09 10:00:06'),(2759,36,21,'2019-03-09 10:30:03'),(2760,36,21,'2019-03-09 11:00:05'),(2761,37,21,'2019-03-09 11:30:06'),(2762,37,21,'2019-03-09 12:00:05'),(2763,37,21,'2019-03-09 12:30:05'),(2764,37,22,'2019-03-09 13:00:06'),(2765,37,22,'2019-03-09 13:30:05'),(2766,37,22,'2019-03-09 14:00:03'),(2767,36,23,'2019-03-09 14:30:05'),(2768,36,20,'2019-03-09 15:00:06'),(2769,35,21,'2019-03-09 15:30:06'),(2770,4,20,'2019-03-09 16:00:03'),(2771,35,20,'2019-03-09 16:30:08'),(2772,35,20,'2019-03-09 17:00:05'),(2773,35,20,'2019-03-09 17:30:03'),(2774,35,20,'2019-03-09 18:00:05'),(2775,35,20,'2019-03-09 18:30:06'),(2776,35,20,'2019-03-09 19:00:05'),(2777,35,20,'2019-03-09 19:30:03'),(2778,35,20,'2019-03-09 20:00:05'),(2779,145,8,'2019-03-09 20:30:03'),(2780,35,20,'2019-03-09 21:00:06'),(2781,35,20,'2019-03-09 21:30:03'),(2782,35,20,'2019-03-09 22:00:06'),(2783,35,20,'2019-03-09 22:30:04'),(2784,35,20,'2019-03-09 23:00:06'),(2785,35,20,'2019-03-09 23:30:05'),(2786,35,20,'2019-03-10 00:00:03'),(2787,145,10,'2019-03-10 00:30:03'),(2788,36,21,'2019-03-10 01:00:04'),(2789,35,20,'2019-03-10 01:30:03'),(2790,35,20,'2019-03-10 02:00:03'),(2791,36,21,'2019-03-10 02:30:03'),(2792,36,21,'2019-03-10 03:00:03'),(2793,36,21,'2019-03-10 03:30:04'),(2794,36,21,'2019-03-10 04:00:05'),(2795,36,21,'2019-03-10 04:30:06'),(2796,36,21,'2019-03-10 05:00:06'),(2797,36,21,'2019-03-10 05:30:03'),(2798,36,21,'2019-03-10 06:00:03'),(2799,36,21,'2019-03-10 06:30:06'),(2800,36,21,'2019-03-10 07:00:03'),(2801,37,20,'2019-03-10 07:30:05'),(2802,36,21,'2019-03-10 08:00:06'),(2803,37,20,'2019-03-10 08:30:06'),(2804,36,21,'2019-03-10 09:00:03'),(2805,36,21,'2019-03-10 09:30:03'),(2806,36,21,'2019-03-10 10:00:03'),(2807,36,20,'2019-03-10 10:30:05'),(2808,36,20,'2019-03-10 11:00:05'),(2809,36,20,'2019-03-10 11:30:06'),(2810,35,20,'2019-03-10 12:00:06'),(2811,36,20,'2019-03-10 12:30:06'),(2812,35,20,'2019-03-10 13:00:03'),(2813,36,20,'2019-03-10 13:30:03'),(2814,35,21,'2019-03-10 14:00:06'),(2815,35,21,'2019-03-10 14:30:03'),(2816,35,21,'2019-03-10 15:00:03'),(2817,35,21,'2019-03-10 15:30:08'),(2818,35,21,'2019-03-10 16:00:03'),(2819,35,21,'2019-03-10 16:30:04'),(2820,35,22,'2019-03-10 17:00:06'),(2821,35,22,'2019-03-10 17:30:06'),(2822,35,22,'2019-03-10 18:00:03'),(2823,34,23,'2019-03-10 18:30:05'),(2824,34,23,'2019-03-10 19:00:03'),(2825,34,23,'2019-03-10 19:30:03'),(2826,35,22,'2019-03-10 20:00:06'),(2827,35,22,'2019-03-10 20:30:03'),(2828,35,22,'2019-03-10 21:00:03'),(2829,35,22,'2019-03-10 21:30:06'),(2830,35,22,'2019-03-10 22:00:05'),(2831,35,22,'2019-03-10 22:30:05'),(2832,35,22,'2019-03-10 23:00:06'),(2833,145,11,'2019-03-10 23:30:06'),(2834,35,22,'2019-03-11 00:00:06'),(2835,35,22,'2019-03-11 00:30:05'),(2836,35,22,'2019-03-11 01:00:03'),(2837,35,22,'2019-03-11 01:30:04'),(2838,35,21,'2019-03-11 02:00:03'),(2839,35,21,'2019-03-11 02:30:08'),(2840,35,21,'2019-03-11 03:00:03'),(2841,35,21,'2019-03-11 03:30:05'),(2842,35,21,'2019-03-11 04:00:03'),(2843,35,21,'2019-03-11 04:30:06'),(2844,35,21,'2019-03-11 05:00:03'),(2845,35,21,'2019-03-11 05:30:05'),(2846,35,21,'2019-03-11 06:00:03'),(2847,36,20,'2019-03-11 06:30:09'),(2848,36,20,'2019-03-11 07:00:06'),(2849,36,20,'2019-03-11 07:30:03'),(2850,36,20,'2019-03-11 08:00:03'),(2851,36,20,'2019-03-11 08:30:04'),(2852,36,20,'2019-03-11 09:00:03'),(2853,36,20,'2019-03-11 09:30:03'),(2854,36,20,'2019-03-11 10:00:05'),(2855,35,21,'2019-03-11 10:30:06'),(2856,35,21,'2019-03-11 11:00:06'),(2857,35,21,'2019-03-11 11:30:05'),(2858,35,21,'2019-03-11 12:00:06'),(2859,35,21,'2019-03-11 12:30:05'),(2860,35,21,'2019-03-11 13:00:08'),(2861,35,21,'2019-03-11 13:30:03'),(2862,35,21,'2019-03-11 14:00:03'),(2863,35,22,'2019-03-11 14:30:06'),(2864,35,22,'2019-03-11 15:00:03'),(2865,36,22,'2019-03-11 15:30:05'),(2866,36,22,'2019-03-11 16:00:05'),(2867,36,22,'2019-03-11 16:30:05'),(2868,34,23,'2019-03-11 17:00:05'),(2869,35,23,'2019-03-11 17:30:03'),(2870,35,23,'2019-03-11 18:00:03'),(2871,35,23,'2019-03-11 18:30:05'),(2872,35,23,'2019-03-11 19:00:03'),(2873,35,23,'2019-03-11 19:30:06'),(2874,35,23,'2019-03-11 20:00:03'),(2875,35,23,'2019-03-11 20:30:03'),(2876,36,22,'2019-03-11 21:00:06'),(2877,36,22,'2019-03-11 21:30:08'),(2878,36,22,'2019-03-11 22:00:05'),(2879,36,22,'2019-03-11 22:30:03'),(2880,36,22,'2019-03-11 23:00:03'),(2881,36,22,'2019-03-11 23:30:06'),(2882,36,22,'2019-03-12 00:00:05'),(2883,36,22,'2019-03-12 00:30:03'),(2884,36,22,'2019-03-12 01:00:06'),(2885,36,22,'2019-03-12 01:30:05'),(2886,36,22,'2019-03-12 02:00:06'),(2887,36,22,'2019-03-12 02:30:05'),(2888,36,22,'2019-03-12 03:00:03'),(2889,36,22,'2019-03-12 03:30:06'),(2890,36,22,'2019-03-12 04:00:03'),(2891,36,22,'2019-03-12 04:30:05'),(2892,36,22,'2019-03-12 05:00:03'),(2893,36,22,'2019-03-12 05:30:06'),(2894,36,22,'2019-03-12 06:00:03'),(2895,36,22,'2019-03-12 06:30:05'),(2896,36,22,'2019-03-12 07:00:03'),(2897,36,22,'2019-03-12 07:30:05'),(2898,36,22,'2019-03-12 08:00:06'),(2899,36,22,'2019-03-12 08:30:03'),(2900,36,21,'2019-03-12 09:00:06'),(2901,37,21,'2019-03-12 09:30:06'),(2902,36,21,'2019-03-12 10:00:06'),(2903,37,21,'2019-03-12 10:30:06'),(2904,36,21,'2019-03-12 11:00:03'),(2905,37,21,'2019-03-12 11:30:03'),(2906,37,21,'2019-03-12 12:00:03'),(2907,37,21,'2019-03-12 12:30:03'),(2908,37,21,'2019-03-12 13:00:03'),(2909,36,21,'2019-03-12 13:30:04'),(2910,38,21,'2019-03-12 14:00:06'),(2911,37,21,'2019-03-12 14:30:03'),(2912,39,21,'2019-03-12 15:00:06'),(2913,39,22,'2019-03-12 15:30:08'),(2914,39,22,'2019-03-12 16:00:03'),(2915,39,22,'2019-03-12 16:30:05'),(2916,39,22,'2019-03-12 17:00:06'),(2917,39,22,'2019-03-12 17:30:03'),(2918,39,22,'2019-03-12 18:00:03'),(2919,38,22,'2019-03-12 18:30:06'),(2920,38,22,'2019-03-12 19:00:03'),(2921,38,21,'2019-03-12 19:30:03'),(2922,38,21,'2019-03-12 20:00:03'),(2923,42,24,'2019-04-01 20:30:07'),(2924,40,23,'2019-04-01 21:00:06'),(2925,47,24,'2019-04-01 21:30:06'),(2926,46,24,'2019-04-01 22:00:03'),(2927,46,24,'2019-04-01 22:30:06'),(2928,46,24,'2019-04-01 23:00:03'),(2929,46,24,'2019-04-01 23:30:05'); /*!40000 ALTER TABLE `data_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tension` -- DROP TABLE IF EXISTS `tension`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tension` ( `id` int(11) NOT NULL AUTO_INCREMENT, `estado` int(11) NOT NULL, `datetime` varchar(45) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10234 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tension` -- LOCK TABLES `tension` WRITE; /*!40000 ALTER TABLE `tension` DISABLE KEYS */; INSERT INTO `tension` VALUES (9980,1,'2019-04-02 00:00:06'),(9981,1,'2019-04-02 00:05:06'),(9982,1,'2019-04-02 00:10:07'),(9983,1,'2019-04-02 00:15:07'),(9984,1,'2019-04-02 00:20:06'),(9985,1,'2019-04-02 00:25:07'),(9986,1,'2019-04-02 00:30:05'),(9987,1,'2019-04-02 00:35:07'),(9988,1,'2019-04-02 00:40:07'),(9989,1,'2019-04-02 00:45:06'),(9990,1,'2019-04-02 00:50:07'),(9991,1,'2019-04-02 00:55:07'),(9992,1,'2019-04-02 01:00:05'),(9993,1,'2019-04-02 01:05:06'),(9994,1,'2019-04-02 01:10:06'),(9995,1,'2019-04-02 01:15:06'),(9996,1,'2019-04-02 01:20:06'),(9997,1,'2019-04-02 01:25:06'),(9998,1,'2019-04-02 01:30:06'),(9999,1,'2019-04-02 01:35:07'),(10000,1,'2019-04-02 01:40:07'),(10001,1,'2019-04-02 01:45:06'),(10002,1,'2019-04-02 01:50:07'),(10003,1,'2019-04-02 01:55:07'),(10004,1,'2019-04-02 02:00:05'),(10005,1,'2019-04-02 02:05:06'),(10006,1,'2019-04-02 02:10:07'),(10007,1,'2019-04-02 02:15:06'),(10008,1,'2019-04-02 02:20:07'),(10009,1,'2019-04-02 02:25:07'),(10010,1,'2019-04-02 02:30:05'),(10011,1,'2019-04-02 02:35:06'),(10012,1,'2019-04-02 02:40:06'),(10013,1,'2019-04-02 02:45:06'),(10014,1,'2019-04-02 02:50:07'),(10015,1,'2019-04-02 02:55:07'),(10016,1,'2019-04-02 03:00:05'),(10017,1,'2019-04-02 03:05:06'),(10018,1,'2019-04-02 03:10:07'),(10019,1,'2019-04-02 03:15:07'),(10020,1,'2019-04-02 03:20:06'),(10021,1,'2019-04-02 03:25:06'),(10022,1,'2019-04-02 03:30:06'),(10023,1,'2019-04-02 03:35:07'),(10024,1,'2019-04-02 03:40:07'),(10025,1,'2019-04-02 03:45:06'),(10026,1,'2019-04-02 03:50:06'),(10027,1,'2019-04-02 03:55:07'),(10028,1,'2019-04-02 04:00:05'),(10029,1,'2019-04-02 04:05:06'),(10030,1,'2019-04-02 04:10:06'),(10031,1,'2019-04-02 04:15:07'),(10032,1,'2019-04-02 04:20:07'),(10033,1,'2019-04-02 04:25:07'),(10034,1,'2019-04-02 04:30:05'),(10035,1,'2019-04-02 04:35:07'),(10036,1,'2019-04-02 04:40:07'),(10037,1,'2019-04-02 04:45:06'),(10038,1,'2019-04-02 04:50:06'),(10039,1,'2019-04-02 04:55:07'),(10040,1,'2019-04-02 05:00:05'),(10041,1,'2019-04-02 05:05:07'),(10042,1,'2019-04-02 05:10:06'),(10043,1,'2019-04-02 05:15:07'),(10044,1,'2019-04-02 05:20:06'),(10045,1,'2019-04-02 05:25:07'),(10046,1,'2019-04-02 05:30:06'),(10047,1,'2019-04-02 05:35:07'),(10048,1,'2019-04-02 05:40:06'),(10049,1,'2019-04-02 05:45:07'),(10050,1,'2019-04-02 05:50:07'),(10051,1,'2019-04-02 05:55:07'),(10052,1,'2019-04-02 06:00:05'),(10053,1,'2019-04-02 06:05:07'),(10054,1,'2019-04-02 06:10:07'),(10055,1,'2019-04-02 06:15:07'),(10056,1,'2019-04-02 06:20:06'),(10057,1,'2019-04-02 06:25:05'),(10058,1,'2019-04-02 06:30:06'),(10059,1,'2019-04-02 06:35:06'),(10060,1,'2019-04-02 06:40:07'),(10061,1,'2019-04-02 06:45:07'),(10062,1,'2019-04-02 06:50:07'),(10063,1,'2019-04-02 06:55:06'),(10064,1,'2019-04-02 07:00:06'),(10065,1,'2019-04-02 07:05:06'),(10066,1,'2019-04-02 07:10:07'),(10067,1,'2019-04-02 07:15:06'),(10068,1,'2019-04-02 07:20:07'),(10069,1,'2019-04-02 07:25:06'),(10070,1,'2019-04-02 07:30:06'),(10071,1,'2019-04-02 07:35:06'),(10072,1,'2019-04-02 07:40:07'),(10073,1,'2019-04-02 07:45:07'),(10074,1,'2019-04-02 07:50:06'),(10075,1,'2019-04-02 07:55:07'),(10076,1,'2019-04-02 08:00:05'),(10077,1,'2019-04-02 08:05:07'),(10078,1,'2019-04-02 08:10:06'),(10079,1,'2019-04-02 08:15:06'),(10080,1,'2019-04-02 08:20:07'),(10081,1,'2019-04-02 08:25:07'),(10082,1,'2019-04-02 08:30:05'),(10083,1,'2019-04-02 08:35:07'),(10084,1,'2019-04-02 08:40:06'),(10085,1,'2019-04-02 08:45:06'),(10086,1,'2019-04-02 08:50:06'),(10087,1,'2019-04-02 08:55:07'),(10088,1,'2019-04-02 09:00:05'),(10089,1,'2019-04-02 09:05:07'),(10090,1,'2019-04-02 09:10:07'),(10091,1,'2019-04-02 09:15:06'),(10092,1,'2019-04-02 09:20:07'),(10093,1,'2019-04-02 09:25:07'),(10094,1,'2019-04-02 09:30:05'),(10095,1,'2019-04-02 09:35:06'),(10096,1,'2019-04-02 09:40:07'),(10097,1,'2019-04-02 09:45:06'),(10098,1,'2019-04-02 09:50:07'),(10099,1,'2019-04-02 09:55:06'),(10100,1,'2019-04-02 10:00:05'),(10101,1,'2019-04-02 10:05:06'),(10102,1,'2019-04-02 10:10:06'),(10103,1,'2019-04-02 10:15:06'),(10104,1,'2019-04-02 10:20:06'),(10105,1,'2019-04-02 10:25:07'),(10106,1,'2019-04-02 10:30:05'),(10107,1,'2019-04-02 10:35:06'),(10108,1,'2019-04-02 10:40:06'),(10109,1,'2019-04-02 10:45:07'),(10110,1,'2019-04-02 10:50:07'),(10111,1,'2019-04-02 10:55:06'),(10112,1,'2019-04-02 11:00:06'),(10113,1,'2019-04-02 11:05:07'),(10114,1,'2019-04-02 11:10:06'),(10115,1,'2019-04-02 11:15:06'),(10116,1,'2019-04-02 11:20:07'),(10117,1,'2019-04-02 11:25:07'),(10118,1,'2019-04-02 11:30:06'),(10119,1,'2019-04-02 11:35:06'),(10120,1,'2019-04-02 11:40:06'),(10121,1,'2019-04-02 11:45:06'),(10122,1,'2019-04-02 11:50:07'),(10123,1,'2019-04-02 11:55:06'),(10124,1,'2019-04-02 12:00:06'),(10125,1,'2019-04-02 12:05:07'),(10126,1,'2019-04-02 12:10:07'),(10127,1,'2019-04-02 12:15:06'),(10128,1,'2019-04-02 12:20:07'),(10129,1,'2019-04-02 12:25:07'),(10130,1,'2019-04-02 12:30:05'),(10131,1,'2019-04-02 12:35:06'),(10132,1,'2019-04-02 12:40:06'),(10133,1,'2019-04-02 12:45:07'),(10134,1,'2019-04-02 12:50:06'),(10135,1,'2019-04-02 12:55:07'),(10136,1,'2019-04-02 13:00:05'),(10137,1,'2019-04-02 13:05:07'),(10138,1,'2019-04-02 13:10:07'),(10139,1,'2019-04-02 13:15:07'),(10140,1,'2019-04-02 13:20:06'),(10141,1,'2019-04-02 13:25:07'),(10142,1,'2019-04-02 13:30:05'),(10143,1,'2019-04-02 13:35:07'),(10144,1,'2019-04-02 13:40:07'),(10145,1,'2019-04-02 13:45:06'),(10146,1,'2019-04-02 13:50:07'),(10147,1,'2019-04-02 13:55:06'),(10148,1,'2019-04-02 14:00:06'),(10149,1,'2019-04-02 14:05:07'),(10150,1,'2019-04-02 14:10:07'),(10151,1,'2019-04-02 14:15:06'),(10152,1,'2019-04-02 14:20:07'),(10153,1,'2019-04-02 14:25:07'),(10154,1,'2019-04-02 14:30:05'),(10155,1,'2019-04-02 14:35:07'),(10156,1,'2019-04-02 14:40:06'),(10157,1,'2019-04-02 14:45:07'),(10158,1,'2019-04-02 14:50:05'),(10159,1,'2019-04-02 14:55:07'),(10160,1,'2019-04-02 15:00:05'),(10161,1,'2019-04-02 15:05:07'),(10162,1,'2019-04-02 15:10:06'),(10163,1,'2019-04-02 15:15:06'),(10164,1,'2019-04-02 15:20:06'),(10165,1,'2019-04-02 15:25:06'),(10166,1,'2019-04-02 15:30:04'),(10167,1,'2019-04-02 15:35:07'),(10168,1,'2019-04-02 15:40:06'),(10169,1,'2019-04-02 15:45:07'),(10170,1,'2019-04-02 15:50:07'),(10171,1,'2019-04-02 15:55:06'),(10172,1,'2019-04-02 16:00:05'),(10173,1,'2019-04-02 16:05:07'),(10174,1,'2019-04-02 16:10:07'),(10175,1,'2019-04-02 16:15:07'),(10176,1,'2019-04-02 16:20:06'),(10177,1,'2019-04-02 16:25:07'),(10178,1,'2019-04-02 16:30:06'),(10179,1,'2019-04-02 16:35:07'),(10180,1,'2019-04-02 16:40:07'),(10181,1,'2019-04-02 16:45:06'),(10182,1,'2019-04-02 16:50:07'),(10183,1,'2019-04-02 16:55:07'),(10184,1,'2019-04-02 17:00:05'),(10185,1,'2019-04-02 17:05:06'),(10186,1,'2019-04-02 17:10:07'),(10187,1,'2019-04-02 17:15:06'),(10188,1,'2019-04-02 17:20:06'),(10189,1,'2019-04-02 17:25:07'),(10190,1,'2019-04-02 17:30:05'),(10191,1,'2019-04-02 17:35:07'),(10192,1,'2019-04-02 17:40:06'),(10193,1,'2019-04-02 17:45:07'),(10194,1,'2019-04-02 17:50:07'),(10195,1,'2019-04-02 17:55:06'),(10196,1,'2019-04-02 18:00:05'),(10197,1,'2019-04-02 18:05:07'),(10198,1,'2019-04-02 18:10:07'),(10199,1,'2019-04-02 18:15:07'),(10200,1,'2019-04-02 18:20:06'),(10201,1,'2019-04-02 18:25:07'),(10202,1,'2019-04-02 18:30:06'),(10203,1,'2019-04-02 18:35:07'),(10204,1,'2019-04-02 18:40:07'),(10205,1,'2019-04-02 18:45:07'),(10206,1,'2019-04-02 18:50:06'),(10207,1,'2019-04-02 18:55:07'),(10208,1,'2019-04-02 19:00:06'),(10209,1,'2019-04-02 19:05:07'),(10210,1,'2019-04-02 19:10:06'),(10211,1,'2019-04-02 19:15:07'),(10212,1,'2019-04-02 19:20:06'),(10213,1,'2019-04-02 19:25:07'),(10214,1,'2019-04-02 19:30:05'),(10215,1,'2019-04-02 19:35:07'),(10216,1,'2019-04-02 19:40:06'),(10217,1,'2019-04-02 19:45:07'),(10218,1,'2019-04-02 19:50:06'),(10219,1,'2019-04-02 19:55:07'),(10220,1,'2019-04-02 20:00:06'),(10221,1,'2019-04-02 20:05:07'),(10222,1,'2019-04-02 20:10:06'),(10223,1,'2019-04-02 20:15:07'),(10224,1,'2019-04-02 20:20:07'),(10225,1,'2019-04-02 20:25:06'),(10226,1,'2019-04-02 20:30:06'),(10227,1,'2019-04-02 20:35:07'),(10228,1,'2019-04-02 20:40:07'),(10229,1,'2019-04-02 20:45:07'),(10230,1,'2019-04-02 20:50:06'),(10231,1,'2019-04-02 20:55:07'),(10232,1,'2019-04-02 21:00:06'),(10233,1,'2019-04-02 21:05:07'); /*!40000 ALTER TABLE `tension` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tension_history` -- DROP TABLE IF EXISTS `tension_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tension_history` ( `id` int(11) NOT NULL AUTO_INCREMENT, `estado` int(11) NOT NULL, `datetime` varchar(45) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9980 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tension_history` -- LOCK TABLES `tension_history` WRITE; /*!40000 ALTER TABLE `tension_history` DISABLE KEYS */; INSERT INTO `tension_history` VALUES (7,1,'2019-01-26 19:22:00'),(8,1,'2019-01-27 20:02:01'),(9,1,'2019-01-27 20:02:13'),(13,1,'2019-01-27 21:22:51'),(14,1,'2019-01-27 22:05:20'),(15,1,'2019-01-27 22:15:06'),(16,1,'2019-01-27 22:30:06'),(17,1,'2019-01-27 22:45:07'),(18,1,'2019-01-27 23:00:05'),(19,1,'2019-01-27 23:15:07'),(20,1,'2019-01-27 23:30:05'),(21,1,'2019-01-27 23:45:06'),(22,1,'2019-01-28 00:00:05'),(23,1,'2019-01-28 00:15:07'),(24,1,'2019-01-28 00:30:05'),(25,1,'2019-01-28 00:45:07'),(26,1,'2019-01-28 01:00:05'),(27,1,'2019-01-28 01:15:07'),(28,1,'2019-01-28 01:30:05'),(29,1,'2019-01-28 01:45:07'),(30,1,'2019-01-28 02:00:05'),(31,1,'2019-01-28 02:15:07'),(32,1,'2019-01-28 02:30:05'),(33,1,'2019-01-28 02:45:07'),(34,1,'2019-01-28 03:00:05'),(35,1,'2019-01-28 03:15:07'),(36,1,'2019-01-28 03:30:05'),(37,1,'2019-01-28 03:45:07'),(38,1,'2019-01-28 04:00:05'),(39,1,'2019-01-28 04:15:07'),(40,1,'2019-01-28 04:30:05'),(41,1,'2019-01-28 04:45:06'),(42,1,'2019-01-28 05:00:05'),(43,1,'2019-01-28 05:15:06'),(44,1,'2019-01-28 05:30:05'),(45,1,'2019-01-28 05:45:07'),(46,1,'2019-01-28 06:00:05'),(47,1,'2019-01-28 06:15:07'),(48,1,'2019-01-28 06:30:05'),(49,1,'2019-01-28 06:45:07'),(50,1,'2019-01-28 07:00:05'),(51,1,'2019-01-28 07:15:07'),(52,1,'2019-01-28 07:30:05'),(53,1,'2019-01-28 07:45:07'),(54,1,'2019-01-28 08:00:05'),(55,1,'2019-01-28 08:15:07'),(56,1,'2019-01-28 08:30:05'),(57,1,'2019-01-28 08:45:06'),(58,1,'2019-01-28 09:00:05'),(59,1,'2019-01-28 09:15:06'),(60,1,'2019-01-28 09:30:05'),(61,1,'2019-01-28 09:45:07'),(62,1,'2019-01-28 10:00:05'),(63,1,'2019-01-28 10:15:07'),(64,1,'2019-01-28 10:30:06'),(65,1,'2019-01-28 10:45:07'),(66,1,'2019-01-28 11:00:05'),(67,1,'2019-01-28 11:15:07'),(68,1,'2019-01-28 11:30:05'),(69,1,'2019-01-28 11:45:07'),(70,1,'2019-01-28 12:00:05'),(71,1,'2019-01-28 12:15:06'),(72,1,'2019-01-28 12:30:05'),(73,1,'2019-01-28 12:45:07'),(74,1,'2019-01-28 13:00:05'),(75,1,'2019-01-28 13:15:06'),(76,1,'2019-01-28 13:30:05'),(77,1,'2019-01-28 13:45:06'),(78,1,'2019-01-28 14:00:05'),(79,1,'2019-01-28 14:15:07'),(80,1,'2019-01-28 14:30:05'),(81,1,'2019-01-28 14:45:07'),(82,1,'2019-01-28 15:00:05'),(83,1,'2019-01-28 15:15:07'),(84,1,'2019-01-28 15:30:05'),(85,1,'2019-01-28 15:45:06'),(86,1,'2019-01-28 16:00:05'),(87,1,'2019-01-28 16:15:07'),(88,1,'2019-01-28 16:30:05'),(89,1,'2019-01-28 16:45:07'),(90,1,'2019-01-28 17:00:05'),(91,1,'2019-01-28 17:15:07'),(92,1,'2019-01-28 17:30:05'),(93,1,'2019-01-28 17:45:07'),(94,1,'2019-01-28 18:00:05'),(95,1,'2019-01-28 18:15:07'),(96,1,'2019-01-28 18:30:05'),(97,1,'2019-01-28 18:45:07'),(98,1,'2019-01-28 19:00:05'),(99,1,'2019-01-28 19:15:07'),(100,1,'2019-01-28 19:30:05'),(101,1,'2019-01-28 19:45:07'),(102,1,'2019-01-28 20:00:05'),(103,1,'2019-01-28 20:15:07'),(104,1,'2019-01-28 20:30:05'),(105,1,'2019-01-28 20:35:07'),(106,1,'2019-01-28 20:40:06'),(107,1,'2019-01-28 20:45:07'),(108,1,'2019-01-28 20:50:07'),(109,1,'2019-01-28 20:55:07'),(110,1,'2019-01-28 21:00:05'),(111,1,'2019-01-28 21:05:06'),(112,1,'2019-01-28 21:10:06'),(113,1,'2019-01-28 21:15:06'),(114,1,'2019-01-28 21:20:06'),(115,1,'2019-01-28 21:25:06'),(116,1,'2019-01-28 21:30:06'),(117,1,'2019-01-28 21:35:07'),(118,1,'2019-01-28 21:40:06'),(119,1,'2019-01-28 21:45:05'),(120,1,'2019-01-28 21:50:07'),(121,1,'2019-01-28 21:55:07'),(122,1,'2019-01-28 22:00:05'),(123,1,'2019-01-28 22:05:06'),(124,1,'2019-01-28 22:10:06'),(125,1,'2019-01-28 22:15:07'),(126,1,'2019-01-28 22:20:07'),(127,1,'2019-01-28 22:25:07'),(128,1,'2019-01-28 22:30:05'),(129,1,'2019-01-28 22:35:07'),(130,1,'2019-01-28 22:40:06'),(131,1,'2019-01-28 22:45:07'),(132,1,'2019-01-28 22:50:07'),(133,1,'2019-01-28 22:55:06'),(134,1,'2019-01-28 23:00:06'),(135,1,'2019-01-28 23:05:07'),(136,1,'2019-01-28 23:10:07'),(137,1,'2019-01-28 23:15:06'),(138,1,'2019-01-28 23:20:07'),(139,1,'2019-01-28 23:25:06'),(140,1,'2019-01-28 23:30:05'),(141,1,'2019-01-28 23:35:07'),(142,1,'2019-01-28 23:40:06'),(143,1,'2019-01-28 23:45:06'),(144,1,'2019-01-28 23:50:06'),(145,1,'2019-01-28 23:55:06'),(146,1,'2019-01-29 00:00:05'),(147,1,'2019-01-29 00:05:06'),(148,1,'2019-01-29 00:10:06'),(149,1,'2019-01-29 00:15:07'),(150,1,'2019-01-29 00:20:07'),(151,1,'2019-01-29 00:25:06'),(152,1,'2019-01-29 00:30:05'),(153,1,'2019-01-29 00:35:07'),(154,1,'2019-01-29 00:40:06'),(155,1,'2019-01-29 00:45:07'),(156,1,'2019-01-29 00:50:07'),(157,1,'2019-01-29 00:55:05'),(158,1,'2019-01-29 01:00:05'),(159,1,'2019-01-29 01:05:06'),(160,1,'2019-01-29 01:10:07'),(161,1,'2019-01-29 01:15:07'),(162,1,'2019-01-29 01:20:06'),(163,1,'2019-01-29 01:25:07'),(164,1,'2019-01-29 01:30:05'),(165,1,'2019-01-29 01:35:06'),(166,1,'2019-01-29 01:40:06'),(167,1,'2019-01-29 01:45:07'),(168,1,'2019-01-29 01:50:06'),(169,1,'2019-01-29 01:55:07'),(170,1,'2019-01-29 02:00:05'),(171,1,'2019-01-29 02:05:07'),(172,1,'2019-01-29 02:10:06'),(173,1,'2019-01-29 02:15:07'),(174,1,'2019-01-29 02:20:07'),(175,1,'2019-01-29 02:25:06'),(176,1,'2019-01-29 02:30:06'),(177,1,'2019-01-29 02:35:06'),(178,1,'2019-01-29 02:40:07'),(179,1,'2019-01-29 02:45:07'),(180,1,'2019-01-29 02:50:07'),(181,1,'2019-01-29 02:55:06'),(182,1,'2019-01-29 03:00:05'),(183,1,'2019-01-29 03:05:07'),(184,1,'2019-01-29 03:10:06'),(185,1,'2019-01-29 03:15:07'),(186,1,'2019-01-29 03:20:07'),(187,1,'2019-01-29 03:25:07'),(188,1,'2019-01-29 03:30:05'),(189,1,'2019-01-29 03:35:06'),(190,1,'2019-01-29 03:40:07'),(191,1,'2019-01-29 03:45:07'),(192,1,'2019-01-29 03:50:06'),(193,1,'2019-01-29 03:55:07'),(194,1,'2019-01-29 04:00:05'),(195,1,'2019-01-29 04:05:07'),(196,1,'2019-01-29 04:10:06'),(197,1,'2019-01-29 04:15:07'),(198,1,'2019-01-29 04:20:06'),(199,1,'2019-01-29 04:25:07'),(200,1,'2019-01-29 04:30:05'),(201,1,'2019-01-29 04:35:07'),(202,1,'2019-01-29 04:40:07'),(203,1,'2019-01-29 04:45:06'),(204,1,'2019-01-29 04:50:06'),(205,1,'2019-01-29 04:55:07'),(206,1,'2019-01-29 05:00:05'),(207,1,'2019-01-29 05:05:07'),(208,1,'2019-01-29 05:10:07'),(209,1,'2019-01-29 05:15:06'),(210,1,'2019-01-29 05:20:06'),(211,1,'2019-01-29 05:25:07'),(212,1,'2019-01-29 05:30:05'),(213,1,'2019-01-29 05:35:07'),(214,1,'2019-01-29 05:40:07'),(215,1,'2019-01-29 05:45:06'),(216,1,'2019-01-29 05:50:07'),(217,1,'2019-01-29 05:55:06'),(218,1,'2019-01-29 06:00:05'),(219,1,'2019-01-29 06:05:07'),(220,1,'2019-01-29 06:10:06'),(221,1,'2019-01-29 06:15:07'),(222,1,'2019-01-29 06:20:07'),(223,1,'2019-01-29 06:25:05'),(224,1,'2019-01-29 06:30:05'),(225,1,'2019-01-29 06:35:07'),(226,1,'2019-01-29 06:40:05'),(227,1,'2019-01-29 06:45:07'),(228,1,'2019-01-29 06:50:06'),(229,1,'2019-01-29 06:55:07'),(230,1,'2019-01-29 07:00:04'),(231,1,'2019-01-29 07:05:06'),(232,1,'2019-01-29 07:10:07'),(233,1,'2019-01-29 07:15:07'),(234,1,'2019-01-29 07:20:07'),(235,1,'2019-01-29 07:25:06'),(236,1,'2019-01-29 07:30:05'),(237,1,'2019-01-29 07:35:07'),(238,1,'2019-01-29 07:40:07'),(239,1,'2019-01-29 07:45:06'),(240,1,'2019-01-29 07:50:07'),(241,1,'2019-01-29 07:55:06'),(242,1,'2019-01-29 08:00:05'),(243,1,'2019-01-29 08:05:06'),(244,1,'2019-01-29 08:10:07'),(245,1,'2019-01-29 08:15:06'),(246,1,'2019-01-29 08:20:07'),(247,1,'2019-01-29 08:25:07'),(248,1,'2019-01-29 08:30:05'),(249,1,'2019-01-29 08:35:07'),(250,1,'2019-01-29 08:40:06'),(251,1,'2019-01-29 08:45:07'),(252,1,'2019-01-29 08:50:06'),(253,1,'2019-01-29 08:55:07'),(254,1,'2019-01-29 09:00:05'),(255,1,'2019-01-29 09:05:06'),(256,1,'2019-01-29 09:10:07'),(257,1,'2019-01-29 09:15:06'),(258,1,'2019-01-29 09:20:07'),(259,1,'2019-01-29 09:25:07'),(260,1,'2019-01-29 09:30:05'),(261,1,'2019-01-29 09:35:06'),(262,1,'2019-01-29 09:40:07'),(263,1,'2019-01-29 09:45:06'),(264,1,'2019-01-29 09:50:06'),(265,1,'2019-01-29 09:55:06'),(266,1,'2019-01-29 10:00:05'),(267,1,'2019-01-29 10:05:07'),(268,1,'2019-01-29 10:10:07'),(269,1,'2019-01-29 10:15:06'),(270,1,'2019-01-29 10:20:07'),(271,1,'2019-01-29 10:25:06'),(272,1,'2019-01-29 10:30:05'),(273,1,'2019-01-29 10:35:07'),(274,1,'2019-01-29 10:40:06'),(275,1,'2019-01-29 10:45:07'),(276,1,'2019-01-29 10:50:06'),(277,1,'2019-01-29 10:55:06'),(278,1,'2019-01-29 11:00:05'),(279,1,'2019-01-29 11:05:06'),(280,1,'2019-01-29 11:10:07'),(281,1,'2019-01-29 11:15:06'),(282,1,'2019-01-29 11:20:06'),(283,1,'2019-01-29 11:25:06'),(284,1,'2019-01-29 11:30:05'),(285,1,'2019-01-29 11:35:07'),(286,1,'2019-01-29 11:40:06'),(287,1,'2019-01-29 11:45:06'),(288,1,'2019-01-29 11:50:06'),(289,1,'2019-01-29 11:55:07'),(290,1,'2019-01-29 12:00:05'),(291,1,'2019-01-29 12:05:06'),(292,1,'2019-01-29 12:10:07'),(293,1,'2019-01-29 12:15:06'),(294,1,'2019-01-29 12:20:07'),(295,1,'2019-01-29 12:25:06'),(296,1,'2019-01-29 12:30:05'),(297,1,'2019-01-29 12:35:06'),(298,1,'2019-01-29 12:40:06'),(299,1,'2019-01-29 12:45:07'),(300,1,'2019-01-29 12:50:07'),(301,1,'2019-01-29 12:55:06'),(302,1,'2019-01-29 13:00:05'),(303,1,'2019-01-29 13:05:07'),(304,1,'2019-01-29 13:10:07'),(305,1,'2019-01-29 13:15:06'),(306,1,'2019-01-29 13:20:07'),(307,1,'2019-01-29 13:25:06'),(308,1,'2019-01-29 13:30:05'),(309,1,'2019-01-29 13:35:06'),(310,1,'2019-01-29 13:40:06'),(311,1,'2019-01-29 13:45:07'),(312,1,'2019-01-29 13:50:07'),(313,1,'2019-01-29 13:55:06'),(314,1,'2019-01-29 14:00:04'),(315,1,'2019-01-29 14:05:07'),(316,1,'2019-01-29 14:10:07'),(317,1,'2019-01-29 14:15:06'),(318,1,'2019-01-29 14:20:07'),(319,1,'2019-01-29 14:25:07'),(320,1,'2019-01-29 14:30:05'),(321,1,'2019-01-29 14:35:07'),(322,1,'2019-01-29 14:40:06'),(323,1,'2019-01-29 14:45:07'),(324,1,'2019-01-29 14:50:06'),(325,1,'2019-01-29 14:55:06'),(326,1,'2019-01-29 15:00:05'),(327,1,'2019-01-29 15:05:07'),(328,1,'2019-01-29 15:10:06'),(329,1,'2019-01-29 15:15:06'),(330,1,'2019-01-29 15:20:07'),(331,1,'2019-01-29 15:25:07'),(332,1,'2019-01-29 15:30:05'),(333,1,'2019-01-29 15:35:07'),(334,1,'2019-01-29 15:40:07'),(335,1,'2019-01-29 15:45:06'),(336,1,'2019-01-29 15:50:07'),(337,1,'2019-01-29 15:55:07'),(338,1,'2019-01-29 16:00:05'),(339,1,'2019-01-29 16:05:07'),(340,1,'2019-01-29 16:10:07'),(341,1,'2019-01-29 16:15:07'),(342,1,'2019-01-29 16:20:06'),(343,1,'2019-01-29 16:25:07'),(344,1,'2019-01-29 16:30:05'),(345,1,'2019-01-29 16:35:07'),(346,1,'2019-01-29 16:40:07'),(347,1,'2019-01-29 16:45:07'),(348,1,'2019-01-29 16:50:06'),(349,1,'2019-01-29 16:55:06'),(350,1,'2019-01-29 17:00:05'),(351,1,'2019-01-29 17:05:07'),(352,1,'2019-01-29 17:10:07'),(353,1,'2019-01-29 17:15:06'),(354,1,'2019-01-29 17:20:06'),(355,1,'2019-01-29 17:25:07'),(356,1,'2019-01-29 17:30:05'),(357,1,'2019-01-29 17:35:06'),(358,1,'2019-01-29 17:40:06'),(359,1,'2019-01-29 17:45:07'),(360,1,'2019-01-29 17:50:07'),(361,1,'2019-01-29 17:55:06'),(362,1,'2019-01-29 18:00:05'),(363,1,'2019-01-29 18:05:06'),(364,1,'2019-01-29 18:10:06'),(365,1,'2019-01-29 18:15:06'),(366,1,'2019-01-29 18:20:06'),(367,1,'2019-01-29 18:25:06'),(368,1,'2019-01-29 18:30:05'),(369,1,'2019-01-29 18:35:07'),(370,1,'2019-01-29 18:40:07'),(371,1,'2019-01-29 18:45:07'),(372,1,'2019-01-29 18:50:06'),(373,1,'2019-01-29 18:55:07'),(374,1,'2019-01-29 19:00:05'),(375,1,'2019-01-29 19:05:06'),(376,1,'2019-01-29 19:10:06'),(377,1,'2019-01-29 19:15:06'),(378,1,'2019-01-29 19:20:07'),(379,1,'2019-01-29 19:25:06'),(380,1,'2019-01-29 19:30:05'),(381,1,'2019-01-29 19:35:07'),(382,1,'2019-01-29 19:40:07'),(383,1,'2019-01-29 19:45:07'),(384,1,'2019-01-29 19:50:06'),(385,1,'2019-01-29 19:55:07'),(386,1,'2019-01-29 20:00:05'),(387,1,'2019-01-29 20:05:06'),(388,1,'2019-01-29 20:10:06'),(389,1,'2019-01-29 20:15:06'),(390,1,'2019-01-29 20:20:06'),(391,1,'2019-01-29 20:25:06'),(392,1,'2019-01-29 20:30:05'),(393,1,'2019-01-29 20:35:07'),(394,1,'2019-01-29 20:40:06'),(395,1,'2019-01-29 20:45:07'),(396,1,'2019-01-29 20:50:07'),(397,1,'2019-01-29 20:55:06'),(398,1,'2019-01-29 21:00:04'),(399,1,'2019-01-29 21:05:06'),(400,1,'2019-01-29 21:10:07'),(401,1,'2019-01-29 21:15:07'),(402,1,'2019-01-29 21:20:06'),(403,1,'2019-01-29 21:25:07'),(404,1,'2019-01-29 21:30:05'),(405,1,'2019-01-29 21:35:06'),(406,1,'2019-01-29 21:40:06'),(407,1,'2019-01-29 21:45:07'),(408,1,'2019-01-29 21:50:07'),(409,1,'2019-01-29 21:55:06'),(410,1,'2019-01-29 22:00:05'),(411,1,'2019-01-29 22:05:06'),(412,1,'2019-01-29 22:10:07'),(413,1,'2019-01-29 22:15:07'),(414,1,'2019-01-29 22:20:07'),(415,1,'2019-01-29 22:25:06'),(416,1,'2019-01-29 22:30:05'),(417,1,'2019-01-29 22:35:07'),(418,1,'2019-01-29 22:40:06'),(419,1,'2019-01-29 22:45:06'),(420,1,'2019-01-29 22:50:06'),(421,1,'2019-01-29 22:55:07'),(422,1,'2019-01-29 23:00:05'),(423,1,'2019-01-29 23:05:06'),(424,1,'2019-01-29 23:10:07'),(425,1,'2019-01-29 23:15:07'),(426,1,'2019-01-29 23:20:07'),(427,1,'2019-01-29 23:25:06'),(428,1,'2019-01-29 23:30:05'),(429,1,'2019-01-29 23:35:07'),(430,1,'2019-01-29 23:40:06'),(431,1,'2019-01-29 23:45:06'),(432,1,'2019-01-29 23:50:07'),(433,1,'2019-01-29 23:55:07'),(434,1,'2019-01-30 00:00:05'),(435,1,'2019-01-30 00:05:06'),(436,1,'2019-01-30 00:10:07'),(437,1,'2019-01-30 00:15:07'),(438,1,'2019-01-30 00:20:07'),(439,1,'2019-01-30 00:25:06'),(440,1,'2019-01-30 00:30:05'),(441,1,'2019-01-30 00:35:07'),(442,1,'2019-01-30 00:40:07'),(443,1,'2019-01-30 00:45:07'),(444,1,'2019-01-30 00:50:06'),(445,1,'2019-01-30 00:55:07'),(446,1,'2019-01-30 01:00:05'),(447,1,'2019-01-30 01:05:07'),(448,1,'2019-01-30 01:10:07'),(449,1,'2019-01-30 01:15:06'),(450,1,'2019-01-30 01:20:06'),(451,1,'2019-01-30 01:25:07'),(452,1,'2019-01-30 01:30:05'),(453,1,'2019-01-30 01:35:06'),(454,1,'2019-01-30 01:40:07'),(455,1,'2019-01-30 01:45:07'),(456,1,'2019-01-30 01:50:06'),(457,1,'2019-01-30 01:55:07'),(458,1,'2019-01-30 02:00:05'),(459,1,'2019-01-30 02:05:06'),(460,1,'2019-01-30 02:10:06'),(461,1,'2019-01-30 02:15:07'),(462,1,'2019-01-30 02:20:07'),(463,1,'2019-01-30 02:25:06'),(464,1,'2019-01-30 02:30:05'),(465,1,'2019-01-30 02:35:06'),(466,1,'2019-01-30 02:40:06'),(467,1,'2019-01-30 02:45:07'),(468,1,'2019-01-30 02:50:07'),(469,1,'2019-01-30 02:55:06'),(470,1,'2019-01-30 03:00:04'),(471,1,'2019-01-30 03:05:06'),(472,1,'2019-01-30 03:10:07'),(473,1,'2019-01-30 03:15:06'),(474,1,'2019-01-30 03:20:06'),(475,1,'2019-01-30 03:25:06'),(476,1,'2019-01-30 03:30:05'),(477,1,'2019-01-30 03:35:06'),(478,1,'2019-01-30 03:40:07'),(479,1,'2019-01-30 03:45:07'),(480,1,'2019-01-30 03:50:07'),(481,1,'2019-01-30 03:55:06'),(482,1,'2019-01-30 04:00:05'),(483,1,'2019-01-30 04:05:06'),(484,1,'2019-01-30 04:10:07'),(485,1,'2019-01-30 04:15:06'),(486,1,'2019-01-30 04:20:06'),(487,1,'2019-01-30 04:25:06'),(488,1,'2019-01-30 04:30:05'),(489,1,'2019-01-30 04:35:07'),(490,1,'2019-01-30 04:40:07'),(491,1,'2019-01-30 04:45:06'),(492,1,'2019-01-30 04:50:07'),(493,1,'2019-01-30 04:55:07'),(494,1,'2019-01-30 05:00:05'),(495,1,'2019-01-30 05:05:07'),(496,1,'2019-01-30 05:10:07'),(497,1,'2019-01-30 05:15:06'),(498,1,'2019-01-30 05:20:06'),(499,1,'2019-01-30 05:25:07'),(500,1,'2019-01-30 05:30:05'),(501,1,'2019-01-30 05:35:06'),(502,1,'2019-01-30 05:40:06'),(503,1,'2019-01-30 05:45:07'),(504,1,'2019-01-30 05:50:07'),(505,1,'2019-01-30 05:55:06'),(506,1,'2019-01-30 06:00:05'),(507,1,'2019-01-30 06:05:07'),(508,1,'2019-01-30 06:10:07'),(509,1,'2019-01-30 06:15:06'),(510,1,'2019-01-30 06:20:07'),(511,1,'2019-01-30 06:25:05'),(512,1,'2019-01-30 06:30:05'),(513,1,'2019-01-30 06:35:07'),(514,1,'2019-01-30 06:40:06'),(515,1,'2019-01-30 06:45:07'),(516,1,'2019-01-30 06:50:06'),(517,1,'2019-01-30 06:55:07'),(518,1,'2019-01-30 07:00:05'),(519,1,'2019-01-30 07:05:06'),(520,1,'2019-01-30 07:10:06'),(521,1,'2019-01-30 07:15:07'),(522,1,'2019-01-30 07:20:06'),(523,1,'2019-01-30 07:25:07'),(524,1,'2019-01-30 07:30:05'),(525,1,'2019-01-30 07:35:07'),(526,1,'2019-01-30 07:40:06'),(527,1,'2019-01-30 07:45:07'),(528,1,'2019-01-30 07:50:07'),(529,1,'2019-01-30 07:55:06'),(530,1,'2019-01-30 08:00:05'),(531,1,'2019-01-30 08:05:06'),(532,1,'2019-01-30 08:10:06'),(533,1,'2019-01-30 08:15:07'),(534,1,'2019-01-30 08:20:07'),(535,1,'2019-01-30 08:25:07'),(536,1,'2019-01-30 08:30:05'),(537,1,'2019-01-30 08:35:07'),(538,1,'2019-01-30 08:40:06'),(539,1,'2019-01-30 08:45:06'),(540,1,'2019-01-30 08:50:07'),(541,1,'2019-01-30 08:55:07'),(542,1,'2019-01-30 09:00:05'),(543,1,'2019-01-30 09:05:07'),(544,1,'2019-01-30 09:10:07'),(545,1,'2019-01-30 09:15:07'),(546,1,'2019-01-30 09:20:06'),(547,1,'2019-01-30 09:25:07'),(548,1,'2019-01-30 09:30:05'),(549,1,'2019-01-30 09:35:07'),(550,1,'2019-01-30 09:40:07'),(551,1,'2019-01-30 09:45:06'),(552,1,'2019-01-30 09:50:06'),(553,1,'2019-01-30 09:55:07'),(554,1,'2019-01-30 10:00:05'),(555,1,'2019-01-30 10:05:07'),(556,1,'2019-01-30 10:10:07'),(557,1,'2019-01-30 10:15:07'),(558,1,'2019-01-30 10:20:06'),(559,1,'2019-01-30 10:25:06'),(560,1,'2019-01-30 10:30:05'),(561,1,'2019-01-30 10:35:07'),(562,1,'2019-01-30 10:40:07'),(563,1,'2019-01-30 10:45:07'),(564,1,'2019-01-30 10:50:06'),(565,1,'2019-01-30 10:55:07'),(566,1,'2019-01-30 11:00:05'),(567,1,'2019-01-30 11:05:06'),(568,1,'2019-01-30 11:10:07'),(569,1,'2019-01-30 11:15:07'),(570,1,'2019-01-30 11:20:06'),(571,1,'2019-01-30 11:25:07'),(572,1,'2019-01-30 11:30:05'),(573,1,'2019-01-30 11:35:07'),(574,1,'2019-01-30 11:40:07'),(575,1,'2019-01-30 11:45:06'),(576,1,'2019-01-30 11:50:07'),(577,1,'2019-01-30 11:55:07'),(578,1,'2019-01-30 12:00:05'),(579,1,'2019-01-30 12:05:06'),(580,1,'2019-01-30 12:10:06'),(581,1,'2019-01-30 12:15:07'),(582,1,'2019-01-30 12:20:06'),(583,1,'2019-01-30 12:25:07'),(584,1,'2019-01-30 12:30:05'),(585,1,'2019-01-30 12:35:06'),(586,1,'2019-01-30 12:40:07'),(587,1,'2019-01-30 12:45:07'),(588,1,'2019-01-30 12:50:06'),(589,1,'2019-01-30 12:55:07'),(590,1,'2019-01-30 13:00:05'),(591,1,'2019-01-30 13:05:06'),(592,1,'2019-01-30 13:10:07'),(593,1,'2019-01-30 13:15:07'),(594,1,'2019-01-30 13:20:07'),(595,1,'2019-01-30 13:25:06'),(596,1,'2019-01-30 13:30:05'),(597,1,'2019-01-30 13:35:07'),(598,1,'2019-01-30 13:40:07'),(599,1,'2019-01-30 13:45:06'),(600,1,'2019-01-30 13:50:07'),(601,1,'2019-01-30 13:55:06'),(602,1,'2019-01-30 14:00:05'),(603,1,'2019-01-30 14:05:06'),(604,1,'2019-01-30 14:10:07'),(605,1,'2019-01-30 14:15:07'),(606,1,'2019-01-30 14:20:06'),(607,1,'2019-01-30 14:25:06'),(608,1,'2019-01-30 14:30:05'),(609,1,'2019-01-30 14:35:06'),(610,1,'2019-01-30 14:40:06'),(611,1,'2019-01-30 14:45:06'),(612,1,'2019-01-30 14:50:06'),(613,1,'2019-01-30 14:55:07'),(614,1,'2019-01-30 15:00:05'),(615,1,'2019-01-30 15:05:07'),(616,1,'2019-01-30 15:10:06'),(617,1,'2019-01-30 15:15:06'),(618,1,'2019-01-30 15:20:07'),(619,1,'2019-01-30 15:25:06'),(620,1,'2019-01-30 15:30:05'),(621,1,'2019-01-30 15:35:07'),(622,1,'2019-01-30 15:40:06'),(623,1,'2019-01-30 15:45:07'),(624,1,'2019-01-30 15:50:06'),(625,1,'2019-01-30 15:55:06'),(626,1,'2019-01-30 16:00:05'),(627,1,'2019-01-30 16:05:07'),(628,1,'2019-01-30 16:10:06'),(629,1,'2019-01-30 16:15:07'),(630,1,'2019-01-30 16:20:07'),(631,1,'2019-01-30 16:25:07'),(632,1,'2019-01-30 16:30:04'),(633,1,'2019-01-30 16:35:07'),(634,1,'2019-01-30 16:40:06'),(635,1,'2019-01-30 16:45:07'),(636,1,'2019-01-30 16:50:06'),(637,1,'2019-01-30 16:55:07'),(638,1,'2019-01-30 17:00:05'),(639,1,'2019-01-30 17:05:06'),(640,1,'2019-01-30 17:10:07'),(641,1,'2019-01-30 17:15:06'),(642,1,'2019-01-30 17:20:06'),(643,1,'2019-01-30 17:25:07'),(644,1,'2019-01-30 17:30:05'),(645,1,'2019-01-30 17:35:07'),(646,1,'2019-01-30 17:40:07'),(647,1,'2019-01-30 17:45:06'),(648,1,'2019-01-30 17:50:07'),(649,1,'2019-01-30 17:55:06'),(650,1,'2019-01-30 18:00:05'),(651,1,'2019-01-30 18:05:06'),(652,1,'2019-01-30 18:10:07'),(653,1,'2019-01-30 18:15:07'),(654,1,'2019-01-30 18:20:07'),(655,1,'2019-01-30 18:25:06'),(656,1,'2019-01-30 18:30:05'),(657,1,'2019-01-30 18:35:06'),(658,1,'2019-01-30 18:40:07'),(659,1,'2019-01-30 18:45:07'),(660,1,'2019-01-30 18:50:06'),(661,1,'2019-01-30 18:55:07'),(662,1,'2019-01-30 19:00:05'),(663,1,'2019-01-30 19:05:06'),(664,1,'2019-01-30 19:10:07'),(665,1,'2019-01-30 19:15:06'),(666,1,'2019-01-30 19:20:07'),(667,1,'2019-01-30 19:25:06'),(668,1,'2019-01-30 19:30:05'),(669,1,'2019-01-30 19:35:06'),(670,1,'2019-01-30 19:40:07'),(671,1,'2019-01-30 19:45:06'),(672,1,'2019-01-30 19:50:07'),(673,1,'2019-01-30 19:55:07'),(674,1,'2019-01-30 20:00:05'),(675,1,'2019-01-30 20:05:07'),(676,1,'2019-01-30 20:10:06'),(677,1,'2019-01-30 20:15:07'),(678,1,'2019-01-30 20:20:07'),(679,1,'2019-01-30 20:25:06'),(680,1,'2019-01-30 20:30:05'),(681,1,'2019-01-30 20:35:06'),(682,1,'2019-01-30 20:40:06'),(683,1,'2019-01-30 20:45:07'),(684,1,'2019-01-30 20:50:06'),(685,1,'2019-01-30 20:55:07'),(686,1,'2019-01-30 21:00:05'),(687,1,'2019-01-30 21:05:07'),(688,1,'2019-01-30 21:10:07'),(689,1,'2019-01-30 21:15:06'),(690,1,'2019-01-30 21:20:07'),(691,1,'2019-01-30 21:25:07'),(692,1,'2019-01-30 21:30:05'),(693,1,'2019-01-30 21:35:07'),(694,1,'2019-01-30 21:40:06'),(695,1,'2019-01-30 21:45:07'),(696,1,'2019-01-30 21:50:07'),(697,1,'2019-01-30 21:55:06'),(698,1,'2019-01-30 22:00:05'),(699,1,'2019-01-30 22:05:07'),(700,1,'2019-01-30 22:10:07'),(701,1,'2019-01-30 22:15:06'),(702,1,'2019-01-30 22:20:07'),(703,1,'2019-01-30 22:25:07'),(704,1,'2019-01-30 22:30:05'),(705,1,'2019-01-30 22:35:06'),(706,1,'2019-01-30 22:40:06'),(707,1,'2019-01-30 22:45:07'),(708,1,'2019-01-30 22:50:07'),(709,1,'2019-01-30 22:55:06'),(710,1,'2019-01-30 23:00:05'),(711,1,'2019-01-30 23:05:06'),(712,1,'2019-01-30 23:10:07'),(713,1,'2019-01-30 23:15:06'),(714,1,'2019-01-30 23:20:07'),(715,1,'2019-01-30 23:25:07'),(716,1,'2019-01-30 23:30:05'),(717,1,'2019-01-30 23:35:07'),(718,1,'2019-01-30 23:40:07'),(719,1,'2019-01-30 23:45:06'),(720,1,'2019-01-30 23:50:07'),(721,1,'2019-01-30 23:55:06'),(722,1,'2019-01-31 00:00:06'),(723,1,'2019-01-31 00:05:06'),(724,1,'2019-01-31 00:10:07'),(725,1,'2019-01-31 00:15:07'),(726,1,'2019-01-31 00:20:07'),(727,1,'2019-01-31 00:25:06'),(728,1,'2019-01-31 00:30:05'),(729,1,'2019-01-31 00:35:07'),(730,1,'2019-01-31 00:40:07'),(731,1,'2019-01-31 00:45:07'),(732,1,'2019-01-31 00:50:06'),(733,1,'2019-01-31 00:55:07'),(734,1,'2019-01-31 01:00:05'),(735,1,'2019-01-31 01:05:07'),(736,1,'2019-01-31 01:10:07'),(737,1,'2019-01-31 01:15:06'),(738,1,'2019-01-31 01:20:06'),(739,1,'2019-01-31 01:25:06'),(740,1,'2019-01-31 01:30:06'),(741,1,'2019-01-31 01:35:07'),(742,1,'2019-01-31 01:40:07'),(743,1,'2019-01-31 01:45:06'),(744,1,'2019-01-31 01:50:07'),(745,1,'2019-01-31 01:55:06'),(746,1,'2019-01-31 02:00:05'),(747,1,'2019-01-31 02:05:07'),(748,1,'2019-01-31 02:10:07'),(749,1,'2019-01-31 02:15:06'),(750,1,'2019-01-31 02:20:07'),(751,1,'2019-01-31 02:25:07'),(752,1,'2019-01-31 02:30:05'),(753,1,'2019-01-31 02:35:07'),(754,1,'2019-01-31 02:40:06'),(755,1,'2019-01-31 02:45:07'),(756,1,'2019-01-31 02:50:07'),(757,1,'2019-01-31 02:55:06'),(758,1,'2019-01-31 03:00:06'),(759,1,'2019-01-31 03:05:06'),(760,1,'2019-01-31 03:10:07'),(761,1,'2019-01-31 03:15:06'),(762,1,'2019-01-31 03:20:07'),(763,1,'2019-01-31 03:25:07'),(764,1,'2019-01-31 03:30:05'),(765,1,'2019-01-31 03:35:06'),(766,1,'2019-01-31 03:40:07'),(767,1,'2019-01-31 03:45:07'),(768,1,'2019-01-31 03:50:06'),(769,1,'2019-01-31 03:55:06'),(770,1,'2019-01-31 04:00:05'),(771,1,'2019-01-31 04:05:07'),(772,1,'2019-01-31 04:10:07'),(773,1,'2019-01-31 04:15:06'),(774,1,'2019-01-31 04:20:06'),(775,1,'2019-01-31 04:25:06'),(776,1,'2019-01-31 04:30:05'),(777,1,'2019-01-31 04:35:07'),(778,1,'2019-01-31 04:40:06'),(779,1,'2019-01-31 04:45:07'),(780,1,'2019-01-31 04:50:06'),(781,1,'2019-01-31 04:55:07'),(782,1,'2019-01-31 05:00:05'),(783,1,'2019-01-31 05:05:06'),(784,1,'2019-01-31 05:10:07'),(785,1,'2019-01-31 05:15:06'),(786,1,'2019-01-31 05:20:07'),(787,1,'2019-01-31 05:25:07'),(788,1,'2019-01-31 05:30:05'),(789,1,'2019-01-31 05:35:07'),(790,1,'2019-01-31 05:40:06'),(791,1,'2019-01-31 05:45:07'),(792,1,'2019-01-31 05:50:06'),(793,1,'2019-01-31 05:55:07'),(794,1,'2019-01-31 06:00:05'),(795,1,'2019-01-31 06:05:06'),(796,1,'2019-01-31 06:10:07'),(797,1,'2019-01-31 06:15:07'),(798,1,'2019-01-31 06:20:06'),(799,1,'2019-01-31 06:25:06'),(800,1,'2019-01-31 06:30:05'),(801,1,'2019-01-31 06:35:07'),(802,1,'2019-01-31 06:40:05'),(803,1,'2019-01-31 06:45:07'),(804,1,'2019-01-31 06:50:06'),(805,1,'2019-01-31 06:55:07'),(806,1,'2019-01-31 07:00:05'),(807,1,'2019-01-31 07:05:06'),(808,1,'2019-01-31 07:10:07'),(809,1,'2019-01-31 07:15:07'),(810,1,'2019-01-31 07:20:07'),(811,1,'2019-01-31 07:25:06'),(812,1,'2019-01-31 07:30:05'),(813,1,'2019-01-31 07:35:06'),(814,1,'2019-01-31 07:40:06'),(815,1,'2019-01-31 07:45:07'),(816,1,'2019-01-31 07:50:06'),(817,1,'2019-01-31 07:55:07'),(818,1,'2019-01-31 08:00:05'),(819,1,'2019-01-31 08:05:06'),(820,1,'2019-01-31 08:10:07'),(821,1,'2019-01-31 08:15:07'),(822,1,'2019-01-31 08:20:07'),(823,1,'2019-01-31 08:25:06'),(824,1,'2019-01-31 08:30:05'),(825,1,'2019-01-31 08:35:07'),(826,1,'2019-01-31 08:40:05'),(827,1,'2019-01-31 08:45:07'),(828,1,'2019-01-31 08:50:06'),(829,1,'2019-01-31 08:55:06'),(830,1,'2019-01-31 09:00:05'),(831,1,'2019-01-31 09:05:06'),(832,1,'2019-01-31 09:10:07'),(833,1,'2019-01-31 09:15:06'),(834,1,'2019-01-31 09:20:07'),(835,1,'2019-01-31 09:25:07'),(836,1,'2019-01-31 09:30:05'),(837,1,'2019-01-31 09:35:06'),(838,1,'2019-01-31 09:40:07'),(839,1,'2019-01-31 09:45:06'),(840,1,'2019-01-31 09:50:07'),(841,1,'2019-01-31 09:55:07'),(842,1,'2019-01-31 10:00:05'),(843,1,'2019-01-31 10:05:07'),(844,1,'2019-01-31 10:10:07'),(845,1,'2019-01-31 10:15:06'),(846,1,'2019-01-31 10:20:07'),(847,1,'2019-01-31 10:25:06'),(848,1,'2019-01-31 10:30:05'),(849,1,'2019-01-31 10:35:07'),(850,1,'2019-01-31 10:40:07'),(851,1,'2019-01-31 10:45:06'),(852,1,'2019-01-31 10:50:06'),(853,1,'2019-01-31 10:55:07'),(854,1,'2019-01-31 11:00:05'),(855,1,'2019-01-31 11:05:07'),(856,1,'2019-01-31 11:10:07'),(857,1,'2019-01-31 11:15:06'),(858,1,'2019-01-31 11:20:06'),(859,1,'2019-01-31 11:25:07'),(860,1,'2019-01-31 11:30:05'),(861,1,'2019-01-31 11:35:07'),(862,1,'2019-01-31 11:40:07'),(863,1,'2019-01-31 11:45:06'),(864,1,'2019-01-31 11:50:07'),(865,1,'2019-01-31 11:55:07'),(866,1,'2019-01-31 12:00:05'),(867,1,'2019-01-31 12:05:06'),(868,1,'2019-01-31 12:10:06'),(869,1,'2019-01-31 12:15:06'),(870,1,'2019-01-31 12:20:06'),(871,1,'2019-01-31 12:25:07'),(872,1,'2019-01-31 12:30:05'),(873,1,'2019-01-31 12:35:07'),(874,1,'2019-01-31 12:40:07'),(875,1,'2019-01-31 12:45:07'),(876,1,'2019-01-31 12:50:06'),(877,1,'2019-01-31 12:55:07'),(878,1,'2019-01-31 13:00:05'),(879,1,'2019-01-31 13:05:06'),(880,1,'2019-01-31 13:10:06'),(881,1,'2019-01-31 13:15:07'),(882,1,'2019-01-31 13:20:07'),(883,1,'2019-01-31 13:25:06'),(884,1,'2019-01-31 13:30:05'),(885,1,'2019-01-31 13:35:07'),(886,1,'2019-01-31 13:40:06'),(887,1,'2019-01-31 13:45:06'),(888,1,'2019-01-31 13:50:07'),(889,1,'2019-01-31 13:55:07'),(890,1,'2019-01-31 14:00:05'),(891,1,'2019-01-31 14:05:07'),(892,1,'2019-01-31 14:10:06'),(893,1,'2019-01-31 14:15:07'),(894,1,'2019-01-31 14:20:07'),(895,1,'2019-01-31 14:25:07'),(896,1,'2019-01-31 14:30:05'),(897,1,'2019-01-31 14:35:07'),(898,1,'2019-01-31 14:40:07'),(899,1,'2019-01-31 14:45:07'),(900,1,'2019-01-31 14:50:06'),(901,1,'2019-01-31 14:55:07'),(902,1,'2019-01-31 15:00:05'),(903,1,'2019-01-31 15:05:06'),(904,1,'2019-01-31 15:10:07'),(905,1,'2019-01-31 15:15:06'),(906,1,'2019-01-31 15:20:07'),(907,1,'2019-01-31 15:25:06'),(908,1,'2019-01-31 15:30:05'),(909,1,'2019-01-31 15:35:06'),(910,1,'2019-01-31 15:40:07'),(911,1,'2019-01-31 15:45:07'),(912,1,'2019-01-31 15:50:05'),(913,1,'2019-01-31 15:55:07'),(914,1,'2019-01-31 16:00:05'),(915,1,'2019-01-31 16:05:06'),(916,1,'2019-01-31 16:10:07'),(917,1,'2019-01-31 16:15:07'),(918,1,'2019-01-31 16:20:06'),(919,1,'2019-01-31 16:25:06'),(920,1,'2019-01-31 16:30:05'),(921,1,'2019-01-31 16:35:07'),(922,1,'2019-01-31 16:40:07'),(923,1,'2019-01-31 16:45:06'),(924,1,'2019-01-31 16:50:07'),(925,1,'2019-01-31 16:55:07'),(926,1,'2019-01-31 17:00:05'),(927,1,'2019-01-31 17:05:07'),(928,1,'2019-01-31 17:10:07'),(929,1,'2019-01-31 17:15:07'),(930,1,'2019-01-31 17:20:06'),(931,1,'2019-01-31 17:25:07'),(932,1,'2019-01-31 17:30:05'),(933,1,'2019-01-31 17:35:06'),(934,1,'2019-01-31 17:40:07'),(935,1,'2019-01-31 17:45:06'),(936,1,'2019-01-31 17:50:07'),(937,1,'2019-01-31 17:55:07'),(938,1,'2019-01-31 18:00:05'),(939,1,'2019-01-31 18:05:07'),(940,1,'2019-01-31 18:10:07'),(941,1,'2019-01-31 18:15:06'),(942,1,'2019-01-31 18:20:06'),(943,1,'2019-01-31 18:25:07'),(944,1,'2019-01-31 18:30:05'),(945,1,'2019-01-31 18:35:06'),(946,1,'2019-01-31 18:40:07'),(947,1,'2019-01-31 18:45:06'),(948,1,'2019-01-31 18:50:07'),(949,1,'2019-01-31 18:55:07'),(950,1,'2019-01-31 19:00:05'),(951,1,'2019-01-31 19:05:06'),(952,1,'2019-01-31 19:10:07'),(953,1,'2019-01-31 19:15:06'),(954,1,'2019-01-31 19:20:06'),(955,1,'2019-01-31 19:25:07'),(956,1,'2019-01-31 19:30:05'),(957,1,'2019-01-31 19:35:06'),(958,1,'2019-01-31 19:40:07'),(959,1,'2019-01-31 19:45:07'),(960,1,'2019-01-31 19:50:07'),(961,1,'2019-01-31 19:55:06'),(962,1,'2019-01-31 20:00:05'),(963,1,'2019-01-31 20:05:07'),(964,1,'2019-01-31 20:10:07'),(965,1,'2019-01-31 20:15:07'),(966,1,'2019-01-31 20:20:06'),(967,1,'2019-01-31 20:25:07'),(968,1,'2019-01-31 20:30:05'),(969,1,'2019-01-31 20:35:06'),(970,1,'2019-01-31 20:40:06'),(971,1,'2019-02-01 22:50:07'),(972,1,'2019-02-01 23:15:07'),(973,1,'2019-02-01 23:20:06'),(974,1,'2019-02-01 23:25:06'),(975,1,'2019-02-01 23:27:44'),(976,1,'2019-02-01 23:30:05'),(977,1,'2019-02-01 23:35:06'),(978,1,'2019-02-01 23:40:07'),(979,1,'2019-02-01 23:45:07'),(980,1,'2019-02-01 23:50:06'),(981,1,'2019-02-01 23:55:07'),(982,1,'2019-02-02 00:00:05'),(983,1,'2019-02-02 00:05:06'),(984,1,'2019-02-02 00:10:07'),(985,1,'2019-02-02 00:15:07'),(986,1,'2019-02-02 00:20:06'),(987,1,'2019-02-02 00:25:07'),(988,1,'2019-02-02 00:30:05'),(989,1,'2019-02-02 00:35:07'),(990,1,'2019-02-02 00:40:06'),(991,1,'2019-02-02 00:45:07'),(992,1,'2019-02-02 00:50:05'),(993,1,'2019-02-02 00:55:07'),(994,1,'2019-02-02 01:00:05'),(995,1,'2019-02-02 01:05:06'),(996,1,'2019-02-02 01:10:06'),(997,1,'2019-02-02 01:15:07'),(998,1,'2019-02-02 01:20:07'),(999,1,'2019-02-02 01:25:07'),(1000,1,'2019-02-02 01:30:05'),(1001,1,'2019-02-02 01:35:06'),(1002,1,'2019-02-02 01:40:07'),(1003,1,'2019-02-02 01:45:06'),(1004,1,'2019-02-02 01:50:06'),(1005,1,'2019-02-02 01:55:06'),(1006,1,'2019-02-02 02:00:05'),(1007,1,'2019-02-02 02:05:07'),(1008,1,'2019-02-02 02:10:06'),(1009,1,'2019-02-02 02:15:07'),(1010,1,'2019-02-02 02:20:07'),(1011,1,'2019-02-02 02:25:07'),(1012,1,'2019-02-02 02:30:05'),(1013,1,'2019-02-02 02:35:07'),(1014,1,'2019-02-02 02:40:07'),(1015,1,'2019-02-02 02:45:07'),(1016,1,'2019-02-02 02:50:06'),(1017,1,'2019-02-02 02:55:07'),(1018,1,'2019-02-02 03:00:05'),(1019,1,'2019-02-02 03:05:07'),(1020,1,'2019-02-02 03:10:07'),(1021,1,'2019-02-02 03:15:07'),(1022,1,'2019-02-02 03:20:06'),(1023,1,'2019-02-02 03:25:07'),(1024,1,'2019-02-02 03:30:05'),(1025,1,'2019-02-02 03:35:06'),(1026,1,'2019-02-02 03:40:06'),(1027,1,'2019-02-02 03:45:06'),(1028,1,'2019-02-02 03:50:07'),(1029,1,'2019-02-02 03:55:06'),(1030,1,'2019-02-02 04:00:06'),(1031,1,'2019-02-02 04:05:07'),(1032,1,'2019-02-02 04:10:06'),(1033,1,'2019-02-02 04:15:07'),(1034,1,'2019-02-02 04:20:07'),(1035,1,'2019-02-02 04:25:07'),(1036,1,'2019-02-02 04:30:05'),(1037,1,'2019-02-02 04:35:07'),(1038,1,'2019-02-02 04:40:06'),(1039,1,'2019-02-02 04:45:06'),(1040,1,'2019-02-02 04:50:07'),(1041,1,'2019-02-02 04:55:07'),(1042,1,'2019-02-02 05:00:05'),(1043,1,'2019-02-02 05:05:06'),(1044,1,'2019-02-02 05:10:06'),(1045,1,'2019-02-02 05:15:07'),(1046,1,'2019-02-02 05:20:06'),(1047,1,'2019-02-02 05:25:07'),(1048,1,'2019-02-02 05:30:05'),(1049,1,'2019-02-02 05:35:07'),(1050,1,'2019-02-02 05:40:07'),(1051,1,'2019-02-02 05:45:06'),(1052,1,'2019-02-02 05:50:06'),(1053,1,'2019-02-02 05:55:07'),(1054,1,'2019-02-02 06:00:05'),(1055,1,'2019-02-02 06:05:07'),(1056,1,'2019-02-02 06:10:06'),(1057,1,'2019-02-02 06:15:06'),(1058,1,'2019-02-02 06:20:07'),(1059,1,'2019-02-02 06:25:06'),(1060,1,'2019-02-02 06:30:05'),(1061,1,'2019-02-02 06:35:07'),(1062,1,'2019-02-02 06:40:06'),(1063,1,'2019-02-02 06:45:06'),(1064,1,'2019-02-02 06:50:07'),(1065,1,'2019-02-02 06:55:07'),(1066,1,'2019-02-02 07:00:05'),(1067,1,'2019-02-02 07:05:07'),(1068,1,'2019-02-02 07:10:07'),(1069,1,'2019-02-02 07:15:06'),(1070,1,'2019-02-02 07:20:06'),(1071,1,'2019-02-02 07:25:06'),(1072,1,'2019-02-02 07:30:06'),(1073,1,'2019-02-02 07:35:07'),(1074,1,'2019-02-02 07:40:06'),(1075,1,'2019-02-02 07:45:06'),(1076,1,'2019-02-02 07:50:07'),(1077,1,'2019-02-02 07:55:07'),(1078,1,'2019-02-02 08:00:05'),(1079,1,'2019-02-02 08:05:07'),(1080,1,'2019-02-02 08:10:07'),(1081,1,'2019-02-02 08:15:06'),(1082,1,'2019-02-02 08:20:07'),(1083,1,'2019-02-02 08:25:07'),(1084,1,'2019-02-02 08:30:05'),(1085,1,'2019-02-02 08:35:07'),(1086,1,'2019-02-02 08:40:07'),(1087,1,'2019-02-02 08:45:06'),(1088,1,'2019-02-02 08:50:06'),(1089,1,'2019-02-02 08:55:07'),(1090,1,'2019-02-02 09:00:05'),(1091,1,'2019-02-02 09:05:06'),(1092,1,'2019-02-02 09:10:07'),(1093,1,'2019-02-02 09:15:06'),(1094,1,'2019-02-02 09:20:07'),(1095,1,'2019-02-02 09:25:07'),(1096,1,'2019-02-02 09:30:05'),(1097,1,'2019-02-02 09:35:06'),(1098,1,'2019-02-02 09:40:07'),(1099,1,'2019-02-02 09:45:07'),(1100,1,'2019-02-02 09:50:06'),(1101,1,'2019-02-02 09:55:07'),(1102,1,'2019-02-02 10:00:05'),(1103,1,'2019-02-02 10:05:06'),(1104,1,'2019-02-02 10:10:06'),(1105,1,'2019-02-02 10:15:06'),(1106,1,'2019-02-02 10:20:07'),(1107,1,'2019-02-02 10:25:07'),(1108,1,'2019-02-02 10:30:05'),(1109,1,'2019-02-02 10:35:07'),(1110,1,'2019-02-02 10:40:06'),(1111,1,'2019-02-02 10:45:07'),(1112,1,'2019-02-02 10:50:07'),(1113,1,'2019-02-02 10:55:07'),(1114,1,'2019-02-02 11:00:05'),(1115,1,'2019-02-02 11:05:07'),(1116,1,'2019-02-02 11:10:07'),(1117,1,'2019-02-02 11:15:06'),(1118,1,'2019-02-02 11:20:07'),(1119,1,'2019-02-02 11:25:06'),(1120,1,'2019-02-02 11:30:06'),(1121,1,'2019-02-02 11:35:07'),(1122,1,'2019-02-02 11:40:06'),(1123,1,'2019-02-02 11:45:07'),(1124,1,'2019-02-02 11:50:06'),(1125,1,'2019-02-02 11:55:07'),(1126,1,'2019-02-02 12:00:05'),(1127,1,'2019-02-02 12:05:07'),(1128,1,'2019-02-02 12:10:06'),(1129,1,'2019-02-02 12:15:07'),(1130,1,'2019-02-02 12:20:07'),(1131,1,'2019-02-02 12:25:06'),(1132,1,'2019-02-02 12:30:05'),(1133,1,'2019-02-02 12:35:06'),(1134,1,'2019-02-02 12:40:07'),(1135,1,'2019-02-02 12:45:06'),(1136,1,'2019-02-02 12:50:07'),(1137,1,'2019-02-02 12:55:07'),(1138,1,'2019-02-02 13:00:05'),(1139,1,'2019-02-02 13:05:07'),(1140,1,'2019-02-02 13:10:06'),(1141,1,'2019-02-02 13:15:07'),(1142,1,'2019-02-02 13:20:07'),(1143,1,'2019-02-02 13:25:05'),(1144,1,'2019-02-02 13:30:05'),(1145,1,'2019-02-02 13:35:06'),(1146,1,'2019-02-02 13:40:07'),(1147,1,'2019-02-02 13:45:06'),(1148,1,'2019-02-02 13:50:06'),(1149,1,'2019-02-02 13:55:06'),(1150,1,'2019-02-02 14:00:06'),(1151,1,'2019-02-02 14:05:07'),(1152,1,'2019-02-02 14:10:06'),(1153,1,'2019-02-02 14:15:07'),(1154,1,'2019-02-02 14:20:07'),(1155,1,'2019-02-02 14:25:06'),(1156,1,'2019-02-02 14:30:06'),(1157,1,'2019-02-02 14:35:07'),(1158,1,'2019-02-02 14:40:07'),(1159,1,'2019-02-02 14:45:06'),(1160,1,'2019-02-02 14:50:07'),(1161,1,'2019-02-02 14:55:07'),(1162,1,'2019-02-02 15:00:05'),(1163,1,'2019-02-02 15:05:06'),(1164,1,'2019-02-02 15:10:07'),(1165,1,'2019-02-02 15:15:07'),(1166,1,'2019-02-02 15:20:07'),(1167,1,'2019-02-02 15:25:06'),(1168,1,'2019-02-02 15:30:06'),(1169,1,'2019-02-02 15:35:06'),(1170,1,'2019-02-02 15:40:06'),(1171,1,'2019-02-02 15:45:07'),(1172,1,'2019-02-02 15:50:07'),(1173,1,'2019-02-02 15:55:06'),(1174,1,'2019-02-02 16:00:06'),(1175,1,'2019-02-02 16:05:07'),(1176,1,'2019-02-02 16:10:06'),(1177,1,'2019-02-02 16:15:07'),(1178,1,'2019-02-02 16:20:06'),(1179,1,'2019-02-02 16:25:07'),(1180,1,'2019-02-02 16:30:05'),(1181,1,'2019-02-02 16:35:07'),(1182,1,'2019-02-02 16:40:06'),(1183,1,'2019-02-02 16:45:06'),(1184,1,'2019-02-02 16:50:07'),(1185,1,'2019-02-02 16:55:06'),(1186,1,'2019-02-02 17:00:06'),(1187,1,'2019-02-02 17:05:06'),(1188,1,'2019-02-02 17:10:06'),(1189,1,'2019-02-02 17:15:07'),(1190,1,'2019-02-02 17:20:07'),(1191,1,'2019-02-02 17:25:06'),(1192,1,'2019-02-02 17:30:05'),(1193,1,'2019-02-02 17:35:07'),(1194,1,'2019-02-02 17:40:07'),(1195,1,'2019-02-02 17:45:06'),(1196,1,'2019-02-02 17:50:07'),(1197,1,'2019-02-02 17:55:07'),(1198,1,'2019-02-02 18:00:05'),(1199,1,'2019-02-02 18:05:07'),(1200,1,'2019-02-02 18:10:07'),(1201,1,'2019-02-02 18:15:06'),(1202,1,'2019-02-02 18:20:07'),(1203,1,'2019-02-02 18:25:06'),(1204,1,'2019-02-02 18:30:06'),(1205,1,'2019-02-02 18:35:07'),(1206,1,'2019-02-02 18:40:07'),(1207,1,'2019-02-02 18:45:06'),(1208,1,'2019-02-02 18:50:07'),(1209,1,'2019-02-02 18:55:07'),(1210,1,'2019-02-02 19:00:05'),(1211,1,'2019-02-02 19:05:06'),(1212,1,'2019-02-02 19:10:07'),(1213,1,'2019-02-02 19:15:06'),(1214,1,'2019-02-02 19:20:07'),(1215,1,'2019-02-02 19:25:07'),(1216,1,'2019-02-02 19:30:05'),(1217,1,'2019-02-02 19:35:07'),(1218,1,'2019-02-02 19:40:06'),(1219,1,'2019-02-02 19:45:07'),(1220,1,'2019-02-02 19:50:07'),(1221,1,'2019-02-02 19:55:06'),(1222,1,'2019-02-02 20:00:05'),(1223,1,'2019-02-02 20:05:06'),(1224,1,'2019-02-02 20:10:06'),(1225,1,'2019-02-02 20:15:07'),(1226,1,'2019-02-02 20:20:07'),(1227,1,'2019-02-02 20:25:06'),(1228,1,'2019-02-02 20:30:06'),(1229,1,'2019-02-02 20:35:07'),(1230,1,'2019-02-02 20:40:06'),(1231,1,'2019-02-02 20:45:07'),(1232,1,'2019-02-02 20:50:06'),(1233,1,'2019-02-02 20:55:07'),(1234,1,'2019-02-02 21:00:05'),(1235,1,'2019-02-02 21:05:06'),(1236,1,'2019-02-02 21:10:06'),(1237,1,'2019-02-02 21:15:07'),(1238,1,'2019-02-02 21:20:06'),(1239,1,'2019-02-02 21:25:06'),(1240,1,'2019-02-02 21:30:06'),(1241,1,'2019-02-02 21:35:07'),(1242,1,'2019-02-02 21:40:06'),(1243,1,'2019-02-02 21:45:07'),(1244,1,'2019-02-02 21:50:07'),(1245,1,'2019-02-02 21:55:06'),(1246,1,'2019-02-02 22:00:06'),(1247,1,'2019-02-02 22:05:07'),(1248,1,'2019-02-02 22:10:06'),(1249,1,'2019-02-02 22:15:07'),(1250,1,'2019-02-02 22:20:06'),(1251,1,'2019-02-02 22:25:07'),(1252,1,'2019-02-02 22:30:06'),(1253,1,'2019-02-02 22:35:06'),(1254,1,'2019-02-02 22:40:07'),(1255,1,'2019-02-02 22:45:07'),(1256,1,'2019-02-02 22:50:06'),(1257,1,'2019-02-02 22:55:07'),(1258,1,'2019-02-02 23:00:05'),(1259,1,'2019-02-02 23:05:06'),(1260,1,'2019-02-02 23:10:07'),(1261,1,'2019-02-02 23:15:07'),(1262,1,'2019-02-02 23:20:06'),(1263,1,'2019-02-02 23:25:06'),(1264,1,'2019-02-02 23:30:05'),(1265,1,'2019-02-02 23:35:06'),(1266,1,'2019-02-02 23:40:06'),(1267,1,'2019-02-02 23:45:07'),(1268,1,'2019-02-02 23:50:06'),(1269,1,'2019-02-02 23:55:06'),(1270,1,'2019-02-03 00:00:05'),(1271,1,'2019-02-03 00:05:07'),(1272,1,'2019-02-03 00:10:06'),(1273,1,'2019-02-03 00:15:07'),(1274,1,'2019-02-03 00:20:06'),(1275,1,'2019-02-03 00:25:07'),(1276,1,'2019-02-03 00:30:05'),(1277,1,'2019-02-03 00:35:06'),(1278,1,'2019-02-03 00:40:06'),(1279,1,'2019-02-03 00:45:06'),(1280,1,'2019-02-03 00:50:07'),(1281,1,'2019-02-03 00:55:06'),(1282,1,'2019-02-03 01:00:05'),(1283,1,'2019-02-03 01:05:06'),(1284,1,'2019-02-03 01:10:07'),(1285,1,'2019-02-03 01:15:06'),(1286,1,'2019-02-03 01:20:07'),(1287,1,'2019-02-03 01:25:06'),(1288,1,'2019-02-03 01:30:05'),(1289,1,'2019-02-03 01:35:06'),(1290,1,'2019-02-03 01:40:06'),(1291,1,'2019-02-03 01:45:07'),(1292,1,'2019-02-03 01:50:06'),(1293,1,'2019-02-03 01:55:07'),(1294,1,'2019-02-03 02:00:05'),(1295,1,'2019-02-03 02:05:07'),(1296,1,'2019-02-03 02:10:07'),(1297,1,'2019-02-03 02:15:06'),(1298,1,'2019-02-03 02:20:07'),(1299,1,'2019-02-03 02:25:06'),(1300,1,'2019-02-03 02:30:05'),(1301,1,'2019-02-03 02:35:06'),(1302,1,'2019-02-03 02:40:06'),(1303,1,'2019-02-03 02:45:07'),(1304,1,'2019-02-03 02:50:07'),(1305,1,'2019-02-03 02:55:06'),(1306,1,'2019-02-03 03:00:05'),(1307,1,'2019-02-03 03:05:06'),(1308,1,'2019-02-03 03:10:07'),(1309,1,'2019-02-03 03:15:06'),(1310,1,'2019-02-03 03:20:07'),(1311,1,'2019-02-03 03:25:06'),(1312,1,'2019-02-03 03:30:06'),(1313,1,'2019-02-03 03:35:07'),(1314,1,'2019-02-03 03:40:06'),(1315,1,'2019-02-03 03:45:07'),(1316,1,'2019-02-03 03:50:06'),(1317,1,'2019-02-03 03:55:06'),(1318,1,'2019-02-03 04:00:06'),(1319,1,'2019-02-03 04:05:07'),(1320,1,'2019-02-03 04:10:07'),(1321,1,'2019-02-03 04:15:06'),(1322,1,'2019-02-03 04:20:07'),(1323,1,'2019-02-03 04:25:07'),(1324,1,'2019-02-03 04:30:05'),(1325,1,'2019-02-03 04:35:06'),(1326,1,'2019-02-03 04:40:07'),(1327,1,'2019-02-03 04:45:06'),(1328,1,'2019-02-03 04:50:06'),(1329,1,'2019-02-03 04:55:06'),(1330,1,'2019-02-03 05:00:05'),(1331,1,'2019-02-03 05:05:07'),(1332,1,'2019-02-03 05:10:07'),(1333,1,'2019-02-03 05:15:06'),(1334,1,'2019-02-03 05:20:06'),(1335,1,'2019-02-03 05:25:06'),(1336,1,'2019-02-03 05:30:05'),(1337,1,'2019-02-03 05:35:06'),(1338,1,'2019-02-03 05:40:07'),(1339,1,'2019-02-03 05:45:06'),(1340,1,'2019-02-03 05:50:07'),(1341,1,'2019-02-03 05:55:07'),(1342,1,'2019-02-03 06:00:05'),(1343,1,'2019-02-03 06:05:07'),(1344,1,'2019-02-03 06:10:06'),(1345,1,'2019-02-03 06:15:06'),(1346,1,'2019-02-03 06:20:07'),(1347,1,'2019-02-03 06:25:05'),(1348,1,'2019-02-03 06:30:06'),(1349,1,'2019-02-03 06:35:06'),(1350,1,'2019-02-03 06:40:07'),(1351,1,'2019-02-03 06:45:07'),(1352,1,'2019-02-03 06:50:07'),(1353,1,'2019-02-03 06:55:07'),(1354,1,'2019-02-03 07:00:05'),(1355,1,'2019-02-03 07:05:07'),(1356,1,'2019-02-03 07:10:06'),(1357,1,'2019-02-03 07:15:07'),(1358,1,'2019-02-03 07:20:06'),(1359,1,'2019-02-03 07:25:07'),(1360,1,'2019-02-03 07:30:06'),(1361,1,'2019-02-03 07:35:06'),(1362,1,'2019-02-03 07:40:06'),(1363,1,'2019-02-03 07:45:07'),(1364,1,'2019-02-03 07:50:07'),(1365,1,'2019-02-03 07:55:06'),(1366,1,'2019-02-03 08:00:06'),(1367,1,'2019-02-03 08:05:06'),(1368,1,'2019-02-03 08:10:06'),(1369,1,'2019-02-03 08:15:07'),(1370,1,'2019-02-03 08:20:07'),(1371,1,'2019-02-03 08:25:06'),(1372,1,'2019-02-03 08:30:05'),(1373,1,'2019-02-03 08:35:06'),(1374,1,'2019-02-03 08:40:06'),(1375,1,'2019-02-03 08:45:06'),(1376,1,'2019-02-03 08:50:07'),(1377,1,'2019-02-03 08:55:06'),(1378,1,'2019-02-03 09:00:05'),(1379,1,'2019-02-03 09:05:07'),(1380,1,'2019-02-03 09:10:07'),(1381,1,'2019-02-03 09:15:07'),(1382,1,'2019-02-03 09:20:06'),(1383,1,'2019-02-03 09:25:07'),(1384,1,'2019-02-03 09:30:05'),(1385,1,'2019-02-03 09:35:07'),(1386,1,'2019-02-03 09:40:07'),(1387,1,'2019-02-03 09:45:06'),(1388,1,'2019-02-03 09:50:07'),(1389,1,'2019-02-03 09:55:06'),(1390,1,'2019-02-03 10:00:06'),(1391,1,'2019-02-03 10:05:07'),(1392,1,'2019-02-03 10:10:06'),(1393,1,'2019-02-03 10:15:07'),(1394,1,'2019-02-03 10:20:07'),(1395,1,'2019-02-03 10:25:07'),(1396,1,'2019-02-03 10:30:05'),(1397,1,'2019-02-03 10:35:07'),(1398,1,'2019-02-03 10:40:07'),(1399,1,'2019-02-03 10:45:06'),(1400,1,'2019-02-03 10:50:07'),(1401,1,'2019-02-03 10:55:07'),(1402,1,'2019-02-03 11:00:05'),(1403,1,'2019-02-03 11:05:06'),(1404,1,'2019-02-03 11:10:07'),(1405,1,'2019-02-03 11:15:06'),(1406,1,'2019-02-03 11:20:07'),(1407,1,'2019-02-03 11:25:06'),(1408,1,'2019-02-03 11:30:06'),(1409,1,'2019-02-03 11:35:07'),(1410,1,'2019-02-03 11:40:06'),(1411,1,'2019-02-03 11:45:06'),(1412,1,'2019-02-03 11:50:07'),(1413,1,'2019-02-03 11:55:07'),(1414,1,'2019-02-03 12:00:05'),(1415,1,'2019-02-03 12:05:07'),(1416,1,'2019-02-03 12:10:07'),(1417,1,'2019-02-03 12:15:06'),(1418,1,'2019-02-03 12:20:06'),(1419,1,'2019-02-03 12:25:06'),(1420,1,'2019-02-03 12:30:05'),(1421,1,'2019-02-03 12:35:06'),(1422,1,'2019-02-03 12:40:07'),(1423,1,'2019-02-03 12:45:06'),(1424,1,'2019-02-03 12:50:06'),(1425,1,'2019-02-03 12:55:06'),(1426,1,'2019-02-03 13:00:06'),(1427,1,'2019-02-03 13:05:06'),(1428,1,'2019-02-03 13:10:07'),(1429,1,'2019-02-03 13:15:06'),(1430,1,'2019-02-03 13:20:07'),(1431,1,'2019-02-03 13:25:07'),(1432,1,'2019-02-03 13:30:05'),(1433,1,'2019-02-03 13:35:07'),(1434,1,'2019-02-03 13:40:07'),(1435,1,'2019-02-03 13:45:07'),(1436,1,'2019-02-03 13:50:06'),(1437,1,'2019-02-03 13:55:07'),(1438,1,'2019-02-03 14:00:05'),(1439,1,'2019-02-03 14:05:07'),(1440,1,'2019-02-03 14:10:06'),(1441,1,'2019-02-03 14:15:07'),(1442,1,'2019-02-03 14:20:06'),(1443,1,'2019-02-03 14:25:06'),(1444,1,'2019-02-03 14:30:06'),(1445,1,'2019-02-03 14:35:07'),(1446,1,'2019-02-03 14:40:07'),(1447,1,'2019-02-03 14:45:06'),(1448,1,'2019-02-03 14:50:07'),(1449,1,'2019-02-03 14:55:06'),(1450,1,'2019-02-03 15:00:06'),(1451,1,'2019-02-03 15:05:06'),(1452,1,'2019-02-03 15:10:07'),(1453,1,'2019-02-03 15:15:07'),(1454,1,'2019-02-03 15:20:06'),(1455,1,'2019-02-03 15:25:07'),(1456,1,'2019-02-03 15:30:05'),(1457,1,'2019-02-03 15:35:07'),(1458,1,'2019-02-03 15:40:07'),(1459,1,'2019-02-03 15:45:06'),(1460,1,'2019-02-03 15:50:06'),(1461,1,'2019-02-03 15:55:06'),(1462,1,'2019-02-03 16:00:05'),(1463,1,'2019-02-03 16:05:07'),(1464,1,'2019-02-03 16:10:06'),(1465,1,'2019-02-03 16:15:06'),(1466,1,'2019-02-03 16:20:06'),(1467,1,'2019-02-03 16:25:07'),(1468,1,'2019-02-03 16:30:05'),(1469,1,'2019-02-03 16:35:07'),(1470,1,'2019-02-03 16:40:07'),(1471,1,'2019-02-03 16:45:07'),(1472,1,'2019-02-03 16:50:06'),(1473,1,'2019-02-03 16:55:07'),(1474,1,'2019-02-03 17:00:05'),(1475,1,'2019-02-03 17:05:07'),(1476,1,'2019-02-03 17:10:07'),(1477,1,'2019-02-03 17:15:06'),(1478,1,'2019-02-03 17:20:07'),(1479,1,'2019-02-03 17:25:06'),(1480,1,'2019-02-03 17:30:06'),(1481,1,'2019-02-03 17:35:06'),(1482,1,'2019-02-03 17:40:06'),(1483,1,'2019-02-03 17:45:06'),(1484,1,'2019-02-03 17:50:07'),(1485,1,'2019-02-03 17:55:07'),(1486,1,'2019-02-03 18:00:05'),(1487,1,'2019-02-03 18:05:07'),(1488,1,'2019-02-03 18:10:06'),(1489,1,'2019-02-03 18:15:07'),(1490,1,'2019-02-03 18:20:06'),(1491,1,'2019-02-03 18:25:07'),(1492,1,'2019-02-03 18:30:05'),(1493,1,'2019-02-03 18:35:07'),(1494,1,'2019-02-03 18:40:06'),(1495,1,'2019-02-03 18:45:07'),(1496,1,'2019-02-03 18:50:06'),(1497,1,'2019-02-03 18:55:07'),(1498,1,'2019-02-03 19:00:05'),(1499,1,'2019-02-03 19:05:06'),(1500,1,'2019-02-03 19:10:07'),(1501,1,'2019-02-03 19:15:05'),(1502,1,'2019-02-03 19:20:06'),(1503,1,'2019-02-03 19:25:07'),(1504,1,'2019-02-03 19:30:05'),(1505,1,'2019-02-03 19:35:06'),(1506,1,'2019-02-03 19:40:06'),(1507,1,'2019-02-03 19:45:07'),(1508,1,'2019-02-03 19:50:07'),(1509,1,'2019-02-03 19:55:06'),(1510,1,'2019-02-03 20:00:06'),(1511,1,'2019-02-03 20:05:07'),(1512,1,'2019-02-03 20:10:07'),(1513,1,'2019-02-03 20:15:06'),(1514,1,'2019-02-03 20:20:07'),(1515,1,'2019-02-03 20:25:06'),(1516,1,'2019-02-03 20:30:05'),(1517,1,'2019-02-03 20:35:07'),(1518,1,'2019-02-03 20:40:06'),(1519,1,'2019-02-03 20:45:07'),(1520,1,'2019-02-03 20:50:07'),(1521,1,'2019-02-03 20:55:06'),(1522,1,'2019-02-03 21:00:05'),(1523,1,'2019-02-03 21:05:06'),(1524,1,'2019-02-03 21:10:06'),(1525,1,'2019-02-03 21:15:06'),(1526,1,'2019-02-03 21:20:07'),(1527,1,'2019-02-03 21:25:07'),(1528,1,'2019-02-03 21:30:05'),(1529,1,'2019-02-03 21:35:06'),(1530,1,'2019-02-03 21:40:07'),(1531,1,'2019-02-03 21:45:06'),(1532,1,'2019-02-03 21:50:07'),(1533,1,'2019-02-03 21:55:07'),(1534,1,'2019-02-03 22:00:05'),(1535,1,'2019-02-03 22:05:06'),(1536,1,'2019-02-03 22:10:06'),(1537,1,'2019-02-03 22:15:07'),(1538,1,'2019-02-03 22:20:06'),(1539,1,'2019-02-03 22:25:07'),(1540,1,'2019-02-03 22:30:05'),(1541,1,'2019-02-03 22:35:07'),(1542,1,'2019-02-03 22:40:06'),(1543,1,'2019-02-03 22:45:07'),(1544,1,'2019-02-03 22:50:07'),(1545,1,'2019-02-03 22:55:07'),(1546,1,'2019-02-03 23:00:05'),(1547,1,'2019-02-03 23:05:07'),(1548,1,'2019-02-03 23:10:07'),(1549,1,'2019-02-03 23:15:06'),(1550,1,'2019-02-03 23:20:06'),(1551,1,'2019-02-03 23:25:07'),(1552,1,'2019-02-03 23:30:05'),(1553,1,'2019-02-03 23:35:07'),(1554,1,'2019-02-03 23:40:06'),(1555,1,'2019-02-03 23:45:05'),(1556,1,'2019-02-03 23:50:07'),(1557,1,'2019-02-03 23:55:07'),(1558,1,'2019-02-04 00:00:05'),(1559,1,'2019-02-04 00:05:07'),(1560,1,'2019-02-04 00:10:06'),(1561,1,'2019-02-04 00:15:07'),(1562,1,'2019-02-04 00:20:07'),(1563,1,'2019-02-04 00:25:07'),(1564,1,'2019-02-04 00:30:05'),(1565,1,'2019-02-04 00:35:07'),(1566,1,'2019-02-04 00:40:06'),(1567,1,'2019-02-04 00:45:07'),(1568,1,'2019-02-04 00:50:06'),(1569,1,'2019-02-04 00:55:07'),(1570,1,'2019-02-04 01:00:05'),(1571,1,'2019-02-04 01:05:07'),(1572,1,'2019-02-04 01:10:06'),(1573,1,'2019-02-04 01:15:07'),(1574,1,'2019-02-04 01:20:06'),(1575,1,'2019-02-04 01:25:06'),(1576,1,'2019-02-04 01:30:06'),(1577,1,'2019-02-04 01:35:07'),(1578,1,'2019-02-04 01:40:06'),(1579,1,'2019-02-04 01:45:07'),(1580,1,'2019-02-04 01:50:07'),(1581,1,'2019-02-04 01:55:06'),(1582,1,'2019-02-04 02:00:06'),(1583,1,'2019-02-04 02:05:07'),(1584,1,'2019-02-04 02:10:06'),(1585,1,'2019-02-04 02:15:07'),(1586,1,'2019-02-04 02:20:06'),(1587,1,'2019-02-04 02:25:07'),(1588,1,'2019-02-04 02:30:05'),(1589,1,'2019-02-04 02:35:07'),(1590,1,'2019-02-04 02:40:07'),(1591,1,'2019-02-04 02:45:07'),(1592,1,'2019-02-04 02:50:06'),(1593,1,'2019-02-04 02:55:07'),(1594,1,'2019-02-04 03:00:06'),(1595,1,'2019-02-04 03:05:06'),(1596,1,'2019-02-04 03:10:07'),(1597,1,'2019-02-04 03:15:07'),(1598,1,'2019-02-04 03:20:06'),(1599,1,'2019-02-04 03:25:07'),(1600,1,'2019-02-04 03:30:05'),(1601,1,'2019-02-04 03:35:06'),(1602,1,'2019-02-04 03:40:07'),(1603,1,'2019-02-04 03:45:07'),(1604,1,'2019-02-04 03:50:06'),(1605,1,'2019-02-04 03:55:06'),(1606,1,'2019-02-04 04:00:05'),(1607,1,'2019-02-04 04:05:07'),(1608,1,'2019-02-04 04:10:07'),(1609,1,'2019-02-04 04:15:07'),(1610,1,'2019-02-04 04:20:06'),(1611,1,'2019-02-04 04:25:07'),(1612,1,'2019-02-04 04:30:05'),(1613,1,'2019-02-04 04:35:06'),(1614,1,'2019-02-04 04:40:07'),(1615,1,'2019-02-04 04:45:06'),(1616,1,'2019-02-04 04:50:07'),(1617,1,'2019-02-04 04:55:07'),(1618,1,'2019-02-04 05:00:05'),(1619,1,'2019-02-04 05:05:07'),(1620,1,'2019-02-04 05:10:07'),(1621,1,'2019-02-04 05:15:06'),(1622,1,'2019-02-04 05:20:07'),(1623,1,'2019-02-04 05:25:07'),(1624,1,'2019-02-04 05:30:05'),(1625,1,'2019-02-04 05:35:07'),(1626,1,'2019-02-04 05:40:06'),(1627,1,'2019-02-04 05:45:07'),(1628,1,'2019-02-04 05:50:07'),(1629,1,'2019-02-04 05:55:06'),(1630,1,'2019-02-04 06:00:06'),(1631,1,'2019-02-04 06:05:06'),(1632,1,'2019-02-04 06:10:07'),(1633,1,'2019-02-04 06:15:07'),(1634,1,'2019-02-04 06:20:06'),(1635,1,'2019-02-04 06:25:05'),(1636,1,'2019-02-04 06:30:05'),(1637,1,'2019-02-04 06:35:07'),(1638,1,'2019-02-04 06:40:07'),(1639,1,'2019-02-04 06:45:06'),(1640,1,'2019-02-04 06:50:07'),(1641,1,'2019-02-04 06:55:06'),(1642,1,'2019-02-04 07:00:06'),(1643,1,'2019-02-04 07:05:07'),(1644,1,'2019-02-04 07:10:07'),(1645,1,'2019-02-04 07:15:06'),(1646,1,'2019-02-04 07:20:07'),(1647,1,'2019-02-04 07:25:07'),(1648,1,'2019-02-04 07:30:05'),(1649,1,'2019-02-04 07:35:07'),(1650,1,'2019-02-04 07:40:06'),(1651,1,'2019-02-04 07:45:07'),(1652,1,'2019-02-04 07:50:07'),(1653,1,'2019-02-04 07:55:06'),(1654,1,'2019-02-04 08:00:06'),(1655,1,'2019-02-04 08:05:07'),(1656,1,'2019-02-04 08:10:05'),(1657,1,'2019-02-04 08:15:07'),(1658,1,'2019-02-04 08:20:07'),(1659,1,'2019-02-04 08:25:07'),(1660,1,'2019-02-04 08:30:05'),(1661,1,'2019-02-04 08:35:07'),(1662,1,'2019-02-04 08:40:07'),(1663,1,'2019-02-04 08:45:06'),(1664,1,'2019-02-04 08:50:06'),(1665,1,'2019-02-04 08:55:07'),(1666,1,'2019-02-04 09:00:05'),(1667,1,'2019-02-04 09:05:06'),(1668,1,'2019-02-04 09:10:07'),(1669,1,'2019-02-04 09:15:07'),(1670,1,'2019-02-04 09:20:06'),(1671,1,'2019-02-04 09:25:07'),(1672,1,'2019-02-04 09:30:06'),(1673,1,'2019-02-04 09:35:06'),(1674,1,'2019-02-04 09:40:07'),(1675,1,'2019-02-04 09:45:07'),(1676,1,'2019-02-04 09:50:06'),(1677,1,'2019-02-04 09:55:07'),(1678,1,'2019-02-04 10:00:06'),(1679,1,'2019-02-04 10:05:07'),(1680,1,'2019-02-04 10:10:06'),(1681,1,'2019-02-04 10:15:07'),(1682,1,'2019-02-04 10:20:07'),(1683,1,'2019-02-04 10:25:06'),(1684,1,'2019-02-04 10:30:05'),(1685,1,'2019-02-04 10:35:07'),(1686,1,'2019-02-04 10:40:06'),(1687,1,'2019-02-04 10:45:06'),(1688,1,'2019-02-04 10:50:06'),(1689,1,'2019-02-04 10:55:06'),(1690,1,'2019-02-04 11:00:06'),(1691,1,'2019-02-04 11:05:07'),(1692,1,'2019-02-04 11:10:06'),(1693,1,'2019-02-04 11:15:07'),(1694,1,'2019-02-04 11:20:07'),(1695,1,'2019-02-04 11:25:07'),(1696,1,'2019-02-04 11:30:05'),(1697,1,'2019-02-04 11:35:07'),(1698,1,'2019-02-04 11:40:07'),(1699,1,'2019-02-04 11:45:07'),(1700,1,'2019-02-04 11:50:06'),(1701,1,'2019-02-04 11:55:06'),(1702,1,'2019-02-04 12:00:06'),(1703,1,'2019-02-04 12:05:06'),(1704,1,'2019-02-04 12:10:06'),(1705,1,'2019-02-04 12:15:07'),(1706,1,'2019-02-04 12:20:07'),(1707,1,'2019-02-04 12:25:06'),(1708,1,'2019-02-04 12:30:06'),(1709,1,'2019-02-04 12:35:07'),(1710,1,'2019-02-04 12:40:07'),(1711,1,'2019-02-04 12:45:06'),(1712,1,'2019-02-04 12:50:06'),(1713,1,'2019-02-04 12:55:06'),(1714,1,'2019-02-04 13:00:06'),(1715,1,'2019-02-04 13:05:07'),(1716,1,'2019-02-04 13:10:06'),(1717,1,'2019-02-04 13:15:07'),(1718,1,'2019-02-04 13:20:07'),(1719,1,'2019-02-04 13:25:07'),(1720,1,'2019-02-04 13:30:05'),(1721,1,'2019-02-04 13:35:06'),(1722,1,'2019-02-04 13:40:07'),(1723,1,'2019-02-04 13:45:06'),(1724,1,'2019-02-04 13:50:07'),(1725,1,'2019-02-04 13:55:07'),(1726,1,'2019-02-04 14:00:05'),(1727,1,'2019-02-04 14:05:06'),(1728,1,'2019-02-04 14:10:07'),(1729,1,'2019-02-04 14:15:06'),(1730,1,'2019-02-04 14:20:07'),(1731,1,'2019-02-04 14:25:07'),(1732,1,'2019-02-04 14:30:05'),(1733,1,'2019-02-04 14:35:06'),(1734,1,'2019-02-04 14:40:07'),(1735,1,'2019-02-04 14:45:06'),(1736,1,'2019-02-04 14:50:07'),(1737,1,'2019-02-04 14:55:06'),(1738,1,'2019-02-04 15:00:06'),(1739,1,'2019-02-04 15:05:06'),(1740,1,'2019-02-04 15:10:07'),(1741,1,'2019-02-04 15:15:06'),(1742,1,'2019-02-04 15:20:07'),(1743,1,'2019-02-04 15:25:07'),(1744,1,'2019-02-04 15:30:05'),(1745,1,'2019-02-04 15:35:07'),(1746,1,'2019-02-04 15:40:07'),(1747,1,'2019-02-04 15:45:06'),(1748,1,'2019-02-04 15:50:06'),(1749,1,'2019-02-04 15:55:07'),(1750,1,'2019-02-04 16:00:05'),(1751,1,'2019-02-04 16:05:06'),(1752,1,'2019-02-04 16:10:07'),(1753,1,'2019-02-04 16:15:07'),(1754,1,'2019-02-04 16:20:06'),(1755,1,'2019-02-04 16:25:07'),(1756,1,'2019-02-04 16:30:05'),(1757,1,'2019-02-04 16:35:07'),(1758,1,'2019-02-04 16:40:06'),(1759,1,'2019-02-04 16:45:07'),(1760,1,'2019-02-04 16:50:07'),(1761,1,'2019-02-04 16:55:06'),(1762,1,'2019-02-04 17:00:06'),(1763,1,'2019-02-04 17:05:06'),(1764,1,'2019-02-04 17:10:07'),(1765,1,'2019-02-04 17:15:07'),(1766,1,'2019-02-04 17:20:06'),(1767,1,'2019-02-04 17:25:07'),(1768,1,'2019-02-04 17:30:05'),(1769,1,'2019-02-04 17:35:07'),(1770,1,'2019-02-04 17:40:07'),(1771,1,'2019-02-04 17:45:06'),(1772,1,'2019-02-04 17:50:07'),(1773,1,'2019-02-04 17:55:06'),(1774,1,'2019-02-04 18:00:05'),(1775,1,'2019-02-04 18:05:07'),(1776,1,'2019-02-04 18:10:07'),(1777,1,'2019-02-04 18:15:07'),(1778,1,'2019-02-04 18:20:06'),(1779,1,'2019-02-04 18:25:07'),(1780,1,'2019-02-04 18:30:05'),(1781,1,'2019-02-04 18:35:07'),(1782,1,'2019-02-04 18:40:06'),(1783,1,'2019-02-04 18:45:07'),(1784,1,'2019-02-04 18:50:07'),(1785,1,'2019-02-04 18:55:06'),(1786,1,'2019-02-04 19:00:05'),(1787,1,'2019-02-04 19:05:06'),(1788,1,'2019-02-04 19:10:06'),(1789,1,'2019-02-04 19:15:07'),(1790,1,'2019-02-04 19:20:06'),(1791,1,'2019-02-04 19:25:07'),(1792,1,'2019-02-04 19:30:05'),(1793,1,'2019-02-04 19:35:06'),(1794,1,'2019-02-04 19:40:06'),(1795,1,'2019-02-04 19:45:07'),(1796,1,'2019-02-04 19:50:07'),(1797,1,'2019-02-04 19:55:06'),(1798,1,'2019-02-04 20:00:06'),(1799,1,'2019-02-04 20:05:06'),(1800,1,'2019-02-04 20:10:06'),(1801,1,'2019-02-04 20:15:06'),(1802,1,'2019-02-04 20:20:07'),(1803,1,'2019-02-04 20:25:06'),(1804,1,'2019-02-04 20:30:05'),(1805,1,'2019-02-04 20:35:06'),(1806,1,'2019-02-04 20:40:07'),(1807,1,'2019-02-04 20:45:07'),(1808,1,'2019-02-04 20:50:06'),(1809,1,'2019-02-04 20:55:07'),(1810,1,'2019-02-04 21:00:05'),(1811,1,'2019-02-04 21:05:07'),(1812,1,'2019-02-04 21:10:06'),(1813,1,'2019-02-04 21:15:07'),(1814,1,'2019-02-04 21:20:06'),(1815,1,'2019-02-04 21:25:07'),(1816,1,'2019-02-04 21:30:05'),(1817,1,'2019-02-04 21:35:06'),(1818,1,'2019-02-04 21:40:07'),(1819,1,'2019-02-04 21:45:06'),(1820,1,'2019-02-04 21:50:07'),(1821,1,'2019-02-04 21:55:06'),(1822,1,'2019-02-04 22:00:05'),(1823,1,'2019-02-04 22:05:07'),(1824,1,'2019-02-04 22:10:07'),(1825,1,'2019-02-04 22:15:07'),(1826,1,'2019-02-04 22:20:06'),(1827,1,'2019-02-04 22:25:06'),(1828,1,'2019-02-04 22:30:05'),(1829,1,'2019-02-04 22:35:06'),(1830,1,'2019-02-04 22:40:07'),(1831,1,'2019-02-04 22:45:07'),(1832,1,'2019-02-04 22:50:06'),(1833,1,'2019-02-04 22:55:07'),(1834,1,'2019-02-04 23:00:06'),(1835,1,'2019-02-04 23:05:07'),(1836,1,'2019-02-04 23:10:06'),(1837,1,'2019-02-04 23:15:07'),(1838,1,'2019-02-04 23:20:07'),(1839,1,'2019-02-04 23:25:07'),(1840,1,'2019-02-04 23:30:05'),(1841,1,'2019-02-04 23:35:07'),(1842,1,'2019-02-04 23:40:07'),(1843,1,'2019-02-04 23:45:06'),(1844,1,'2019-02-04 23:50:07'),(1845,1,'2019-02-04 23:55:07'),(1846,1,'2019-02-05 00:00:05'),(1847,1,'2019-02-05 00:05:06'),(1848,1,'2019-02-05 00:10:07'),(1849,1,'2019-02-05 00:15:06'),(1850,1,'2019-02-05 00:20:07'),(1851,1,'2019-02-05 00:25:07'),(1852,1,'2019-02-05 00:30:05'),(1853,1,'2019-02-05 00:35:07'),(1854,1,'2019-02-05 00:40:06'),(1855,1,'2019-02-05 00:45:07'),(1856,1,'2019-02-05 00:50:06'),(1857,1,'2019-02-05 00:55:07'),(1858,1,'2019-02-05 01:00:05'),(1859,1,'2019-02-05 01:05:07'),(1860,1,'2019-02-05 01:10:06'),(1861,1,'2019-02-05 01:15:07'),(1862,1,'2019-02-05 01:20:07'),(1863,1,'2019-02-05 01:25:06'),(1864,1,'2019-02-05 01:30:06'),(1865,1,'2019-02-05 01:35:06'),(1866,1,'2019-02-05 01:40:07'),(1867,1,'2019-02-05 01:45:06'),(1868,1,'2019-02-05 01:50:06'),(1869,1,'2019-02-05 01:55:07'),(1870,1,'2019-02-05 02:00:05'),(1871,1,'2019-02-05 02:05:07'),(1872,1,'2019-02-05 02:10:07'),(1873,1,'2019-02-05 02:15:06'),(1874,1,'2019-02-05 02:20:07'),(1875,1,'2019-02-05 02:25:06'),(1876,1,'2019-02-05 02:30:06'),(1877,1,'2019-02-05 02:35:05'),(1878,1,'2019-02-05 02:40:07'),(1879,1,'2019-02-05 02:45:07'),(1880,1,'2019-02-05 02:50:06'),(1881,1,'2019-02-05 02:55:06'),(1882,1,'2019-02-05 03:00:06'),(1883,1,'2019-02-05 03:05:06'),(1884,1,'2019-02-05 03:10:07'),(1885,1,'2019-02-05 03:15:07'),(1886,1,'2019-02-05 03:20:06'),(1887,1,'2019-02-05 03:25:06'),(1888,1,'2019-02-05 03:30:05'),(1889,1,'2019-02-05 03:35:06'),(1890,1,'2019-02-05 03:40:07'),(1891,1,'2019-02-05 03:45:07'),(1892,1,'2019-02-05 03:50:07'),(1893,1,'2019-02-05 03:55:06'),(1894,1,'2019-02-05 04:00:06'),(1895,1,'2019-02-05 04:05:06'),(1896,1,'2019-02-05 04:10:06'),(1897,1,'2019-02-05 04:15:06'),(1898,1,'2019-02-05 04:20:06'),(1899,1,'2019-02-05 04:25:06'),(1900,1,'2019-02-05 04:30:05'),(1901,1,'2019-02-05 04:35:07'),(1902,1,'2019-02-05 04:40:07'),(1903,1,'2019-02-05 04:45:07'),(1904,1,'2019-02-05 04:50:06'),(1905,1,'2019-02-05 04:55:06'),(1906,1,'2019-02-05 05:00:05'),(1907,1,'2019-02-05 05:05:06'),(1908,1,'2019-02-05 05:10:07'),(1909,1,'2019-02-05 05:15:07'),(1910,1,'2019-02-05 05:20:06'),(1911,1,'2019-02-05 05:25:07'),(1912,1,'2019-02-05 05:30:06'),(1913,1,'2019-02-05 05:35:06'),(1914,1,'2019-02-05 05:40:07'),(1915,1,'2019-02-05 05:45:06'),(1916,1,'2019-02-05 05:50:07'),(1917,1,'2019-02-05 05:55:07'),(1918,1,'2019-02-05 06:00:05'),(1919,1,'2019-02-05 06:05:06'),(1920,1,'2019-02-05 06:10:06'),(1921,1,'2019-02-05 06:15:07'),(1922,1,'2019-02-05 06:20:07'),(1923,1,'2019-02-05 06:25:05'),(1924,1,'2019-02-05 06:30:06'),(1925,1,'2019-02-05 06:35:07'),(1926,1,'2019-02-05 06:40:07'),(1927,1,'2019-02-05 06:45:06'),(1928,1,'2019-02-05 06:50:06'),(1929,1,'2019-02-05 06:55:07'),(1930,1,'2019-02-05 07:00:05'),(1931,1,'2019-02-05 07:05:07'),(1932,1,'2019-02-05 07:10:06'),(1933,1,'2019-02-05 07:15:07'),(1934,1,'2019-02-05 07:20:07'),(1935,1,'2019-02-05 07:25:06'),(1936,1,'2019-02-05 07:30:06'),(1937,1,'2019-02-05 07:35:07'),(1938,1,'2019-02-05 07:40:06'),(1939,1,'2019-02-05 07:45:07'),(1940,1,'2019-02-05 07:50:06'),(1941,1,'2019-02-05 07:55:06'),(1942,1,'2019-02-05 08:00:06'),(1943,1,'2019-02-05 08:05:07'),(1944,1,'2019-02-05 08:10:06'),(1945,1,'2019-02-05 08:15:06'),(1946,1,'2019-02-05 08:20:07'),(1947,1,'2019-02-05 08:25:07'),(1948,1,'2019-02-05 08:30:05'),(1949,1,'2019-02-05 08:35:06'),(1950,1,'2019-02-05 08:40:06'),(1951,1,'2019-02-05 08:45:07'),(1952,1,'2019-02-05 08:50:06'),(1953,1,'2019-02-05 08:55:07'),(1954,1,'2019-02-05 09:00:05'),(1955,1,'2019-02-05 09:05:07'),(1956,1,'2019-02-05 09:10:07'),(1957,1,'2019-02-05 09:15:06'),(1958,1,'2019-02-05 09:20:06'),(1959,1,'2019-02-05 09:25:06'),(1960,1,'2019-02-05 09:30:05'),(1961,1,'2019-02-05 09:35:07'),(1962,1,'2019-02-05 09:40:06'),(1963,1,'2019-02-05 09:45:07'),(1964,1,'2019-02-05 09:50:06'),(1965,1,'2019-02-05 09:55:07'),(1966,1,'2019-02-05 10:00:05'),(1967,1,'2019-02-05 10:05:06'),(1968,1,'2019-02-05 10:10:07'),(1969,1,'2019-02-05 10:15:06'),(1970,1,'2019-02-05 10:20:06'),(1971,1,'2019-02-05 10:25:07'),(1972,1,'2019-02-05 10:30:05'),(1973,1,'2019-02-05 10:35:06'),(1974,1,'2019-02-05 10:40:06'),(1975,1,'2019-02-05 10:45:07'),(1976,1,'2019-02-05 10:50:06'),(1977,1,'2019-02-05 10:55:07'),(1978,1,'2019-02-05 11:00:05'),(1979,1,'2019-02-05 11:05:07'),(1980,1,'2019-02-05 11:10:06'),(1981,1,'2019-02-05 11:15:07'),(1982,1,'2019-02-05 11:20:06'),(1983,1,'2019-02-05 11:25:07'),(1984,1,'2019-02-05 11:30:05'),(1985,1,'2019-02-05 11:35:07'),(1986,1,'2019-02-05 11:40:06'),(1987,1,'2019-02-05 11:45:07'),(1988,1,'2019-02-05 11:50:06'),(1989,1,'2019-02-05 11:55:07'),(1990,1,'2019-02-05 12:00:06'),(1991,1,'2019-02-05 12:05:06'),(1992,1,'2019-02-05 12:10:07'),(1993,1,'2019-02-05 12:15:06'),(1994,1,'2019-02-05 12:20:07'),(1995,1,'2019-02-05 12:25:07'),(1996,1,'2019-02-05 12:30:05'),(1997,1,'2019-02-05 12:35:07'),(1998,1,'2019-02-05 12:40:06'),(1999,1,'2019-02-05 12:45:06'),(2000,1,'2019-02-05 12:50:07'),(2001,1,'2019-02-05 12:55:06'),(2002,1,'2019-02-05 13:00:06'),(2003,1,'2019-02-05 13:05:06'),(2004,1,'2019-02-05 13:10:07'),(2005,1,'2019-02-05 13:15:07'),(2006,1,'2019-02-05 13:20:06'),(2007,1,'2019-02-05 13:25:05'),(2008,1,'2019-02-05 13:30:06'),(2009,1,'2019-02-05 13:35:06'),(2010,1,'2019-02-05 13:40:06'),(2011,1,'2019-02-05 13:45:07'),(2012,1,'2019-02-05 13:50:06'),(2013,1,'2019-02-05 13:55:07'),(2014,1,'2019-02-05 14:00:05'),(2015,1,'2019-02-05 14:05:06'),(2016,1,'2019-02-05 14:10:06'),(2017,1,'2019-02-05 14:15:06'),(2018,1,'2019-02-05 14:20:07'),(2019,1,'2019-02-05 14:25:07'),(2020,1,'2019-02-05 14:30:05'),(2021,1,'2019-02-05 14:35:07'),(2022,1,'2019-02-05 14:40:06'),(2023,1,'2019-02-05 14:45:07'),(2024,1,'2019-02-05 14:50:06'),(2025,1,'2019-02-05 14:55:06'),(2026,1,'2019-02-05 15:00:06'),(2027,1,'2019-02-05 15:05:07'),(2028,1,'2019-02-05 15:10:06'),(2029,1,'2019-02-05 15:15:07'),(2030,1,'2019-02-05 15:20:07'),(2031,1,'2019-02-05 15:25:06'),(2032,1,'2019-02-05 15:30:06'),(2033,1,'2019-02-05 15:35:06'),(2034,1,'2019-02-05 15:40:06'),(2035,1,'2019-02-05 15:45:06'),(2036,1,'2019-02-05 15:50:07'),(2037,1,'2019-02-05 15:55:06'),(2038,1,'2019-02-05 16:00:06'),(2039,1,'2019-02-05 16:05:07'),(2040,1,'2019-02-05 16:10:07'),(2041,1,'2019-02-05 16:15:06'),(2042,1,'2019-02-05 16:20:06'),(2043,1,'2019-02-05 16:25:06'),(2044,1,'2019-02-05 16:30:06'),(2045,1,'2019-02-05 16:35:07'),(2046,1,'2019-02-05 16:40:06'),(2047,1,'2019-02-05 16:45:07'),(2048,1,'2019-02-05 16:50:06'),(2049,1,'2019-02-05 16:55:07'),(2050,1,'2019-02-05 17:00:05'),(2051,1,'2019-02-05 17:05:06'),(2052,1,'2019-02-05 17:10:07'),(2053,1,'2019-02-05 17:15:06'),(2054,1,'2019-02-05 17:20:06'),(2055,1,'2019-02-05 17:25:07'),(2056,1,'2019-02-05 17:30:05'),(2057,1,'2019-02-05 17:35:06'),(2058,1,'2019-02-05 17:40:06'),(2059,1,'2019-02-05 17:45:07'),(2060,1,'2019-02-05 17:50:07'),(2061,1,'2019-02-05 17:55:06'),(2062,1,'2019-02-05 18:00:05'),(2063,1,'2019-02-05 18:05:07'),(2064,1,'2019-02-05 18:10:07'),(2065,1,'2019-02-05 18:15:06'),(2066,1,'2019-02-05 18:20:07'),(2067,1,'2019-02-05 18:25:06'),(2068,1,'2019-02-05 18:30:06'),(2069,1,'2019-02-05 18:35:06'),(2070,1,'2019-02-05 18:40:06'),(2071,1,'2019-02-05 18:45:07'),(2072,1,'2019-02-05 18:50:07'),(2073,1,'2019-02-05 18:55:06'),(2074,1,'2019-02-05 19:00:06'),(2075,1,'2019-02-05 19:05:06'),(2076,1,'2019-02-05 19:10:07'),(2077,1,'2019-02-05 19:15:06'),(2078,1,'2019-02-05 19:20:07'),(2079,1,'2019-02-05 19:25:06'),(2080,1,'2019-02-05 19:30:06'),(2081,1,'2019-02-05 19:35:06'),(2082,1,'2019-02-05 19:40:07'),(2083,1,'2019-02-05 19:45:07'),(2084,1,'2019-02-05 19:50:07'),(2085,1,'2019-02-05 19:55:06'),(2086,1,'2019-02-05 20:00:05'),(2087,1,'2019-02-05 20:05:07'),(2088,1,'2019-02-05 20:10:06'),(2089,1,'2019-02-05 20:15:07'),(2090,1,'2019-02-05 20:20:06'),(2091,1,'2019-02-05 20:25:06'),(2092,1,'2019-02-05 20:30:06'),(2093,1,'2019-02-05 20:35:06'),(2094,1,'2019-02-05 20:40:07'),(2095,1,'2019-02-05 20:45:06'),(2096,1,'2019-02-05 20:50:07'),(2097,1,'2019-02-05 20:55:06'),(2098,1,'2019-02-05 21:00:05'),(2099,1,'2019-02-05 21:05:06'),(2100,1,'2019-02-05 21:10:07'),(2101,1,'2019-02-05 21:15:07'),(2102,1,'2019-02-05 21:20:06'),(2103,1,'2019-02-05 21:25:06'),(2104,1,'2019-02-05 21:30:06'),(2105,1,'2019-02-05 21:35:06'),(2106,1,'2019-02-05 21:40:06'),(2107,1,'2019-02-05 21:45:07'),(2108,1,'2019-02-05 21:50:07'),(2109,1,'2019-02-05 21:55:07'),(2110,1,'2019-02-05 22:00:05'),(2111,1,'2019-02-05 22:05:06'),(2112,1,'2019-02-05 22:10:06'),(2113,1,'2019-02-05 22:15:07'),(2114,1,'2019-02-05 22:20:07'),(2115,1,'2019-02-05 22:25:06'),(2116,1,'2019-02-05 22:30:06'),(2117,1,'2019-02-05 22:35:07'),(2118,1,'2019-02-05 22:40:07'),(2119,1,'2019-02-05 22:45:06'),(2120,1,'2019-02-05 22:50:07'),(2121,1,'2019-02-05 22:55:07'),(2122,1,'2019-02-05 23:00:05'),(2123,1,'2019-02-05 23:05:07'),(2124,1,'2019-02-05 23:10:07'),(2125,1,'2019-02-05 23:15:06'),(2126,1,'2019-02-05 23:20:06'),(2127,1,'2019-02-05 23:25:06'),(2128,1,'2019-02-05 23:30:05'),(2129,1,'2019-02-05 23:35:07'),(2130,1,'2019-02-05 23:40:06'),(2131,1,'2019-02-05 23:45:07'),(2132,1,'2019-02-05 23:50:06'),(2133,1,'2019-02-05 23:55:06'),(2134,1,'2019-02-06 00:00:05'),(2135,1,'2019-02-06 00:05:06'),(2136,1,'2019-02-06 00:10:07'),(2137,1,'2019-02-06 00:15:07'),(2138,1,'2019-02-06 00:20:06'),(2139,1,'2019-02-06 00:25:06'),(2140,1,'2019-02-06 00:30:05'),(2141,1,'2019-02-06 00:35:07'),(2142,1,'2019-02-06 00:40:06'),(2143,1,'2019-02-06 00:45:07'),(2144,1,'2019-02-06 00:50:06'),(2145,1,'2019-02-06 00:55:06'),(2146,1,'2019-02-06 01:00:05'),(2147,1,'2019-02-06 01:05:06'),(2148,1,'2019-02-06 01:10:06'),(2149,1,'2019-02-06 01:15:07'),(2150,1,'2019-02-06 01:20:07'),(2151,1,'2019-02-06 01:25:06'),(2152,1,'2019-02-06 01:30:06'),(2153,1,'2019-02-06 01:35:06'),(2154,1,'2019-02-06 01:40:07'),(2155,1,'2019-02-06 01:45:06'),(2156,1,'2019-02-06 01:50:07'),(2157,1,'2019-02-06 01:55:07'),(2158,1,'2019-02-06 02:00:05'),(2159,1,'2019-02-06 02:05:07'),(2160,1,'2019-02-06 02:10:06'),(2161,1,'2019-02-06 02:15:07'),(2162,1,'2019-02-06 02:20:07'),(2163,1,'2019-02-06 02:25:07'),(2164,1,'2019-02-06 02:30:05'),(2165,1,'2019-02-06 02:35:06'),(2166,1,'2019-02-06 02:40:06'),(2167,1,'2019-02-06 02:45:07'),(2168,1,'2019-02-06 02:50:07'),(2169,1,'2019-02-06 02:55:06'),(2170,1,'2019-02-06 03:00:05'),(2171,1,'2019-02-06 03:05:06'),(2172,1,'2019-02-06 03:10:07'),(2173,1,'2019-02-06 03:15:07'),(2174,1,'2019-02-06 03:20:07'),(2175,1,'2019-02-06 03:25:06'),(2176,1,'2019-02-06 03:30:06'),(2177,1,'2019-02-06 03:35:06'),(2178,1,'2019-02-06 03:40:07'),(2179,1,'2019-02-06 03:45:07'),(2180,1,'2019-02-06 03:50:06'),(2181,1,'2019-02-06 03:55:06'),(2182,1,'2019-02-06 04:00:06'),(2183,1,'2019-02-06 04:05:07'),(2184,1,'2019-02-06 04:10:07'),(2185,1,'2019-02-06 04:15:06'),(2186,1,'2019-02-06 04:20:07'),(2187,1,'2019-02-06 04:25:07'),(2188,1,'2019-02-06 04:30:05'),(2189,1,'2019-02-06 04:35:06'),(2190,1,'2019-02-06 04:40:07'),(2191,1,'2019-02-06 04:45:06'),(2192,1,'2019-02-06 04:50:07'),(2193,1,'2019-02-06 04:55:07'),(2194,1,'2019-02-06 05:00:05'),(2195,1,'2019-02-06 05:05:07'),(2196,1,'2019-02-06 05:10:07'),(2197,1,'2019-02-06 05:15:07'),(2198,1,'2019-02-06 05:20:06'),(2199,1,'2019-02-06 05:25:07'),(2200,1,'2019-02-06 05:30:05'),(2201,1,'2019-02-06 05:35:07'),(2202,1,'2019-02-06 05:40:07'),(2203,1,'2019-02-06 05:45:06'),(2204,1,'2019-02-06 05:50:06'),(2205,1,'2019-02-06 05:55:06'),(2206,1,'2019-02-06 06:00:06'),(2207,1,'2019-02-06 06:05:06'),(2208,1,'2019-02-06 06:10:07'),(2209,1,'2019-02-06 06:15:07'),(2210,1,'2019-02-06 06:20:07'),(2211,1,'2019-02-06 06:25:05'),(2212,1,'2019-02-06 06:30:06'),(2213,1,'2019-02-06 06:35:06'),(2214,1,'2019-02-06 06:40:07'),(2215,1,'2019-02-06 06:45:06'),(2216,1,'2019-02-06 06:50:07'),(2217,1,'2019-02-06 06:55:06'),(2218,1,'2019-02-06 07:00:05'),(2219,1,'2019-02-06 07:05:06'),(2220,1,'2019-02-06 07:10:07'),(2221,1,'2019-02-06 07:15:05'),(2222,1,'2019-02-06 07:20:06'),(2223,1,'2019-02-06 07:25:07'),(2224,1,'2019-02-06 07:30:05'),(2225,1,'2019-02-06 07:35:06'),(2226,1,'2019-02-06 07:40:07'),(2227,1,'2019-02-06 07:45:06'),(2228,1,'2019-02-06 07:50:07'),(2229,1,'2019-02-06 07:55:07'),(2230,1,'2019-02-06 08:00:05'),(2231,1,'2019-02-06 08:05:06'),(2232,1,'2019-02-06 08:10:07'),(2233,1,'2019-02-06 08:15:07'),(2234,1,'2019-02-06 08:20:06'),(2235,1,'2019-02-06 08:25:06'),(2236,1,'2019-02-06 08:30:06'),(2237,1,'2019-02-06 08:35:06'),(2238,0,'2019-02-13 21:00:06'),(2239,1,'2019-02-13 21:00:40'),(2240,1,'2019-02-13 21:05:07'),(2241,1,'2019-02-13 21:10:06'),(2242,1,'2019-02-13 21:15:07'),(2243,1,'2019-02-13 21:20:06'),(2244,1,'2019-02-13 21:25:07'),(2245,1,'2019-02-13 21:30:05'),(2246,1,'2019-02-13 21:35:07'),(2247,1,'2019-02-13 21:40:06'),(2248,1,'2019-02-13 21:45:07'),(2249,1,'2019-02-13 21:50:07'),(2250,1,'2019-02-13 21:55:07'),(2251,1,'2019-02-13 22:00:05'),(2252,1,'2019-02-13 22:05:06'),(2253,1,'2019-02-13 22:10:07'),(2254,1,'2019-02-13 22:15:07'),(2255,1,'2019-02-13 22:20:07'),(2256,1,'2019-02-13 22:25:07'),(2257,1,'2019-02-13 22:30:05'),(2258,1,'2019-02-13 22:35:07'),(2259,1,'2019-02-13 22:40:07'),(2260,1,'2019-02-13 22:45:06'),(2261,1,'2019-02-13 22:50:07'),(2262,1,'2019-02-13 22:55:07'),(2263,1,'2019-02-13 23:00:05'),(2264,1,'2019-02-13 23:05:07'),(2265,1,'2019-02-13 23:10:07'),(2266,1,'2019-02-13 23:15:07'),(2267,1,'2019-02-13 23:20:07'),(2268,1,'2019-02-13 23:25:06'),(2269,1,'2019-02-13 23:30:06'),(2270,1,'2019-02-13 23:35:06'),(2271,1,'2019-02-13 23:40:06'),(2272,1,'2019-02-13 23:45:06'),(2273,1,'2019-02-13 23:50:06'),(2274,1,'2019-02-13 23:55:07'),(2275,1,'2019-02-14 00:00:05'),(2276,1,'2019-02-14 00:05:07'),(2277,1,'2019-02-14 00:10:06'),(2278,1,'2019-02-14 00:15:07'),(2279,1,'2019-02-14 00:20:07'),(2280,1,'2019-02-14 00:25:06'),(2281,1,'2019-02-14 00:30:06'),(2282,1,'2019-02-14 00:35:06'),(2283,1,'2019-02-14 00:40:07'),(2284,1,'2019-02-14 00:45:06'),(2285,1,'2019-02-14 00:50:06'),(2286,1,'2019-02-14 00:55:07'),(2287,1,'2019-02-14 01:00:05'),(2288,1,'2019-02-14 01:05:06'),(2289,1,'2019-02-14 01:10:07'),(2290,1,'2019-02-14 01:15:06'),(2291,1,'2019-02-14 01:20:06'),(2292,1,'2019-02-14 01:25:07'),(2293,1,'2019-02-14 01:30:06'),(2294,1,'2019-02-14 01:35:07'),(2295,1,'2019-02-14 01:40:07'),(2296,1,'2019-02-14 01:45:07'),(2297,1,'2019-02-14 01:50:06'),(2298,1,'2019-02-14 01:55:07'),(2299,1,'2019-02-14 02:00:06'),(2300,1,'2019-02-14 02:05:07'),(2301,1,'2019-02-14 02:10:07'),(2302,1,'2019-02-14 02:15:06'),(2303,1,'2019-02-14 02:20:06'),(2304,1,'2019-02-14 02:25:07'),(2305,1,'2019-02-14 02:30:06'),(2306,1,'2019-02-14 02:35:07'),(2307,1,'2019-02-14 02:40:06'),(2308,1,'2019-02-14 02:45:06'),(2309,1,'2019-02-14 02:50:07'),(2310,1,'2019-02-14 02:55:07'),(2311,1,'2019-02-14 03:00:05'),(2312,1,'2019-02-14 03:05:06'),(2313,1,'2019-02-14 03:10:07'),(2314,1,'2019-02-14 03:15:07'),(2315,1,'2019-02-14 03:20:07'),(2316,1,'2019-02-14 03:25:06'),(2317,1,'2019-02-14 03:30:05'),(2318,1,'2019-02-14 03:35:07'),(2319,1,'2019-02-14 03:40:07'),(2320,1,'2019-02-14 03:45:06'),(2321,1,'2019-02-14 03:50:06'),(2322,1,'2019-02-14 03:55:07'),(2323,1,'2019-02-14 04:00:05'),(2324,1,'2019-02-14 04:05:06'),(2325,1,'2019-02-14 04:10:06'),(2326,1,'2019-02-14 04:15:07'),(2327,1,'2019-02-14 04:20:07'),(2328,1,'2019-02-14 04:25:07'),(2329,1,'2019-02-14 04:30:05'),(2330,1,'2019-02-14 04:35:07'),(2331,1,'2019-02-14 04:40:06'),(2332,1,'2019-02-14 04:45:07'),(2333,1,'2019-02-14 04:50:07'),(2334,1,'2019-02-14 04:55:06'),(2335,1,'2019-02-14 05:00:06'),(2336,1,'2019-02-14 05:05:07'),(2337,1,'2019-02-14 05:10:07'),(2338,1,'2019-02-14 05:15:06'),(2339,1,'2019-02-14 05:20:07'),(2340,1,'2019-02-14 05:25:06'),(2341,1,'2019-02-14 05:30:06'),(2342,1,'2019-02-14 05:35:07'),(2343,1,'2019-02-14 05:40:07'),(2344,1,'2019-02-14 05:45:07'),(2345,1,'2019-02-14 05:50:07'),(2346,1,'2019-02-14 05:55:07'),(2347,1,'2019-02-14 06:00:05'),(2348,1,'2019-02-14 06:05:07'),(2349,1,'2019-02-14 06:10:06'),(2350,1,'2019-02-14 06:15:06'),(2351,1,'2019-02-14 06:20:06'),(2352,1,'2019-02-14 06:25:06'),(2353,1,'2019-02-14 06:30:05'),(2354,1,'2019-02-14 06:35:07'),(2355,1,'2019-02-14 06:40:06'),(2356,1,'2019-02-14 06:45:06'),(2357,1,'2019-02-14 06:50:06'),(2358,1,'2019-02-14 06:55:07'),(2359,1,'2019-02-14 07:00:06'),(2360,1,'2019-02-14 07:05:07'),(2361,1,'2019-02-14 07:10:07'),(2362,1,'2019-02-14 07:15:06'),(2363,1,'2019-02-14 07:20:07'),(2364,1,'2019-02-14 07:25:06'),(2365,1,'2019-02-14 07:30:05'),(2366,1,'2019-02-14 07:35:07'),(2367,1,'2019-02-14 07:40:06'),(2368,1,'2019-02-14 07:45:07'),(2369,1,'2019-02-14 07:50:07'),(2370,1,'2019-02-14 07:55:07'),(2371,1,'2019-02-14 08:00:05'),(2372,1,'2019-02-14 08:05:07'),(2373,1,'2019-02-14 08:10:06'),(2374,1,'2019-02-14 08:15:06'),(2375,1,'2019-02-14 08:20:07'),(2376,1,'2019-02-14 08:25:06'),(2377,1,'2019-02-14 08:30:06'),(2378,1,'2019-02-14 08:35:06'),(2379,1,'2019-02-14 08:40:07'),(2380,1,'2019-02-14 08:45:06'),(2381,1,'2019-02-14 08:50:06'),(2382,1,'2019-02-14 08:55:07'),(2383,1,'2019-02-14 09:00:05'),(2384,1,'2019-02-14 09:05:07'),(2385,1,'2019-02-14 09:10:06'),(2386,1,'2019-02-14 09:15:07'),(2387,1,'2019-02-14 09:20:06'),(2388,1,'2019-02-14 09:25:07'),(2389,1,'2019-02-14 09:30:05'),(2390,1,'2019-02-14 09:35:07'),(2391,1,'2019-02-14 09:40:06'),(2392,1,'2019-02-14 09:45:07'),(2393,1,'2019-02-14 09:50:06'),(2394,1,'2019-02-14 09:55:07'),(2395,1,'2019-02-14 10:00:05'),(2396,1,'2019-02-14 10:05:07'),(2397,1,'2019-02-14 10:10:07'),(2398,1,'2019-02-14 10:15:06'),(2399,1,'2019-02-14 10:20:07'),(2400,1,'2019-02-14 10:25:07'),(2401,1,'2019-02-14 10:30:05'),(2402,1,'2019-02-14 10:35:07'),(2403,1,'2019-02-14 10:40:06'),(2404,1,'2019-02-14 10:45:07'),(2405,1,'2019-02-14 10:50:07'),(2406,1,'2019-02-14 10:55:07'),(2407,1,'2019-02-14 11:00:05'),(2408,1,'2019-02-14 11:05:06'),(2409,1,'2019-02-14 11:10:06'),(2410,1,'2019-02-14 11:15:07'),(2411,1,'2019-02-14 11:20:07'),(2412,1,'2019-02-14 11:25:06'),(2413,1,'2019-02-14 11:30:05'),(2414,1,'2019-02-14 11:35:06'),(2415,1,'2019-02-14 11:40:06'),(2416,1,'2019-02-14 11:45:07'),(2417,1,'2019-02-14 11:50:07'),(2418,1,'2019-02-14 11:55:06'),(2419,1,'2019-02-14 12:00:05'),(2420,1,'2019-02-14 12:05:06'),(2421,1,'2019-02-14 12:10:07'),(2422,1,'2019-02-14 12:15:06'),(2423,1,'2019-02-14 12:20:06'),(2424,1,'2019-02-14 12:25:07'),(2425,1,'2019-02-14 12:30:05'),(2426,1,'2019-02-14 12:35:07'),(2427,1,'2019-02-14 12:40:07'),(2428,1,'2019-02-14 12:45:07'),(2429,1,'2019-02-14 12:50:06'),(2430,1,'2019-02-14 12:55:07'),(2431,1,'2019-02-14 13:00:05'),(2432,1,'2019-02-14 13:05:07'),(2433,1,'2019-02-14 13:10:06'),(2434,1,'2019-02-14 13:15:07'),(2435,1,'2019-02-14 13:20:07'),(2436,1,'2019-02-14 13:25:06'),(2437,1,'2019-02-14 13:30:06'),(2438,1,'2019-02-14 13:35:06'),(2439,1,'2019-02-14 13:40:07'),(2440,1,'2019-02-14 13:45:06'),(2441,1,'2019-02-14 13:50:07'),(2442,1,'2019-02-14 13:55:06'),(2443,1,'2019-02-14 14:00:06'),(2444,1,'2019-02-14 14:05:06'),(2445,1,'2019-02-14 14:10:07'),(2446,1,'2019-02-14 14:15:06'),(2447,1,'2019-02-14 14:20:06'),(2448,1,'2019-02-14 14:25:06'),(2449,1,'2019-02-14 14:30:05'),(2450,1,'2019-02-14 14:35:07'),(2451,1,'2019-02-14 14:40:06'),(2452,1,'2019-02-14 14:45:07'),(2453,1,'2019-02-14 14:50:07'),(2454,1,'2019-02-14 14:55:07'),(2455,1,'2019-02-14 15:00:05'),(2456,1,'2019-02-14 15:05:06'),(2457,1,'2019-02-14 15:10:07'),(2458,1,'2019-02-14 15:15:06'),(2459,1,'2019-02-14 15:20:07'),(2460,1,'2019-02-14 15:25:06'),(2461,1,'2019-02-14 15:30:06'),(2462,1,'2019-02-14 15:35:07'),(2463,1,'2019-02-14 15:40:06'),(2464,1,'2019-02-14 15:45:07'),(2465,1,'2019-02-14 15:50:06'),(2466,1,'2019-02-14 15:55:07'),(2467,1,'2019-02-14 16:00:06'),(2468,1,'2019-02-14 16:05:06'),(2469,1,'2019-02-14 16:10:07'),(2470,1,'2019-02-14 16:15:07'),(2471,1,'2019-02-14 16:20:07'),(2472,1,'2019-02-14 16:25:06'),(2473,1,'2019-02-14 16:30:05'),(2474,1,'2019-02-14 16:35:06'),(2475,1,'2019-02-14 16:40:07'),(2476,1,'2019-02-14 16:45:07'),(2477,1,'2019-02-14 16:50:06'),(2478,1,'2019-02-14 16:55:07'),(2479,1,'2019-02-14 17:00:05'),(2480,1,'2019-02-14 17:05:07'),(2481,1,'2019-02-14 17:10:06'),(2482,1,'2019-02-14 17:15:07'),(2483,1,'2019-02-14 17:20:07'),(2484,1,'2019-02-14 17:25:06'),(2485,1,'2019-02-14 17:30:05'),(2486,1,'2019-02-14 17:35:06'),(2487,1,'2019-02-14 17:40:07'),(2488,1,'2019-02-14 17:45:07'),(2489,1,'2019-02-14 17:50:06'),(2490,1,'2019-02-14 17:55:07'),(2491,1,'2019-02-14 18:00:06'),(2492,1,'2019-02-14 18:05:07'),(2493,1,'2019-02-14 18:10:07'),(2494,1,'2019-02-14 18:15:06'),(2495,1,'2019-02-14 18:20:07'),(2496,1,'2019-02-14 18:25:06'),(2497,1,'2019-02-14 18:30:06'),(2498,1,'2019-02-14 18:35:06'),(2499,1,'2019-02-14 18:40:06'),(2500,1,'2019-02-14 18:45:07'),(2501,1,'2019-02-14 18:50:06'),(2502,1,'2019-02-14 18:55:07'),(2503,1,'2019-02-14 19:00:05'),(2504,1,'2019-02-14 19:05:06'),(2505,1,'2019-02-14 19:10:07'),(2506,1,'2019-02-14 19:15:07'),(2507,1,'2019-02-14 19:20:07'),(2508,1,'2019-02-14 19:25:06'),(2509,1,'2019-02-14 19:30:05'),(2510,1,'2019-02-14 19:35:07'),(2511,1,'2019-02-14 19:40:07'),(2512,1,'2019-02-14 19:45:07'),(2513,1,'2019-02-14 19:50:07'),(2514,1,'2019-02-14 19:55:06'),(2515,1,'2019-02-14 20:00:06'),(2516,1,'2019-02-14 20:05:07'),(2517,1,'2019-02-14 20:10:07'),(2518,1,'2019-02-14 20:15:06'),(2519,1,'2019-02-14 20:20:07'),(2520,1,'2019-02-14 20:25:07'),(2521,1,'2019-02-14 20:30:05'),(2522,1,'2019-02-14 20:35:07'),(2523,1,'2019-02-14 20:40:07'),(2524,1,'2019-02-14 20:45:06'),(2525,1,'2019-02-14 20:50:07'),(2526,1,'2019-02-14 20:55:07'),(2527,1,'2019-02-14 21:00:05'),(2528,1,'2019-02-14 21:05:06'),(2529,1,'2019-02-14 21:10:07'),(2530,1,'2019-02-14 21:15:06'),(2531,1,'2019-02-14 21:20:07'),(2532,1,'2019-02-14 21:25:07'),(2533,1,'2019-02-14 21:30:06'),(2534,1,'2019-02-14 21:35:07'),(2535,1,'2019-02-14 21:40:06'),(2536,1,'2019-02-14 21:45:07'),(2537,1,'2019-02-14 21:50:07'),(2538,1,'2019-02-14 21:55:07'),(2539,1,'2019-02-14 22:00:05'),(2540,1,'2019-02-14 22:05:06'),(2541,1,'2019-02-14 22:10:06'),(2542,1,'2019-02-14 22:15:06'),(2543,1,'2019-02-14 22:20:07'),(2544,1,'2019-02-14 22:25:06'),(2545,1,'2019-02-14 22:30:06'),(2546,1,'2019-02-14 22:35:07'),(2547,1,'2019-02-14 22:40:07'),(2548,1,'2019-02-14 22:45:06'),(2549,1,'2019-02-14 22:50:07'),(2550,1,'2019-02-14 22:55:07'),(2551,1,'2019-02-14 23:00:05'),(2552,1,'2019-02-14 23:05:07'),(2553,1,'2019-02-14 23:10:07'),(2554,1,'2019-02-14 23:15:06'),(2555,1,'2019-02-14 23:20:07'),(2556,1,'2019-02-14 23:25:07'),(2557,1,'2019-02-14 23:30:05'),(2558,1,'2019-02-14 23:35:06'),(2559,1,'2019-02-14 23:40:07'),(2560,1,'2019-02-14 23:45:06'),(2561,1,'2019-02-14 23:50:07'),(2562,1,'2019-02-14 23:55:06'),(2563,1,'2019-02-15 00:00:05'),(2564,1,'2019-02-15 00:05:07'),(2565,1,'2019-02-15 00:10:07'),(2566,1,'2019-02-15 00:15:06'),(2567,1,'2019-02-15 00:20:07'),(2568,1,'2019-02-15 00:25:06'),(2569,1,'2019-02-15 00:30:05'),(2570,1,'2019-02-15 00:35:06'),(2571,1,'2019-02-15 00:40:06'),(2572,1,'2019-02-15 00:45:07'),(2573,1,'2019-02-15 00:50:07'),(2574,1,'2019-02-15 00:55:06'),(2575,1,'2019-02-15 01:00:06'),(2576,1,'2019-02-15 01:05:07'),(2577,1,'2019-02-15 01:10:07'),(2578,1,'2019-02-15 01:15:06'),(2579,1,'2019-02-15 01:20:06'),(2580,1,'2019-02-15 01:25:07'),(2581,1,'2019-02-15 01:30:06'),(2582,1,'2019-02-15 01:35:07'),(2583,1,'2019-02-15 01:40:06'),(2584,1,'2019-02-15 01:45:07'),(2585,1,'2019-02-15 01:50:06'),(2586,1,'2019-02-15 01:55:07'),(2587,1,'2019-02-15 02:00:05'),(2588,1,'2019-02-15 02:05:07'),(2589,1,'2019-02-15 02:10:06'),(2590,1,'2019-02-15 02:15:07'),(2591,1,'2019-02-15 02:20:07'),(2592,1,'2019-02-15 02:25:06'),(2593,1,'2019-02-15 02:30:06'),(2594,1,'2019-02-15 02:35:07'),(2595,1,'2019-02-15 02:40:07'),(2596,1,'2019-02-15 02:45:07'),(2597,1,'2019-02-15 02:50:06'),(2598,1,'2019-02-15 02:55:07'),(2599,1,'2019-02-15 03:00:05'),(2600,1,'2019-02-15 03:05:06'),(2601,1,'2019-02-15 03:10:07'),(2602,1,'2019-02-15 03:15:06'),(2603,1,'2019-02-15 03:20:06'),(2604,1,'2019-02-15 03:25:06'),(2605,1,'2019-02-15 03:30:06'),(2606,1,'2019-02-15 03:35:06'),(2607,1,'2019-02-15 03:40:07'),(2608,1,'2019-02-15 03:45:06'),(2609,1,'2019-02-15 03:50:06'),(2610,1,'2019-02-15 03:55:07'),(2611,1,'2019-02-15 04:00:05'),(2612,1,'2019-02-15 04:05:06'),(2613,1,'2019-02-15 04:10:06'),(2614,1,'2019-02-15 04:15:06'),(2615,1,'2019-02-15 04:20:06'),(2616,1,'2019-02-15 04:25:07'),(2617,1,'2019-02-15 04:30:05'),(2618,1,'2019-02-15 04:35:07'),(2619,1,'2019-02-15 04:40:06'),(2620,1,'2019-02-15 04:45:07'),(2621,1,'2019-02-15 04:50:07'),(2622,1,'2019-02-15 04:55:07'),(2623,1,'2019-02-15 05:00:05'),(2624,1,'2019-02-15 05:05:06'),(2625,1,'2019-02-15 05:10:07'),(2626,1,'2019-02-15 05:15:07'),(2627,1,'2019-02-15 05:20:06'),(2628,1,'2019-02-15 05:25:07'),(2629,1,'2019-02-15 05:30:06'),(2630,1,'2019-02-15 05:35:07'),(2631,1,'2019-02-15 05:40:06'),(2632,1,'2019-02-15 05:45:07'),(2633,1,'2019-02-15 05:50:06'),(2634,1,'2019-02-15 05:55:07'),(2635,1,'2019-02-15 06:00:05'),(2636,1,'2019-02-15 06:05:07'),(2637,1,'2019-02-15 06:10:06'),(2638,1,'2019-02-15 06:15:06'),(2639,1,'2019-02-15 06:20:07'),(2640,1,'2019-02-15 06:25:05'),(2641,1,'2019-02-15 06:30:06'),(2642,1,'2019-02-15 06:35:06'),(2643,1,'2019-02-15 06:40:07'),(2644,1,'2019-02-15 06:45:07'),(2645,1,'2019-02-15 06:50:07'),(2646,1,'2019-02-15 06:55:06'),(2647,1,'2019-02-15 07:00:05'),(2648,1,'2019-02-15 07:05:06'),(2649,1,'2019-02-15 07:10:06'),(2650,1,'2019-02-15 07:15:07'),(2651,1,'2019-02-15 07:20:07'),(2652,1,'2019-02-15 07:25:07'),(2653,1,'2019-02-15 07:30:05'),(2654,1,'2019-02-15 07:35:07'),(2655,1,'2019-02-15 07:40:07'),(2656,1,'2019-02-15 07:45:07'),(2657,1,'2019-02-15 07:50:07'),(2658,1,'2019-02-15 07:55:06'),(2659,1,'2019-02-15 08:00:06'),(2660,1,'2019-02-15 08:05:06'),(2661,1,'2019-02-15 08:10:07'),(2662,1,'2019-02-15 08:15:07'),(2663,1,'2019-02-15 08:20:07'),(2664,1,'2019-02-15 08:25:06'),(2665,1,'2019-02-15 08:30:06'),(2666,1,'2019-02-15 08:35:06'),(2667,1,'2019-02-15 08:40:06'),(2668,1,'2019-02-15 08:45:06'),(2669,1,'2019-02-15 08:50:07'),(2670,1,'2019-02-15 08:55:07'),(2671,1,'2019-02-15 09:00:05'),(2672,1,'2019-02-15 09:05:07'),(2673,1,'2019-02-15 09:10:07'),(2674,1,'2019-02-15 09:15:07'),(2675,1,'2019-02-15 09:20:06'),(2676,1,'2019-02-15 09:25:06'),(2677,1,'2019-02-15 09:30:06'),(2678,1,'2019-02-15 09:35:07'),(2679,1,'2019-02-15 09:40:07'),(2680,1,'2019-02-15 09:45:06'),(2681,1,'2019-02-15 09:50:06'),(2682,1,'2019-02-15 09:55:07'),(2683,1,'2019-02-15 10:00:05'),(2684,1,'2019-02-15 10:05:06'),(2685,1,'2019-02-15 10:10:06'),(2686,1,'2019-02-15 10:15:07'),(2687,1,'2019-02-15 10:20:07'),(2688,1,'2019-02-15 10:25:07'),(2689,1,'2019-02-15 10:30:05'),(2690,1,'2019-02-15 10:35:06'),(2691,1,'2019-02-15 10:40:07'),(2692,1,'2019-02-15 10:45:06'),(2693,1,'2019-02-15 10:50:07'),(2694,1,'2019-02-15 10:55:07'),(2695,1,'2019-02-15 11:00:05'),(2696,1,'2019-02-15 11:05:05'),(2697,1,'2019-02-15 11:10:07'),(2698,1,'2019-02-15 11:15:07'),(2699,1,'2019-02-15 11:20:07'),(2700,1,'2019-02-15 11:25:06'),(2701,1,'2019-02-15 11:30:05'),(2702,1,'2019-02-15 11:35:07'),(2703,1,'2019-02-15 11:40:07'),(2704,1,'2019-02-15 11:45:06'),(2705,1,'2019-02-15 11:50:07'),(2706,1,'2019-02-15 11:55:07'),(2707,1,'2019-02-15 12:00:05'),(2708,1,'2019-02-15 12:05:07'),(2709,1,'2019-02-15 12:10:06'),(2710,1,'2019-02-15 12:15:07'),(2711,1,'2019-02-15 12:20:07'),(2712,1,'2019-02-15 12:25:06'),(2713,1,'2019-02-15 12:30:06'),(2714,1,'2019-02-15 12:35:06'),(2715,1,'2019-02-15 12:40:06'),(2716,1,'2019-02-15 12:45:07'),(2717,1,'2019-02-15 12:50:07'),(2718,1,'2019-02-15 12:55:07'),(2719,1,'2019-02-15 13:00:05'),(2720,1,'2019-02-15 13:05:07'),(2721,1,'2019-02-15 13:10:07'),(2722,1,'2019-02-15 13:15:07'),(2723,1,'2019-02-15 13:20:06'),(2724,1,'2019-02-15 13:25:07'),(2725,1,'2019-02-15 13:30:06'),(2726,1,'2019-02-15 13:35:07'),(2727,1,'2019-02-15 13:40:07'),(2728,1,'2019-02-15 13:45:06'),(2729,1,'2019-02-15 13:50:07'),(2730,1,'2019-02-15 13:55:06'),(2731,1,'2019-02-15 14:00:06'),(2732,1,'2019-02-15 14:05:06'),(2733,1,'2019-02-15 14:10:06'),(2734,1,'2019-02-15 14:15:07'),(2735,1,'2019-02-15 14:20:07'),(2736,1,'2019-02-15 14:25:07'),(2737,1,'2019-02-15 14:30:05'),(2738,1,'2019-02-15 14:35:07'),(2739,1,'2019-02-15 14:40:06'),(2740,1,'2019-02-15 14:45:06'),(2741,1,'2019-02-15 14:50:07'),(2742,1,'2019-02-15 14:55:07'),(2743,1,'2019-02-15 15:00:05'),(2744,1,'2019-02-15 15:05:07'),(2745,1,'2019-02-15 15:10:07'),(2746,1,'2019-02-15 15:15:06'),(2747,1,'2019-02-15 15:20:06'),(2748,1,'2019-02-15 15:25:06'),(2749,1,'2019-02-15 15:30:05'),(2750,1,'2019-02-15 15:35:07'),(2751,1,'2019-02-15 15:40:07'),(2752,1,'2019-02-15 15:45:06'),(2753,1,'2019-02-15 15:50:07'),(2754,1,'2019-02-15 15:55:07'),(2755,1,'2019-02-15 16:00:05'),(2756,1,'2019-02-15 16:05:07'),(2757,1,'2019-02-15 16:10:07'),(2758,1,'2019-02-15 16:15:07'),(2759,1,'2019-02-15 16:20:06'),(2760,1,'2019-02-15 16:25:07'),(2761,1,'2019-02-15 16:30:05'),(2762,1,'2019-02-15 16:35:07'),(2763,1,'2019-02-15 16:40:06'),(2764,1,'2019-02-15 16:45:07'),(2765,1,'2019-02-15 16:50:07'),(2766,1,'2019-02-15 16:55:06'),(2767,1,'2019-02-15 17:00:05'),(2768,1,'2019-02-15 17:05:07'),(2769,1,'2019-02-15 17:10:07'),(2770,1,'2019-02-15 17:15:06'),(2771,1,'2019-02-15 17:20:07'),(2772,1,'2019-02-15 17:25:06'),(2773,1,'2019-02-15 17:30:05'),(2774,1,'2019-02-15 17:35:07'),(2775,1,'2019-02-15 17:40:07'),(2776,1,'2019-02-15 17:45:06'),(2777,1,'2019-02-15 17:50:06'),(2778,1,'2019-02-15 17:55:07'),(2779,1,'2019-02-15 18:00:05'),(2780,1,'2019-02-15 18:05:07'),(2781,1,'2019-02-15 18:10:07'),(2782,1,'2019-02-15 18:15:07'),(2783,1,'2019-02-15 18:20:06'),(2784,1,'2019-02-15 18:25:07'),(2785,1,'2019-02-15 18:30:06'),(2786,1,'2019-02-15 18:35:07'),(2787,1,'2019-02-15 18:40:06'),(2788,1,'2019-02-15 18:45:06'),(2789,1,'2019-02-15 18:50:07'),(2790,1,'2019-02-15 18:55:07'),(2791,1,'2019-02-15 19:00:05'),(2792,1,'2019-02-15 19:05:07'),(2793,1,'2019-02-15 19:10:07'),(2794,1,'2019-02-15 19:15:06'),(2795,1,'2019-02-15 19:20:07'),(2796,1,'2019-02-15 19:25:07'),(2797,1,'2019-02-15 19:30:05'),(2798,1,'2019-02-15 19:35:07'),(2799,1,'2019-02-15 19:40:06'),(2800,1,'2019-02-15 19:45:07'),(2801,1,'2019-02-15 19:50:07'),(2802,1,'2019-02-15 19:55:07'),(2803,1,'2019-02-15 20:00:05'),(2804,1,'2019-02-15 20:05:07'),(2805,1,'2019-02-15 20:10:06'),(2806,1,'2019-02-15 20:15:07'),(2807,1,'2019-02-15 20:20:07'),(2808,1,'2019-02-15 20:25:07'),(2809,1,'2019-02-15 20:30:05'),(2810,1,'2019-02-15 20:35:06'),(2811,1,'2019-02-15 20:40:07'),(2812,1,'2019-02-15 20:45:06'),(2813,1,'2019-02-15 20:50:06'),(2814,1,'2019-02-15 20:55:07'),(2815,1,'2019-02-15 21:00:06'),(2816,1,'2019-02-15 21:05:06'),(2817,1,'2019-02-15 21:10:07'),(2818,1,'2019-02-15 21:15:07'),(2819,1,'2019-02-15 21:20:06'),(2820,1,'2019-02-15 21:25:06'),(2821,1,'2019-02-15 21:30:05'),(2822,1,'2019-02-15 21:35:06'),(2823,1,'2019-02-15 21:40:07'),(2824,1,'2019-02-15 21:45:06'),(2825,1,'2019-02-15 21:50:07'),(2826,1,'2019-02-15 21:55:07'),(2827,1,'2019-02-15 22:00:05'),(2828,1,'2019-02-15 22:05:07'),(2829,1,'2019-02-15 22:10:07'),(2830,1,'2019-02-15 22:15:06'),(2831,1,'2019-02-15 22:20:06'),(2832,1,'2019-02-15 22:25:07'),(2833,1,'2019-02-15 22:30:06'),(2834,1,'2019-02-15 22:35:06'),(2835,1,'2019-02-15 22:40:07'),(2836,1,'2019-02-15 22:45:06'),(2837,1,'2019-02-15 22:50:07'),(2838,1,'2019-02-15 22:55:07'),(2839,1,'2019-02-15 23:00:05'),(2840,1,'2019-02-15 23:05:07'),(2841,1,'2019-02-15 23:10:07'),(2842,1,'2019-02-15 23:15:06'),(2843,1,'2019-02-15 23:20:06'),(2844,1,'2019-02-15 23:25:07'),(2845,1,'2019-02-15 23:30:06'),(2846,1,'2019-02-15 23:35:07'),(2847,1,'2019-02-15 23:40:06'),(2848,1,'2019-02-15 23:45:06'),(2849,1,'2019-02-15 23:50:06'),(2850,1,'2019-02-15 23:55:07'),(2851,1,'2019-02-16 00:00:05'),(2852,1,'2019-02-16 00:05:06'),(2853,1,'2019-02-16 00:10:07'),(2854,1,'2019-02-16 00:15:07'),(2855,1,'2019-02-16 00:20:06'),(2856,1,'2019-02-16 00:25:07'),(2857,1,'2019-02-16 00:30:05'),(2858,1,'2019-02-16 00:35:06'),(2859,1,'2019-02-16 00:40:06'),(2860,1,'2019-02-16 00:45:07'),(2861,1,'2019-02-16 00:50:06'),(2862,1,'2019-02-16 00:55:07'),(2863,1,'2019-02-16 01:00:05'),(2864,1,'2019-02-16 01:05:06'),(2865,1,'2019-02-16 01:10:07'),(2866,1,'2019-02-16 01:15:07'),(2867,1,'2019-02-16 01:20:07'),(2868,1,'2019-02-16 01:25:06'),(2869,1,'2019-02-16 01:30:05'),(2870,1,'2019-02-16 01:35:06'),(2871,1,'2019-02-16 01:40:06'),(2872,1,'2019-02-16 01:45:07'),(2873,1,'2019-02-16 01:50:07'),(2874,1,'2019-02-16 01:55:07'),(2875,1,'2019-02-16 02:00:05'),(2876,1,'2019-02-16 02:05:07'),(2877,1,'2019-02-16 02:10:06'),(2878,1,'2019-02-16 02:15:07'),(2879,1,'2019-02-16 02:20:06'),(2880,1,'2019-02-16 02:25:07'),(2881,1,'2019-02-16 02:30:05'),(2882,1,'2019-02-16 02:35:07'),(2883,1,'2019-02-16 02:40:07'),(2884,1,'2019-02-16 02:45:06'),(2885,1,'2019-02-16 02:50:07'),(2886,1,'2019-02-16 02:55:07'),(2887,1,'2019-02-16 03:00:05'),(2888,1,'2019-02-16 03:05:06'),(2889,1,'2019-02-16 03:10:07'),(2890,1,'2019-02-16 03:15:06'),(2891,1,'2019-02-16 03:20:07'),(2892,1,'2019-02-16 03:25:06'),(2893,1,'2019-02-16 03:30:05'),(2894,1,'2019-02-16 03:35:07'),(2895,1,'2019-02-16 03:40:06'),(2896,1,'2019-02-16 03:45:07'),(2897,1,'2019-02-16 03:50:07'),(2898,1,'2019-02-16 03:55:05'),(2899,1,'2019-02-16 04:00:05'),(2900,1,'2019-02-16 04:05:06'),(2901,1,'2019-02-16 04:10:06'),(2902,1,'2019-02-16 04:15:07'),(2903,1,'2019-02-16 04:20:07'),(2904,1,'2019-02-16 04:25:07'),(2905,1,'2019-02-16 04:30:05'),(2906,1,'2019-02-16 04:35:07'),(2907,1,'2019-02-16 04:40:06'),(2908,1,'2019-02-16 04:45:07'),(2909,1,'2019-02-16 04:50:07'),(2910,1,'2019-02-16 04:55:07'),(2911,1,'2019-02-16 05:00:05'),(2912,1,'2019-02-16 05:05:06'),(2913,1,'2019-02-16 05:10:07'),(2914,1,'2019-02-16 05:15:07'),(2915,1,'2019-02-16 05:20:06'),(2916,1,'2019-02-16 05:25:06'),(2917,1,'2019-02-16 05:30:05'),(2918,1,'2019-02-16 05:35:06'),(2919,1,'2019-02-16 05:40:07'),(2920,1,'2019-02-16 05:45:06'),(2921,1,'2019-02-16 05:50:07'),(2922,1,'2019-02-16 05:55:06'),(2923,1,'2019-02-16 06:00:06'),(2924,1,'2019-02-16 06:05:06'),(2925,1,'2019-02-16 06:10:07'),(2926,1,'2019-02-16 06:15:06'),(2927,1,'2019-02-16 06:20:07'),(2928,1,'2019-02-16 06:25:06'),(2929,1,'2019-02-16 06:30:05'),(2930,1,'2019-02-16 06:35:06'),(2931,1,'2019-02-16 06:40:07'),(2932,1,'2019-02-16 06:45:07'),(2933,1,'2019-02-16 06:50:07'),(2934,1,'2019-02-16 06:55:06'),(2935,1,'2019-02-16 07:00:05'),(2936,1,'2019-02-16 07:05:06'),(2937,1,'2019-02-16 07:10:06'),(2938,1,'2019-02-16 07:15:07'),(2939,1,'2019-02-16 07:20:07'),(2940,1,'2019-02-16 07:25:06'),(2941,1,'2019-02-16 07:30:06'),(2942,1,'2019-02-16 07:35:07'),(2943,1,'2019-02-16 07:40:06'),(2944,1,'2019-02-16 07:45:07'),(2945,1,'2019-02-16 07:50:06'),(2946,1,'2019-02-16 07:55:07'),(2947,1,'2019-02-16 08:00:06'),(2948,1,'2019-02-16 08:05:07'),(2949,1,'2019-02-16 08:10:06'),(2950,1,'2019-02-16 08:15:07'),(2951,1,'2019-02-16 08:20:07'),(2952,1,'2019-02-16 08:25:07'),(2953,1,'2019-02-16 08:30:05'),(2954,1,'2019-02-16 08:35:06'),(2955,1,'2019-02-16 08:40:06'),(2956,1,'2019-02-16 08:45:07'),(2957,1,'2019-02-16 08:50:06'),(2958,1,'2019-02-16 08:55:07'),(2959,1,'2019-02-16 09:00:05'),(2960,1,'2019-02-16 09:05:07'),(2961,1,'2019-02-16 09:10:06'),(2962,1,'2019-02-16 09:15:07'),(2963,1,'2019-02-16 09:20:07'),(2964,1,'2019-02-16 09:25:07'),(2965,1,'2019-02-16 09:30:05'),(2966,1,'2019-02-16 09:35:07'),(2967,1,'2019-02-16 09:40:07'),(2968,1,'2019-02-16 09:45:07'),(2969,1,'2019-02-16 09:50:07'),(2970,1,'2019-02-16 09:55:06'),(2971,1,'2019-02-16 10:00:05'),(2972,1,'2019-02-16 10:05:05'),(2973,1,'2019-02-16 10:10:06'),(2974,1,'2019-02-16 10:15:07'),(2975,1,'2019-02-16 10:20:06'),(2976,1,'2019-02-16 10:25:07'),(2977,1,'2019-02-16 10:30:05'),(2978,1,'2019-02-16 10:35:07'),(2979,1,'2019-02-16 10:40:06'),(2980,1,'2019-02-16 10:45:06'),(2981,1,'2019-02-16 10:50:06'),(2982,1,'2019-02-16 10:55:06'),(2983,1,'2019-02-16 11:00:06'),(2984,1,'2019-02-16 11:05:07'),(2985,1,'2019-02-16 11:10:07'),(2986,1,'2019-02-16 11:15:06'),(2987,1,'2019-02-16 11:20:07'),(2988,1,'2019-02-16 11:25:07'),(2989,1,'2019-02-16 11:30:06'),(2990,1,'2019-02-16 11:35:07'),(2991,1,'2019-02-16 11:40:06'),(2992,1,'2019-02-16 11:45:07'),(2993,1,'2019-02-16 11:50:06'),(2994,1,'2019-02-16 11:55:07'),(2995,1,'2019-02-16 12:00:06'),(2996,1,'2019-02-16 12:05:07'),(2997,1,'2019-02-16 12:10:06'),(2998,1,'2019-02-16 12:15:07'),(2999,1,'2019-02-16 12:20:07'),(3000,1,'2019-02-16 12:25:06'),(3001,1,'2019-02-16 12:30:06'),(3002,1,'2019-02-16 12:35:07'),(3003,1,'2019-02-16 12:40:07'),(3004,1,'2019-02-16 12:45:06'),(3005,1,'2019-02-16 12:50:07'),(3006,1,'2019-02-16 12:55:06'),(3007,1,'2019-02-16 13:00:06'),(3008,1,'2019-02-16 13:05:06'),(3009,1,'2019-02-16 13:10:07'),(3010,1,'2019-02-16 13:15:07'),(3011,1,'2019-02-16 13:20:07'),(3012,1,'2019-02-16 13:25:07'),(3013,1,'2019-02-16 13:30:05'),(3014,1,'2019-02-16 13:35:07'),(3015,1,'2019-02-16 13:40:07'),(3016,1,'2019-02-16 13:45:07'),(3017,1,'2019-02-16 13:50:07'),(3018,1,'2019-02-16 13:55:06'),(3019,1,'2019-02-16 14:00:05'),(3020,1,'2019-02-16 14:05:06'),(3021,1,'2019-02-16 14:10:07'),(3022,1,'2019-02-16 14:15:06'),(3023,1,'2019-02-16 14:20:07'),(3024,1,'2019-02-16 14:25:07'),(3025,1,'2019-02-16 14:30:05'),(3026,1,'2019-02-16 14:35:06'),(3027,1,'2019-02-16 14:40:06'),(3028,1,'2019-02-16 14:45:07'),(3029,1,'2019-02-16 14:50:07'),(3030,1,'2019-02-16 14:55:06'),(3031,1,'2019-02-16 15:00:05'),(3032,1,'2019-02-16 15:05:06'),(3033,1,'2019-02-16 15:10:06'),(3034,1,'2019-02-16 15:15:07'),(3035,1,'2019-02-16 15:20:07'),(3036,1,'2019-02-16 15:25:07'),(3037,1,'2019-02-16 15:30:05'),(3038,1,'2019-02-16 15:35:07'),(3039,1,'2019-02-16 15:40:06'),(3040,1,'2019-02-16 15:45:07'),(3041,1,'2019-02-16 15:50:07'),(3042,1,'2019-02-16 15:55:06'),(3043,1,'2019-02-16 16:00:06'),(3044,1,'2019-02-16 16:05:07'),(3045,1,'2019-02-16 16:10:06'),(3046,1,'2019-02-16 16:15:07'),(3047,1,'2019-02-16 16:20:07'),(3048,1,'2019-02-16 16:25:06'),(3049,1,'2019-02-16 16:30:06'),(3050,1,'2019-02-16 16:35:06'),(3051,1,'2019-02-16 16:40:06'),(3052,1,'2019-02-16 16:45:07'),(3053,1,'2019-02-16 16:50:06'),(3054,1,'2019-02-16 16:55:07'),(3055,1,'2019-02-16 17:00:06'),(3056,1,'2019-02-16 17:05:07'),(3057,1,'2019-02-16 17:10:06'),(3058,1,'2019-02-16 17:15:07'),(3059,1,'2019-02-16 17:20:07'),(3060,1,'2019-02-16 17:25:06'),(3061,1,'2019-02-16 17:30:05'),(3062,1,'2019-02-16 17:35:07'),(3063,1,'2019-02-16 17:40:06'),(3064,1,'2019-02-16 17:45:06'),(3065,1,'2019-02-16 17:50:07'),(3066,1,'2019-02-16 17:55:06'),(3067,1,'2019-02-16 18:00:06'),(3068,1,'2019-02-16 18:05:06'),(3069,1,'2019-02-16 18:10:06'),(3070,1,'2019-02-16 18:15:07'),(3071,1,'2019-02-16 18:20:06'),(3072,1,'2019-02-16 18:25:07'),(3073,1,'2019-02-16 18:30:05'),(3074,1,'2019-02-16 18:35:06'),(3075,1,'2019-02-16 18:40:07'),(3076,1,'2019-02-16 18:45:07'),(3077,1,'2019-02-16 18:50:06'),(3078,1,'2019-02-16 18:55:07'),(3079,1,'2019-02-16 19:00:06'),(3080,1,'2019-02-16 19:05:06'),(3081,1,'2019-02-16 19:10:07'),(3082,1,'2019-02-16 19:15:07'),(3083,1,'2019-02-16 19:20:07'),(3084,1,'2019-02-16 19:25:06'),(3085,1,'2019-02-16 19:30:05'),(3086,1,'2019-02-16 19:35:07'),(3087,1,'2019-02-16 19:40:06'),(3088,1,'2019-02-16 19:45:07'),(3089,1,'2019-02-16 19:50:07'),(3090,1,'2019-02-16 19:55:07'),(3091,1,'2019-02-16 20:00:05'),(3092,1,'2019-02-16 20:05:07'),(3093,1,'2019-02-16 20:10:07'),(3094,1,'2019-02-16 20:15:06'),(3095,1,'2019-02-16 20:20:07'),(3096,1,'2019-02-16 20:25:06'),(3097,1,'2019-02-16 20:30:06'),(3098,1,'2019-02-16 20:35:06'),(3099,1,'2019-02-16 20:40:07'),(3100,1,'2019-02-16 20:45:07'),(3101,1,'2019-02-16 20:50:07'),(3102,1,'2019-02-16 20:55:06'),(3103,1,'2019-02-16 21:00:05'),(3104,1,'2019-02-16 21:05:06'),(3105,1,'2019-02-16 21:10:07'),(3106,1,'2019-02-16 21:15:06'),(3107,1,'2019-02-16 21:20:06'),(3108,1,'2019-02-16 21:25:07'),(3109,1,'2019-02-16 21:30:05'),(3110,1,'2019-02-16 21:35:07'),(3111,1,'2019-02-16 21:40:06'),(3112,1,'2019-02-16 21:45:07'),(3113,1,'2019-02-16 21:50:06'),(3114,1,'2019-02-16 21:55:07'),(3115,1,'2019-02-16 22:00:06'),(3116,1,'2019-02-16 22:05:07'),(3117,1,'2019-02-16 22:10:07'),(3118,1,'2019-02-16 22:15:06'),(3119,1,'2019-02-16 22:20:07'),(3120,1,'2019-02-16 22:25:06'),(3121,1,'2019-02-16 22:30:05'),(3122,1,'2019-02-16 22:35:06'),(3123,1,'2019-02-16 22:40:07'),(3124,1,'2019-02-16 22:45:06'),(3125,1,'2019-02-16 22:50:07'),(3126,1,'2019-02-16 22:55:07'),(3127,1,'2019-02-16 23:00:05'),(3128,1,'2019-02-16 23:05:06'),(3129,1,'2019-02-16 23:10:06'),(3130,1,'2019-02-16 23:15:06'),(3131,1,'2019-02-16 23:20:07'),(3132,1,'2019-02-16 23:25:07'),(3133,1,'2019-02-16 23:30:05'),(3134,1,'2019-02-16 23:35:06'),(3135,1,'2019-02-16 23:40:07'),(3136,1,'2019-02-16 23:45:07'),(3137,1,'2019-02-16 23:50:06'),(3138,1,'2019-02-16 23:55:07'),(3139,1,'2019-02-17 00:00:05'),(3140,1,'2019-02-17 00:05:07'),(3141,1,'2019-02-17 00:10:06'),(3142,1,'2019-02-17 00:15:07'),(3143,1,'2019-02-17 00:20:07'),(3144,1,'2019-02-17 00:25:06'),(3145,1,'2019-02-17 00:30:06'),(3146,1,'2019-02-17 00:35:06'),(3147,1,'2019-02-17 00:40:07'),(3148,1,'2019-02-17 00:45:07'),(3149,1,'2019-02-17 00:50:07'),(3150,1,'2019-02-17 00:55:06'),(3151,1,'2019-02-17 01:00:05'),(3152,1,'2019-02-17 01:05:07'),(3153,1,'2019-02-17 01:10:06'),(3154,1,'2019-02-17 01:15:06'),(3155,1,'2019-02-17 01:20:07'),(3156,1,'2019-02-17 01:25:07'),(3157,1,'2019-02-17 01:30:05'),(3158,1,'2019-02-17 01:35:07'),(3159,1,'2019-02-17 01:40:07'),(3160,1,'2019-02-17 01:45:06'),(3161,1,'2019-02-17 01:50:07'),(3162,1,'2019-02-17 01:55:06'),(3163,1,'2019-02-17 02:00:06'),(3164,1,'2019-02-17 02:05:07'),(3165,1,'2019-02-17 02:10:06'),(3166,1,'2019-02-17 02:15:06'),(3167,1,'2019-02-17 02:20:06'),(3168,1,'2019-02-17 02:25:06'),(3169,1,'2019-02-17 02:30:04'),(3170,1,'2019-02-17 02:35:06'),(3171,1,'2019-02-17 02:40:06'),(3172,1,'2019-02-17 02:45:07'),(3173,1,'2019-02-17 02:50:06'),(3174,1,'2019-02-17 02:20:07'),(3175,1,'2019-02-17 03:10:07'),(3176,1,'2019-02-17 03:15:07'),(3177,1,'2019-02-17 03:20:05'),(3178,1,'2019-02-17 03:25:06'),(3179,1,'2019-02-17 03:30:05'),(3180,1,'2019-02-17 03:35:07'),(3181,1,'2019-02-17 03:40:07'),(3182,1,'2019-02-17 03:45:07'),(3183,1,'2019-02-17 03:50:06'),(3184,1,'2019-02-17 03:55:07'),(3185,1,'2019-02-17 04:00:05'),(3186,1,'2019-02-17 04:05:07'),(3187,1,'2019-02-17 04:10:06'),(3188,1,'2019-02-17 04:15:07'),(3189,1,'2019-02-17 04:20:07'),(3190,1,'2019-02-17 04:25:07'),(3191,1,'2019-02-17 04:30:05'),(3192,1,'2019-02-17 04:35:07'),(3193,1,'2019-02-17 04:40:07'),(3194,1,'2019-02-17 04:45:06'),(3195,1,'2019-02-17 04:50:07'),(3196,1,'2019-02-17 04:55:07'),(3197,1,'2019-02-17 05:00:05'),(3198,1,'2019-02-17 05:05:06'),(3199,1,'2019-02-17 05:10:07'),(3200,1,'2019-02-17 05:15:06'),(3201,1,'2019-02-17 05:20:07'),(3202,1,'2019-02-17 05:25:07'),(3203,1,'2019-02-17 05:30:05'),(3204,1,'2019-02-17 05:35:07'),(3205,1,'2019-02-17 05:40:07'),(3206,1,'2019-02-17 05:45:06'),(3207,1,'2019-02-17 05:50:07'),(3208,1,'2019-02-17 05:55:07'),(3209,1,'2019-02-17 06:00:05'),(3210,1,'2019-02-17 06:05:07'),(3211,1,'2019-02-17 06:10:06'),(3212,1,'2019-02-17 06:15:07'),(3213,1,'2019-02-17 06:20:07'),(3214,1,'2019-02-17 06:25:05'),(3215,1,'2019-02-17 06:30:05'),(3216,1,'2019-02-17 06:35:06'),(3217,1,'2019-02-17 06:40:07'),(3218,1,'2019-02-17 06:45:07'),(3219,1,'2019-02-17 06:50:07'),(3220,1,'2019-02-17 06:55:07'),(3221,1,'2019-02-17 07:00:05'),(3222,1,'2019-02-17 07:05:07'),(3223,1,'2019-02-17 07:10:07'),(3224,1,'2019-02-17 07:15:06'),(3225,1,'2019-02-17 07:20:07'),(3226,1,'2019-02-17 07:25:07'),(3227,1,'2019-02-17 07:30:05'),(3228,1,'2019-02-17 07:35:06'),(3229,1,'2019-02-17 07:40:07'),(3230,1,'2019-02-17 07:45:06'),(3231,1,'2019-02-17 07:50:07'),(3232,1,'2019-02-17 07:55:07'),(3233,1,'2019-02-17 08:00:05'),(3234,1,'2019-02-17 08:05:07'),(3235,1,'2019-02-17 08:10:06'),(3236,1,'2019-02-17 08:15:07'),(3237,1,'2019-02-17 08:20:07'),(3238,1,'2019-02-17 08:25:06'),(3239,1,'2019-02-17 08:30:06'),(3240,1,'2019-02-17 08:35:07'),(3241,1,'2019-02-17 08:40:07'),(3242,1,'2019-02-17 08:45:06'),(3243,1,'2019-02-17 08:50:07'),(3244,1,'2019-02-17 08:55:07'),(3245,1,'2019-02-17 09:00:06'),(3246,1,'2019-02-17 09:05:07'),(3247,1,'2019-02-17 09:10:07'),(3248,1,'2019-02-17 09:15:06'),(3249,1,'2019-02-17 09:20:06'),(3250,1,'2019-02-17 09:25:07'),(3251,1,'2019-02-17 09:30:05'),(3252,1,'2019-02-17 09:35:07'),(3253,1,'2019-02-17 09:40:07'),(3254,1,'2019-02-17 09:45:06'),(3255,1,'2019-02-17 09:50:06'),(3256,1,'2019-02-17 09:55:06'),(3257,1,'2019-02-17 10:00:06'),(3258,1,'2019-02-17 10:05:07'),(3259,1,'2019-02-17 10:10:06'),(3260,1,'2019-02-17 10:15:06'),(3261,1,'2019-02-17 10:20:07'),(3262,1,'2019-02-17 10:25:07'),(3263,1,'2019-02-17 10:30:05'),(3264,1,'2019-02-17 10:35:06'),(3265,1,'2019-02-17 10:40:07'),(3266,1,'2019-02-17 10:45:06'),(3267,1,'2019-02-17 10:50:07'),(3268,1,'2019-02-17 10:55:07'),(3269,1,'2019-02-17 11:00:05'),(3270,1,'2019-02-17 11:05:07'),(3271,1,'2019-02-17 11:10:07'),(3272,1,'2019-02-17 11:15:07'),(3273,1,'2019-02-17 11:20:07'),(3274,1,'2019-02-17 11:25:06'),(3275,1,'2019-02-17 11:30:06'),(3276,1,'2019-02-17 11:35:07'),(3277,1,'2019-02-17 11:40:07'),(3278,1,'2019-02-17 11:45:06'),(3279,1,'2019-02-17 11:50:07'),(3280,1,'2019-02-17 11:55:07'),(3281,1,'2019-02-17 12:00:05'),(3282,1,'2019-02-17 12:05:06'),(3283,1,'2019-02-17 12:10:06'),(3284,1,'2019-02-17 12:15:07'),(3285,1,'2019-02-17 12:20:07'),(3286,1,'2019-02-17 12:25:06'),(3287,1,'2019-02-17 12:30:06'),(3288,1,'2019-02-17 12:35:07'),(3289,1,'2019-02-17 12:40:06'),(3290,1,'2019-02-17 12:45:07'),(3291,1,'2019-02-17 12:50:06'),(3292,1,'2019-02-17 12:55:07'),(3293,1,'2019-02-17 13:00:06'),(3294,1,'2019-02-17 13:05:06'),(3295,1,'2019-02-17 13:10:06'),(3296,1,'2019-02-17 13:15:07'),(3297,1,'2019-02-17 13:20:06'),(3298,1,'2019-02-17 13:25:06'),(3299,1,'2019-02-17 13:30:06'),(3300,1,'2019-02-17 13:35:07'),(3301,1,'2019-02-17 13:40:06'),(3302,1,'2019-02-17 13:45:07'),(3303,1,'2019-02-17 13:50:06'),(3304,1,'2019-02-17 13:55:07'),(3305,1,'2019-02-17 14:00:06'),(3306,1,'2019-02-17 14:05:07'),(3307,1,'2019-02-17 14:10:06'),(3308,1,'2019-02-17 14:15:06'),(3309,1,'2019-02-17 20:10:09'),(3310,1,'2019-02-17 20:15:06'),(3311,1,'2019-02-17 20:20:06'),(3312,1,'2019-02-17 20:25:07'),(3313,1,'2019-02-17 20:30:05'),(3314,1,'2019-02-17 20:35:07'),(3315,1,'2019-02-17 20:40:07'),(3316,1,'2019-02-17 20:45:06'),(3317,1,'2019-02-17 20:50:07'),(3318,1,'2019-02-17 20:55:06'),(3319,1,'2019-02-17 21:00:05'),(3320,1,'2019-02-17 21:05:06'),(3321,1,'2019-02-17 21:10:06'),(3322,1,'2019-02-17 21:15:07'),(3323,1,'2019-02-17 21:20:07'),(3324,1,'2019-02-17 21:25:06'),(3325,1,'2019-02-17 21:30:05'),(3326,1,'2019-02-17 21:35:06'),(3327,1,'2019-02-17 21:40:07'),(3328,1,'2019-02-17 21:45:06'),(3329,1,'2019-02-17 21:50:06'),(3330,1,'2019-02-17 21:55:07'),(3331,1,'2019-02-17 22:00:05'),(3332,1,'2019-02-17 22:05:07'),(3333,1,'2019-02-17 22:10:06'),(3334,1,'2019-02-17 22:15:07'),(3335,1,'2019-02-17 22:20:06'),(3336,1,'2019-02-17 22:25:05'),(3337,1,'2019-02-17 22:30:04'),(3338,1,'2019-02-17 22:35:07'),(3339,1,'2019-02-17 22:40:07'),(3340,1,'2019-02-17 22:45:07'),(3341,1,'2019-02-17 22:50:06'),(3342,1,'2019-02-17 22:55:07'),(3343,1,'2019-02-17 23:00:06'),(3344,1,'2019-02-17 23:05:07'),(3345,1,'2019-02-17 23:10:06'),(3346,1,'2019-02-17 23:15:07'),(3347,1,'2019-02-17 23:20:06'),(3348,1,'2019-02-17 23:25:07'),(3349,1,'2019-02-17 23:30:05'),(3350,1,'2019-02-17 23:35:07'),(3351,1,'2019-02-17 23:40:07'),(3352,1,'2019-02-17 23:45:06'),(3353,1,'2019-02-17 23:50:06'),(3354,1,'2019-02-17 23:55:06'),(3355,1,'2019-02-18 00:00:05'),(3356,1,'2019-02-18 00:05:07'),(3357,1,'2019-02-18 00:10:07'),(3358,1,'2019-02-18 00:15:06'),(3359,1,'2019-02-18 00:20:06'),(3360,1,'2019-02-18 00:25:06'),(3361,1,'2019-02-18 00:30:05'),(3362,1,'2019-02-18 00:35:06'),(3363,1,'2019-02-18 00:40:06'),(3364,1,'2019-02-18 00:45:07'),(3365,1,'2019-02-18 00:50:06'),(3366,1,'2019-02-18 00:55:07'),(3367,1,'2019-02-18 01:00:05'),(3368,1,'2019-02-18 01:05:06'),(3369,1,'2019-02-18 01:10:07'),(3370,1,'2019-02-18 01:15:06'),(3371,1,'2019-02-18 01:20:07'),(3372,1,'2019-02-18 01:25:07'),(3373,1,'2019-02-18 01:30:05'),(3374,1,'2019-02-18 01:35:06'),(3375,1,'2019-02-18 01:40:07'),(3376,1,'2019-02-18 01:45:07'),(3377,1,'2019-02-18 01:50:06'),(3378,1,'2019-02-18 01:55:07'),(3379,1,'2019-02-18 02:00:06'),(3380,1,'2019-02-18 02:05:07'),(3381,1,'2019-02-18 02:10:07'),(3382,1,'2019-02-18 02:15:07'),(3383,1,'2019-02-18 02:20:07'),(3384,1,'2019-02-18 02:25:06'),(3385,1,'2019-02-18 02:30:06'),(3386,1,'2019-02-18 02:35:06'),(3387,1,'2019-02-18 02:40:06'),(3388,1,'2019-02-18 02:45:07'),(3389,1,'2019-02-18 02:50:07'),(3390,1,'2019-02-18 02:55:06'),(3391,1,'2019-02-18 03:00:06'),(3392,1,'2019-02-18 03:05:06'),(3393,1,'2019-02-18 03:10:07'),(3394,1,'2019-02-18 03:15:07'),(3395,1,'2019-02-18 03:20:06'),(3396,1,'2019-02-18 03:25:07'),(3397,1,'2019-02-18 03:30:05'),(3398,1,'2019-02-18 03:35:06'),(3399,1,'2019-02-18 03:40:06'),(3400,1,'2019-02-18 03:45:07'),(3401,1,'2019-02-18 03:50:07'),(3402,1,'2019-02-18 03:55:07'),(3403,1,'2019-02-18 04:00:05'),(3404,1,'2019-02-18 04:05:07'),(3405,1,'2019-02-18 04:10:06'),(3406,1,'2019-02-18 04:15:06'),(3407,1,'2019-02-18 04:20:06'),(3408,1,'2019-02-18 04:25:07'),(3409,1,'2019-02-18 04:30:06'),(3410,1,'2019-02-18 04:35:07'),(3411,1,'2019-02-18 04:40:06'),(3412,1,'2019-02-18 04:45:06'),(3413,1,'2019-02-18 04:50:07'),(3414,1,'2019-02-18 04:55:06'),(3415,1,'2019-02-18 05:00:06'),(3416,1,'2019-02-18 05:05:07'),(3417,1,'2019-02-18 05:10:07'),(3418,1,'2019-02-18 05:15:06'),(3419,1,'2019-02-18 05:20:07'),(3420,1,'2019-02-18 05:25:06'),(3421,1,'2019-02-18 05:30:06'),(3422,1,'2019-02-18 05:35:06'),(3423,1,'2019-02-18 05:40:07'),(3424,1,'2019-02-18 05:45:06'),(3425,1,'2019-02-18 05:50:07'),(3426,1,'2019-02-18 05:55:06'),(3427,1,'2019-02-18 06:00:05'),(3428,1,'2019-02-18 06:05:07'),(3429,1,'2019-02-18 06:10:07'),(3430,1,'2019-02-18 06:15:06'),(3431,1,'2019-02-18 06:20:07'),(3432,1,'2019-02-18 06:25:05'),(3433,1,'2019-02-18 06:30:05'),(3434,1,'2019-02-18 06:35:06'),(3435,1,'2019-02-18 06:40:07'),(3436,1,'2019-02-18 06:45:07'),(3437,1,'2019-02-18 06:50:06'),(3438,1,'2019-02-18 06:55:06'),(3439,1,'2019-02-18 07:00:05'),(3440,1,'2019-02-18 07:05:06'),(3441,1,'2019-02-18 07:10:06'),(3442,1,'2019-02-18 07:15:06'),(3443,1,'2019-02-18 07:20:06'),(3444,1,'2019-02-18 07:25:07'),(3445,1,'2019-02-18 07:30:05'),(3446,1,'2019-02-18 07:35:07'),(3447,1,'2019-02-18 07:40:06'),(3448,1,'2019-02-18 07:45:07'),(3449,1,'2019-02-18 07:50:07'),(3450,1,'2019-02-18 07:55:06'),(3451,1,'2019-02-18 08:00:06'),(3452,1,'2019-02-18 08:05:07'),(3453,1,'2019-02-18 08:10:06'),(3454,1,'2019-02-18 08:15:07'),(3455,1,'2019-02-18 08:20:06'),(3456,1,'2019-02-18 08:25:07'),(3457,1,'2019-02-18 08:30:06'),(3458,1,'2019-02-18 08:35:07'),(3459,1,'2019-02-18 08:40:06'),(3460,1,'2019-02-18 08:45:06'),(3461,1,'2019-02-18 08:50:07'),(3462,1,'2019-02-18 08:55:07'),(3463,1,'2019-02-18 09:00:05'),(3464,1,'2019-02-18 09:05:06'),(3465,1,'2019-02-18 09:10:07'),(3466,1,'2019-02-18 09:15:07'),(3467,1,'2019-02-18 09:20:06'),(3468,1,'2019-02-18 09:25:07'),(3469,1,'2019-02-18 09:30:05'),(3470,1,'2019-02-18 09:35:06'),(3471,1,'2019-02-18 09:40:07'),(3472,1,'2019-02-18 09:45:07'),(3473,1,'2019-02-18 09:50:07'),(3474,1,'2019-02-18 09:55:06'),(3475,1,'2019-02-18 10:00:06'),(3476,1,'2019-02-18 10:05:06'),(3477,1,'2019-02-18 10:10:07'),(3478,1,'2019-02-18 10:15:07'),(3479,1,'2019-02-18 10:20:07'),(3480,1,'2019-02-18 10:25:06'),(3481,1,'2019-02-18 10:30:06'),(3482,1,'2019-02-18 10:35:06'),(3483,1,'2019-02-18 10:40:07'),(3484,1,'2019-02-18 10:45:07'),(3485,1,'2019-02-18 10:50:07'),(3486,1,'2019-02-18 10:55:06'),(3487,1,'2019-02-18 11:00:05'),(3488,1,'2019-02-18 11:05:07'),(3489,1,'2019-02-18 11:10:07'),(3490,1,'2019-02-18 11:15:06'),(3491,1,'2019-02-18 11:20:07'),(3492,1,'2019-02-18 11:25:06'),(3493,1,'2019-02-18 11:30:06'),(3494,1,'2019-02-18 11:35:07'),(3495,1,'2019-02-18 11:40:07'),(3496,1,'2019-02-18 11:45:06'),(3497,1,'2019-02-18 11:50:07'),(3498,1,'2019-02-18 11:55:07'),(3499,1,'2019-02-18 12:00:05'),(3500,1,'2019-02-18 12:05:06'),(3501,1,'2019-02-18 12:10:07'),(3502,1,'2019-02-18 12:15:06'),(3503,1,'2019-02-18 12:20:07'),(3504,1,'2019-02-18 12:25:07'),(3505,1,'2019-02-18 12:30:05'),(3506,1,'2019-02-18 12:35:06'),(3507,1,'2019-02-18 12:40:06'),(3508,1,'2019-02-18 12:45:06'),(3509,1,'2019-02-18 12:50:06'),(3510,1,'2019-02-18 12:55:06'),(3511,1,'2019-02-18 13:00:05'),(3512,1,'2019-02-18 13:05:07'),(3513,1,'2019-02-18 13:10:07'),(3514,1,'2019-02-18 13:15:07'),(3515,1,'2019-02-18 13:20:06'),(3516,1,'2019-02-18 13:25:07'),(3517,1,'2019-02-18 13:30:05'),(3518,1,'2019-02-18 13:35:07'),(3519,1,'2019-02-18 13:40:07'),(3520,1,'2019-02-18 13:45:06'),(3521,1,'2019-02-18 13:50:07'),(3522,1,'2019-02-18 13:55:07'),(3523,1,'2019-02-18 14:00:05'),(3524,1,'2019-02-18 14:05:07'),(3525,1,'2019-02-18 14:10:07'),(3526,1,'2019-02-18 14:15:06'),(3527,1,'2019-02-18 14:20:07'),(3528,1,'2019-02-18 14:25:06'),(3529,1,'2019-02-18 14:30:06'),(3530,1,'2019-02-18 14:35:05'),(3531,1,'2019-02-18 14:40:06'),(3532,1,'2019-02-18 14:45:07'),(3533,1,'2019-02-18 14:50:06'),(3534,1,'2019-02-18 14:55:07'),(3535,1,'2019-02-18 15:00:06'),(3536,1,'2019-02-18 15:05:07'),(3537,1,'2019-02-18 15:10:06'),(3538,1,'2019-02-18 15:15:06'),(3539,1,'2019-02-18 15:20:05'),(3540,1,'2019-02-18 15:25:06'),(3541,1,'2019-02-18 15:30:06'),(3542,1,'2019-02-18 15:35:07'),(3543,1,'2019-02-18 15:40:07'),(3544,1,'2019-02-18 15:45:06'),(3545,1,'2019-02-18 15:50:07'),(3546,1,'2019-02-18 15:55:07'),(3547,1,'2019-02-18 16:00:05'),(3548,1,'2019-02-18 16:05:07'),(3549,1,'2019-02-18 16:10:06'),(3550,1,'2019-02-18 16:15:07'),(3551,1,'2019-02-18 16:20:07'),(3552,1,'2019-02-18 16:25:06'),(3553,1,'2019-02-18 16:30:06'),(3554,1,'2019-02-18 16:35:06'),(3555,1,'2019-02-18 16:40:07'),(3556,1,'2019-02-18 16:45:06'),(3557,1,'2019-02-18 16:50:07'),(3558,1,'2019-02-18 16:55:07'),(3559,1,'2019-02-18 17:00:05'),(3560,1,'2019-02-18 17:05:06'),(3561,1,'2019-02-18 17:10:06'),(3562,1,'2019-02-18 17:15:07'),(3563,1,'2019-02-18 17:20:07'),(3564,1,'2019-02-18 17:25:07'),(3565,1,'2019-02-18 17:30:05'),(3566,1,'2019-02-18 17:35:06'),(3567,1,'2019-02-18 17:40:07'),(3568,1,'2019-02-18 17:45:07'),(3569,1,'2019-02-18 17:50:07'),(3570,1,'2019-02-18 17:55:06'),(3571,1,'2019-02-18 18:00:06'),(3572,1,'2019-02-18 18:05:06'),(3573,1,'2019-02-18 18:10:07'),(3574,1,'2019-02-18 18:15:07'),(3575,1,'2019-02-18 18:20:07'),(3576,1,'2019-02-18 18:25:06'),(3577,1,'2019-02-18 18:30:06'),(3578,1,'2019-02-18 18:35:06'),(3579,1,'2019-02-18 18:40:06'),(3580,1,'2019-02-18 18:45:06'),(3581,1,'2019-02-18 18:50:07'),(3582,1,'2019-02-18 18:55:07'),(3583,1,'2019-02-18 19:00:05'),(3584,1,'2019-02-18 19:05:07'),(3585,1,'2019-02-18 19:10:07'),(3586,1,'2019-02-18 19:15:06'),(3587,1,'2019-02-18 19:20:07'),(3588,1,'2019-02-18 19:25:06'),(3589,1,'2019-02-18 19:30:05'),(3590,1,'2019-02-18 19:35:06'),(3591,1,'2019-02-18 19:40:07'),(3592,1,'2019-02-18 19:45:06'),(3593,1,'2019-02-18 19:50:07'),(3594,1,'2019-02-18 19:55:06'),(3595,1,'2019-02-18 20:00:06'),(3596,1,'2019-02-18 20:05:07'),(3597,1,'2019-02-18 20:10:07'),(3598,1,'2019-02-18 20:15:06'),(3599,1,'2019-02-18 20:20:07'),(3600,1,'2019-02-18 20:25:07'),(3601,1,'2019-02-18 20:30:05'),(3602,1,'2019-02-18 20:35:07'),(3603,1,'2019-02-18 20:40:07'),(3604,1,'2019-02-18 20:45:06'),(3605,1,'2019-02-18 20:50:07'),(3606,1,'2019-02-18 20:55:07'),(3607,1,'2019-02-18 21:00:05'),(3608,1,'2019-02-18 21:05:07'),(3609,1,'2019-02-18 21:10:07'),(3610,1,'2019-02-18 21:15:06'),(3611,1,'2019-02-18 21:20:07'),(3612,1,'2019-02-18 21:25:06'),(3613,1,'2019-02-18 21:30:06'),(3614,1,'2019-02-18 21:35:06'),(3615,1,'2019-02-18 21:40:07'),(3616,1,'2019-02-18 21:45:07'),(3617,1,'2019-02-18 21:50:07'),(3618,1,'2019-02-18 21:55:06'),(3619,1,'2019-02-18 22:00:06'),(3620,1,'2019-02-18 22:05:06'),(3621,1,'2019-02-18 22:10:07'),(3622,1,'2019-02-18 22:15:07'),(3623,1,'2019-02-18 22:20:06'),(3624,1,'2019-02-18 22:25:07'),(3625,1,'2019-02-18 22:30:05'),(3626,1,'2019-02-18 22:35:07'),(3627,1,'2019-02-18 22:40:07'),(3628,1,'2019-02-18 22:45:06'),(3629,1,'2019-02-18 22:50:06'),(3630,1,'2019-02-18 22:55:07'),(3631,1,'2019-02-18 23:00:05'),(3632,1,'2019-02-18 23:05:07'),(3633,1,'2019-02-18 23:10:07'),(3634,1,'2019-02-18 23:15:06'),(3635,1,'2019-02-18 23:20:06'),(3636,1,'2019-02-18 23:25:06'),(3637,1,'2019-02-18 23:30:06'),(3638,1,'2019-02-18 23:35:06'),(3639,1,'2019-02-18 23:40:07'),(3640,1,'2019-02-18 23:45:06'),(3641,1,'2019-02-18 23:50:07'),(3642,1,'2019-02-18 23:55:07'),(3643,1,'2019-02-19 00:00:05'),(3644,1,'2019-02-19 00:05:07'),(3645,1,'2019-02-19 00:10:06'),(3646,1,'2019-02-19 00:15:06'),(3647,1,'2019-02-19 00:20:06'),(3648,1,'2019-02-19 00:25:07'),(3649,1,'2019-02-19 00:30:05'),(3650,1,'2019-02-19 00:35:07'),(3651,1,'2019-02-19 00:40:06'),(3652,1,'2019-02-19 00:45:07'),(3653,1,'2019-02-19 00:50:07'),(3654,1,'2019-02-19 00:55:06'),(3655,1,'2019-02-19 01:00:05'),(3656,1,'2019-02-19 01:05:07'),(3657,1,'2019-02-19 01:10:07'),(3658,1,'2019-02-19 01:15:06'),(3659,1,'2019-02-19 01:20:07'),(3660,1,'2019-02-19 01:25:06'),(3661,1,'2019-02-19 01:30:06'),(3662,1,'2019-02-19 01:35:05'),(3663,1,'2019-02-19 01:40:07'),(3664,1,'2019-02-19 01:45:06'),(3665,1,'2019-02-19 01:50:07'),(3666,1,'2019-02-19 01:55:07'),(3667,1,'2019-02-19 02:00:05'),(3668,1,'2019-02-19 02:05:07'),(3669,1,'2019-02-19 02:10:07'),(3670,1,'2019-02-19 02:15:06'),(3671,1,'2019-02-19 02:20:07'),(3672,1,'2019-02-19 02:25:07'),(3673,1,'2019-02-19 02:30:05'),(3674,1,'2019-02-19 02:35:07'),(3675,1,'2019-02-19 02:40:07'),(3676,1,'2019-02-19 02:45:06'),(3677,1,'2019-02-19 02:50:07'),(3678,1,'2019-02-19 02:55:07'),(3679,1,'2019-02-19 03:00:05'),(3680,1,'2019-02-19 03:05:07'),(3681,1,'2019-02-19 03:10:06'),(3682,1,'2019-02-19 03:15:07'),(3683,1,'2019-02-19 03:20:07'),(3684,1,'2019-02-19 03:25:07'),(3685,1,'2019-02-19 03:30:05'),(3686,1,'2019-02-19 03:35:05'),(3687,1,'2019-02-19 03:40:06'),(3688,1,'2019-02-19 03:45:07'),(3689,1,'2019-02-19 03:50:07'),(3690,1,'2019-02-19 03:55:07'),(3691,1,'2019-02-19 04:00:05'),(3692,1,'2019-02-19 04:05:07'),(3693,1,'2019-02-19 04:10:06'),(3694,1,'2019-02-19 04:15:07'),(3695,1,'2019-02-19 04:20:07'),(3696,1,'2019-02-19 04:25:06'),(3697,1,'2019-02-19 04:30:06'),(3698,1,'2019-02-19 04:35:06'),(3699,1,'2019-02-19 04:40:07'),(3700,1,'2019-02-19 04:45:07'),(3701,1,'2019-02-19 04:50:06'),(3702,1,'2019-02-19 04:55:06'),(3703,1,'2019-02-19 05:00:05'),(3704,1,'2019-02-19 05:05:06'),(3705,1,'2019-02-19 05:10:07'),(3706,1,'2019-02-19 05:15:07'),(3707,1,'2019-02-19 05:20:07'),(3708,1,'2019-02-19 05:25:06'),(3709,1,'2019-02-19 05:30:05'),(3710,1,'2019-02-19 05:35:06'),(3711,1,'2019-02-19 05:40:07'),(3712,1,'2019-02-19 05:45:06'),(3713,1,'2019-02-19 05:50:07'),(3714,1,'2019-02-19 05:55:07'),(3715,1,'2019-02-19 06:00:05'),(3716,1,'2019-02-19 06:05:07'),(3717,1,'2019-02-19 06:10:07'),(3718,1,'2019-02-19 06:15:06'),(3719,1,'2019-02-19 06:20:07'),(3720,1,'2019-02-19 06:25:05'),(3721,1,'2019-02-19 06:30:05'),(3722,1,'2019-02-19 06:35:07'),(3723,1,'2019-02-19 06:40:07'),(3724,1,'2019-02-19 06:45:06'),(3725,1,'2019-02-19 06:50:07'),(3726,1,'2019-02-19 06:55:06'),(3727,1,'2019-02-19 07:00:06'),(3728,1,'2019-02-19 07:05:06'),(3729,1,'2019-02-19 07:10:07'),(3730,1,'2019-02-19 07:15:05'),(3731,1,'2019-02-19 07:20:07'),(3732,1,'2019-02-19 07:25:07'),(3733,1,'2019-02-19 07:30:05'),(3734,1,'2019-02-19 07:35:07'),(3735,1,'2019-02-19 07:40:07'),(3736,1,'2019-02-19 07:45:06'),(3737,1,'2019-02-19 07:50:07'),(3738,1,'2019-02-19 07:55:06'),(3739,1,'2019-02-19 08:00:06'),(3740,1,'2019-02-19 08:05:07'),(3741,1,'2019-02-19 08:10:07'),(3742,1,'2019-02-19 08:15:06'),(3743,1,'2019-02-19 08:20:07'),(3744,1,'2019-02-19 08:25:06'),(3745,1,'2019-02-19 08:30:05'),(3746,1,'2019-02-19 08:35:07'),(3747,1,'2019-02-19 08:40:07'),(3748,1,'2019-02-19 08:45:07'),(3749,1,'2019-02-19 08:50:06'),(3750,1,'2019-02-19 08:55:07'),(3751,1,'2019-02-19 09:00:05'),(3752,1,'2019-02-19 09:05:07'),(3753,1,'2019-02-19 09:10:06'),(3754,1,'2019-02-19 09:15:07'),(3755,1,'2019-02-19 09:20:07'),(3756,1,'2019-02-19 09:25:06'),(3757,1,'2019-02-19 09:30:05'),(3758,1,'2019-02-19 09:35:06'),(3759,1,'2019-02-19 09:40:06'),(3760,1,'2019-02-19 09:45:07'),(3761,1,'2019-02-19 09:50:06'),(3762,1,'2019-02-19 09:55:06'),(3763,1,'2019-02-19 10:00:05'),(3764,1,'2019-02-19 10:05:06'),(3765,1,'2019-02-19 10:10:07'),(3766,1,'2019-02-19 10:15:06'),(3767,1,'2019-02-19 10:20:07'),(3768,1,'2019-02-19 10:25:06'),(3769,1,'2019-02-19 10:30:05'),(3770,1,'2019-02-19 10:35:06'),(3771,1,'2019-02-19 10:40:07'),(3772,1,'2019-02-19 10:45:06'),(3773,1,'2019-02-19 10:50:07'),(3774,1,'2019-02-19 10:55:07'),(3775,1,'2019-02-19 11:00:05'),(3776,1,'2019-02-19 11:05:07'),(3777,1,'2019-02-19 11:10:07'),(3778,1,'2019-02-19 11:15:06'),(3779,1,'2019-02-19 11:20:06'),(3780,1,'2019-02-19 11:25:07'),(3781,1,'2019-02-19 11:30:05'),(3782,1,'2019-02-19 11:35:06'),(3783,1,'2019-02-19 11:40:06'),(3784,1,'2019-02-19 11:45:07'),(3785,1,'2019-02-19 11:50:07'),(3786,1,'2019-02-19 11:55:06'),(3787,1,'2019-02-19 12:00:06'),(3788,1,'2019-02-19 12:05:06'),(3789,1,'2019-02-19 12:10:06'),(3790,1,'2019-02-19 12:15:07'),(3791,1,'2019-02-19 12:20:06'),(3792,1,'2019-02-19 12:25:07'),(3793,1,'2019-02-19 12:30:06'),(3794,1,'2019-02-19 12:35:07'),(3795,1,'2019-02-19 12:40:06'),(3796,1,'2019-02-19 12:45:06'),(3797,1,'2019-02-19 12:50:07'),(3798,1,'2019-02-19 12:55:06'),(3799,1,'2019-02-19 13:00:05'),(3800,1,'2019-02-19 13:05:06'),(3801,1,'2019-02-19 13:10:07'),(3802,1,'2019-02-19 13:15:07'),(3803,1,'2019-02-19 13:20:07'),(3804,1,'2019-02-19 13:25:06'),(3805,1,'2019-02-19 13:30:06'),(3806,1,'2019-02-19 13:35:07'),(3807,1,'2019-02-19 13:40:06'),(3808,1,'2019-02-19 13:45:07'),(3809,1,'2019-02-19 13:50:06'),(3810,1,'2019-02-19 13:55:07'),(3811,1,'2019-02-19 14:00:05'),(3812,1,'2019-02-19 14:05:07'),(3813,1,'2019-02-19 14:10:07'),(3814,1,'2019-02-19 14:15:06'),(3815,1,'2019-02-19 14:20:07'),(3816,1,'2019-02-19 14:25:07'),(3817,1,'2019-02-19 14:30:05'),(3818,1,'2019-02-19 14:35:06'),(3819,1,'2019-02-19 14:40:07'),(3820,1,'2019-02-19 14:45:06'),(3821,1,'2019-02-19 14:50:07'),(3822,1,'2019-02-19 14:55:07'),(3823,1,'2019-02-19 15:00:05'),(3824,1,'2019-02-19 15:05:07'),(3825,1,'2019-02-19 15:10:07'),(3826,1,'2019-02-19 15:15:06'),(3827,1,'2019-02-19 15:20:06'),(3828,1,'2019-02-19 15:25:07'),(3829,1,'2019-02-19 15:30:05'),(3830,1,'2019-02-19 15:35:07'),(3831,1,'2019-02-19 15:40:06'),(3832,1,'2019-02-19 15:45:07'),(3833,1,'2019-02-19 15:50:06'),(3834,1,'2019-02-19 15:55:07'),(3835,1,'2019-02-19 16:00:06'),(3836,1,'2019-02-19 16:05:07'),(3837,1,'2019-02-19 16:10:06'),(3838,1,'2019-02-19 16:15:07'),(3839,1,'2019-02-19 16:20:07'),(3840,1,'2019-02-19 16:25:06'),(3841,1,'2019-02-19 16:30:06'),(3842,1,'2019-02-19 16:35:07'),(3843,1,'2019-02-19 16:40:06'),(3844,1,'2019-02-19 16:45:07'),(3845,1,'2019-02-19 16:50:07'),(3846,1,'2019-02-19 16:55:06'),(3847,1,'2019-02-19 17:00:06'),(3848,1,'2019-02-19 17:05:07'),(3849,1,'2019-02-19 17:10:06'),(3850,1,'2019-02-19 17:15:07'),(3851,1,'2019-02-19 17:20:06'),(3852,1,'2019-02-19 17:25:07'),(3853,1,'2019-02-19 17:30:05'),(3854,1,'2019-02-19 17:35:07'),(3855,1,'2019-02-19 17:40:06'),(3856,1,'2019-02-19 17:45:06'),(3857,1,'2019-02-19 17:50:07'),(3858,1,'2019-02-19 17:55:07'),(3859,1,'2019-02-19 18:00:05'),(3860,1,'2019-02-19 18:05:06'),(3861,1,'2019-02-19 18:10:06'),(3862,1,'2019-02-19 18:15:07'),(3863,1,'2019-02-19 18:20:06'),(3864,1,'2019-02-19 18:25:07'),(3865,1,'2019-02-19 18:30:05'),(3866,1,'2019-02-19 18:35:06'),(3867,1,'2019-02-19 18:40:06'),(3868,1,'2019-02-19 18:45:06'),(3869,1,'2019-02-19 18:50:07'),(3870,1,'2019-02-19 18:55:06'),(3871,1,'2019-02-19 19:00:05'),(3872,1,'2019-02-19 19:05:06'),(3873,1,'2019-02-19 19:10:07'),(3874,1,'2019-02-19 19:15:06'),(3875,1,'2019-02-19 19:20:07'),(3876,1,'2019-02-19 19:25:06'),(3877,1,'2019-02-19 19:30:05'),(3878,1,'2019-02-19 19:35:06'),(3879,1,'2019-02-19 19:40:07'),(3880,1,'2019-02-19 19:45:06'),(3881,1,'2019-02-19 19:50:07'),(3882,1,'2019-02-19 19:55:07'),(3883,1,'2019-02-19 20:00:05'),(3884,1,'2019-02-19 20:05:06'),(3885,1,'2019-02-19 20:10:07'),(3886,1,'2019-02-19 20:15:06'),(3887,1,'2019-02-19 20:20:07'),(3888,1,'2019-02-19 20:25:07'),(3889,1,'2019-02-19 20:30:05'),(3890,1,'2019-02-19 20:35:06'),(3891,1,'2019-02-19 20:40:07'),(3892,1,'2019-02-19 20:45:07'),(3893,1,'2019-02-19 20:50:07'),(3894,1,'2019-02-19 20:55:06'),(3895,1,'2019-02-19 21:00:06'),(3896,1,'2019-02-19 21:05:07'),(3897,1,'2019-02-19 21:10:07'),(3898,1,'2019-02-19 21:15:06'),(3899,1,'2019-02-19 21:20:06'),(3900,1,'2019-02-19 21:25:06'),(3901,1,'2019-02-19 21:30:05'),(3902,1,'2019-02-19 21:35:07'),(3903,1,'2019-02-19 21:40:06'),(3904,1,'2019-02-19 21:45:07'),(3905,1,'2019-02-19 21:50:06'),(3906,1,'2019-02-19 21:55:06'),(3907,1,'2019-02-19 22:00:05'),(3908,1,'2019-02-19 22:05:07'),(3909,1,'2019-02-19 22:10:06'),(3910,1,'2019-02-19 22:15:07'),(3911,1,'2019-02-19 22:20:07'),(3912,1,'2019-02-19 22:25:06'),(3913,1,'2019-02-19 22:30:05'),(3914,1,'2019-02-19 22:35:06'),(3915,1,'2019-02-19 22:40:07'),(3916,1,'2019-02-19 22:45:07'),(3917,1,'2019-02-19 22:50:06'),(3918,1,'2019-02-19 22:55:06'),(3919,1,'2019-02-19 23:00:06'),(3920,1,'2019-02-19 23:05:07'),(3921,1,'2019-02-19 23:10:07'),(3922,1,'2019-02-19 23:15:06'),(3923,1,'2019-02-19 23:20:07'),(3924,1,'2019-02-19 23:25:07'),(3925,1,'2019-02-19 23:30:05'),(3926,1,'2019-02-19 23:35:07'),(3927,1,'2019-02-19 23:40:07'),(3928,1,'2019-02-19 23:45:06'),(3929,1,'2019-02-19 23:50:07'),(3930,1,'2019-02-19 23:55:07'),(3931,1,'2019-02-20 00:00:05'),(3932,1,'2019-02-20 00:05:07'),(3933,1,'2019-02-20 00:10:06'),(3934,1,'2019-02-20 00:15:06'),(3935,1,'2019-02-20 00:20:06'),(3936,1,'2019-02-20 00:25:07'),(3937,1,'2019-02-20 00:30:05'),(3938,1,'2019-02-20 00:35:07'),(3939,1,'2019-02-20 00:40:07'),(3940,1,'2019-02-20 00:45:06'),(3941,1,'2019-02-20 00:50:07'),(3942,1,'2019-02-20 00:55:05'),(3943,1,'2019-02-20 01:00:06'),(3944,1,'2019-02-20 01:05:06'),(3945,1,'2019-02-20 01:10:07'),(3946,1,'2019-02-20 01:15:06'),(3947,1,'2019-02-20 01:20:06'),(3948,1,'2019-02-20 01:25:06'),(3949,1,'2019-02-20 01:30:05'),(3950,1,'2019-02-20 01:35:07'),(3951,1,'2019-02-20 01:40:07'),(3952,1,'2019-02-20 01:45:06'),(3953,1,'2019-02-20 01:50:07'),(3954,1,'2019-02-20 01:55:06'),(3955,1,'2019-02-20 02:00:05'),(3956,1,'2019-02-20 02:05:06'),(3957,1,'2019-02-20 02:10:07'),(3958,1,'2019-02-20 02:15:07'),(3959,1,'2019-02-20 02:20:06'),(3960,1,'2019-02-20 02:25:07'),(3961,1,'2019-02-20 02:30:05'),(3962,1,'2019-02-20 02:35:06'),(3963,1,'2019-02-20 02:40:07'),(3964,1,'2019-02-20 02:45:07'),(3965,1,'2019-02-20 02:50:06'),(3966,1,'2019-02-20 02:55:06'),(3967,1,'2019-02-20 03:00:05'),(3968,1,'2019-02-20 03:05:06'),(3969,1,'2019-02-20 03:10:07'),(3970,1,'2019-02-20 03:15:07'),(3971,1,'2019-02-20 03:20:07'),(3972,1,'2019-02-20 03:25:07'),(3973,1,'2019-02-20 03:30:05'),(3974,1,'2019-02-20 03:35:07'),(3975,1,'2019-02-20 03:40:07'),(3976,1,'2019-02-20 03:45:06'),(3977,1,'2019-02-20 03:50:07'),(3978,1,'2019-02-20 03:55:07'),(3979,1,'2019-02-20 04:00:05'),(3980,1,'2019-02-20 04:05:06'),(3981,1,'2019-02-20 04:10:07'),(3982,1,'2019-02-20 04:15:07'),(3983,1,'2019-02-20 04:20:07'),(3984,1,'2019-02-20 04:25:07'),(3985,1,'2019-02-20 04:30:05'),(3986,1,'2019-02-20 04:35:06'),(3987,1,'2019-02-20 04:40:06'),(3988,1,'2019-02-20 04:45:07'),(3989,1,'2019-02-20 04:50:07'),(3990,1,'2019-02-20 04:55:07'),(3991,1,'2019-02-20 05:00:05'),(3992,1,'2019-02-20 05:05:07'),(3993,1,'2019-02-20 05:10:06'),(3994,1,'2019-02-20 05:15:07'),(3995,1,'2019-02-20 05:20:07'),(3996,1,'2019-02-20 05:25:07'),(3997,1,'2019-02-20 05:30:05'),(3998,1,'2019-02-20 05:35:07'),(3999,1,'2019-02-20 05:40:06'),(4000,1,'2019-02-20 05:45:07'),(4001,1,'2019-02-20 05:50:06'),(4002,1,'2019-02-20 05:55:07'),(4003,1,'2019-02-20 06:00:05'),(4004,1,'2019-02-20 06:05:07'),(4005,1,'2019-02-20 06:10:07'),(4006,1,'2019-02-20 06:15:06'),(4007,1,'2019-02-20 06:20:07'),(4008,1,'2019-02-20 06:25:06'),(4009,1,'2019-02-20 06:30:05'),(4010,1,'2019-02-20 06:35:07'),(4011,1,'2019-02-20 06:40:07'),(4012,1,'2019-02-20 06:45:06'),(4013,1,'2019-02-20 06:50:06'),(4014,1,'2019-02-20 06:55:06'),(4015,1,'2019-02-20 07:00:06'),(4016,1,'2019-02-20 07:05:06'),(4017,1,'2019-02-20 07:10:07'),(4018,1,'2019-02-20 07:15:07'),(4019,1,'2019-02-20 07:20:07'),(4020,1,'2019-02-20 07:25:06'),(4021,1,'2019-02-20 07:30:06'),(4022,1,'2019-02-20 07:35:06'),(4023,1,'2019-02-20 07:40:07'),(4024,1,'2019-02-20 07:45:07'),(4025,1,'2019-02-20 07:50:07'),(4026,1,'2019-02-20 07:55:06'),(4027,1,'2019-02-20 08:00:06'),(4028,1,'2019-02-20 08:05:06'),(4029,1,'2019-02-20 08:10:07'),(4030,1,'2019-02-20 08:15:07'),(4031,1,'2019-02-20 08:20:06'),(4032,1,'2019-02-20 08:25:07'),(4033,1,'2019-02-20 08:30:05'),(4034,1,'2019-02-20 08:35:07'),(4035,1,'2019-02-20 08:40:07'),(4036,1,'2019-02-20 08:45:07'),(4037,1,'2019-02-20 08:50:06'),(4038,1,'2019-02-20 08:55:07'),(4039,1,'2019-02-20 09:00:06'),(4040,1,'2019-02-20 09:05:07'),(4041,1,'2019-02-20 09:10:06'),(4042,1,'2019-02-20 09:15:07'),(4043,1,'2019-02-20 09:20:06'),(4044,1,'2019-02-20 09:25:07'),(4045,1,'2019-02-20 09:30:05'),(4046,1,'2019-02-20 09:35:06'),(4047,1,'2019-02-20 09:40:07'),(4048,1,'2019-02-20 09:45:06'),(4049,1,'2019-02-20 09:50:07'),(4050,1,'2019-02-20 09:55:07'),(4051,1,'2019-02-20 10:00:05'),(4052,1,'2019-02-20 10:05:06'),(4053,1,'2019-02-20 10:10:07'),(4054,1,'2019-02-20 10:15:07'),(4055,1,'2019-02-20 10:20:06'),(4056,1,'2019-02-20 10:25:07'),(4057,1,'2019-02-20 10:30:06'),(4058,1,'2019-02-20 10:35:07'),(4059,1,'2019-02-20 10:40:06'),(4060,1,'2019-02-20 10:45:07'),(4061,1,'2019-02-20 10:50:06'),(4062,1,'2019-02-20 10:55:07'),(4063,1,'2019-02-20 11:00:05'),(4064,1,'2019-02-20 11:05:06'),(4065,1,'2019-02-20 11:10:06'),(4066,1,'2019-02-20 11:15:07'),(4067,1,'2019-02-20 11:20:07'),(4068,1,'2019-02-20 11:25:06'),(4069,1,'2019-02-20 11:30:06'),(4070,1,'2019-02-20 11:35:07'),(4071,1,'2019-02-20 11:40:07'),(4072,1,'2019-02-20 11:45:06'),(4073,1,'2019-02-20 11:50:07'),(4074,1,'2019-02-20 11:55:06'),(4075,1,'2019-02-20 12:00:06'),(4076,1,'2019-02-20 12:05:06'),(4077,1,'2019-02-20 12:10:06'),(4078,1,'2019-02-20 12:15:07'),(4079,1,'2019-02-20 12:20:06'),(4080,1,'2019-02-20 12:25:07'),(4081,1,'2019-02-20 12:30:05'),(4082,1,'2019-02-20 12:35:07'),(4083,1,'2019-02-20 12:40:07'),(4084,1,'2019-02-20 12:45:06'),(4085,1,'2019-02-20 12:50:06'),(4086,1,'2019-02-20 12:55:06'),(4087,1,'2019-02-20 13:00:05'),(4088,1,'2019-02-20 13:05:06'),(4089,1,'2019-02-20 13:10:06'),(4090,1,'2019-02-20 13:15:07'),(4091,1,'2019-02-20 13:20:07'),(4092,1,'2019-02-20 13:25:06'),(4093,1,'2019-02-20 13:30:05'),(4094,1,'2019-02-20 13:35:06'),(4095,1,'2019-02-20 13:40:07'),(4096,1,'2019-02-20 13:45:07'),(4097,1,'2019-02-20 13:50:07'),(4098,1,'2019-02-20 13:55:06'),(4099,1,'2019-02-20 14:00:06'),(4100,1,'2019-02-20 14:05:06'),(4101,1,'2019-02-20 14:10:07'),(4102,1,'2019-02-20 14:15:07'),(4103,1,'2019-02-20 14:20:06'),(4104,1,'2019-02-20 14:25:07'),(4105,1,'2019-02-20 14:30:05'),(4106,1,'2019-02-20 14:35:07'),(4107,1,'2019-02-20 14:40:06'),(4108,1,'2019-02-20 14:45:05'),(4109,1,'2019-02-20 14:50:06'),(4110,1,'2019-02-20 14:55:07'),(4111,1,'2019-02-20 15:00:05'),(4112,1,'2019-02-20 15:05:07'),(4113,1,'2019-02-20 15:10:06'),(4114,1,'2019-02-20 15:15:06'),(4115,1,'2019-02-20 15:20:07'),(4116,1,'2019-02-20 15:25:06'),(4117,1,'2019-02-20 15:30:06'),(4118,1,'2019-02-20 15:35:07'),(4119,1,'2019-02-20 15:40:07'),(4120,1,'2019-02-20 15:45:06'),(4121,1,'2019-02-20 15:50:07'),(4122,1,'2019-02-20 15:55:07'),(4123,1,'2019-02-20 16:00:05'),(4124,1,'2019-02-20 16:05:06'),(4125,1,'2019-02-20 16:10:07'),(4126,1,'2019-02-20 16:15:07'),(4127,1,'2019-02-20 16:20:06'),(4128,1,'2019-02-20 16:25:07'),(4129,1,'2019-02-20 16:30:05'),(4130,1,'2019-02-20 16:35:07'),(4131,1,'2019-02-20 16:40:07'),(4132,1,'2019-02-20 16:45:06'),(4133,1,'2019-02-20 16:50:07'),(4134,1,'2019-02-20 16:55:06'),(4135,1,'2019-02-20 17:00:06'),(4136,1,'2019-02-20 17:05:06'),(4137,1,'2019-02-20 17:10:07'),(4138,1,'2019-02-20 17:15:07'),(4139,1,'2019-02-20 17:20:07'),(4140,1,'2019-02-20 17:25:06'),(4141,1,'2019-02-20 17:30:05'),(4142,1,'2019-02-20 17:35:06'),(4143,1,'2019-02-20 17:40:06'),(4144,1,'2019-02-20 17:45:06'),(4145,1,'2019-02-20 17:50:07'),(4146,1,'2019-02-20 17:55:07'),(4147,1,'2019-02-20 18:00:05'),(4148,1,'2019-02-20 18:05:06'),(4149,1,'2019-02-20 18:10:06'),(4150,1,'2019-02-20 18:15:06'),(4151,1,'2019-02-20 18:20:07'),(4152,1,'2019-02-20 18:25:06'),(4153,1,'2019-02-20 18:30:05'),(4154,1,'2019-02-20 18:35:07'),(4155,1,'2019-02-20 18:40:06'),(4156,1,'2019-02-20 18:45:07'),(4157,1,'2019-02-20 18:50:07'),(4158,1,'2019-02-20 18:55:06'),(4159,1,'2019-02-20 19:00:06'),(4160,1,'2019-02-20 19:05:06'),(4161,1,'2019-02-20 19:10:07'),(4162,1,'2019-02-20 19:15:07'),(4163,1,'2019-02-20 19:20:06'),(4164,1,'2019-02-20 19:25:07'),(4165,1,'2019-02-20 19:30:05'),(4166,1,'2019-02-20 19:35:07'),(4167,1,'2019-02-20 19:40:06'),(4168,1,'2019-02-20 19:45:07'),(4169,1,'2019-02-20 19:50:07'),(4170,1,'2019-02-20 19:55:07'),(4171,1,'2019-02-20 20:00:05'),(4172,1,'2019-02-20 20:05:06'),(4173,1,'2019-02-20 20:10:07'),(4174,1,'2019-02-20 20:15:07'),(4175,1,'2019-02-20 20:20:07'),(4176,1,'2019-02-20 20:25:06'),(4177,1,'2019-02-20 20:30:05'),(4178,1,'2019-02-20 20:35:06'),(4179,1,'2019-02-20 20:40:07'),(4180,1,'2019-02-20 20:45:06'),(4181,1,'2019-02-20 20:50:07'),(4182,1,'2019-02-20 20:55:07'),(4183,1,'2019-02-20 21:00:05'),(4184,1,'2019-02-20 21:05:06'),(4185,1,'2019-02-20 21:10:06'),(4186,1,'2019-02-20 21:15:07'),(4187,1,'2019-02-20 21:20:06'),(4188,1,'2019-02-20 21:25:07'),(4189,1,'2019-02-20 21:30:05'),(4190,1,'2019-02-20 21:35:07'),(4191,1,'2019-02-20 21:40:07'),(4192,1,'2019-02-20 21:45:06'),(4193,1,'2019-02-20 21:50:07'),(4194,1,'2019-02-20 21:55:07'),(4195,1,'2019-02-20 22:00:05'),(4196,1,'2019-02-20 22:05:07'),(4197,1,'2019-02-20 22:10:06'),(4198,1,'2019-02-20 22:15:06'),(4199,1,'2019-02-20 22:20:06'),(4200,1,'2019-02-20 22:25:07'),(4201,1,'2019-02-20 22:30:05'),(4202,1,'2019-02-20 22:35:06'),(4203,1,'2019-02-20 22:40:06'),(4204,1,'2019-02-20 22:45:07'),(4205,1,'2019-02-20 22:50:06'),(4206,1,'2019-02-20 22:55:07'),(4207,1,'2019-02-20 23:00:05'),(4208,1,'2019-02-20 23:05:07'),(4209,1,'2019-02-20 23:10:07'),(4210,1,'2019-02-20 23:15:07'),(4211,1,'2019-02-20 23:20:06'),(4212,1,'2019-02-20 23:25:07'),(4213,1,'2019-02-20 23:30:06'),(4214,1,'2019-02-20 23:35:07'),(4215,1,'2019-02-20 23:40:06'),(4216,1,'2019-02-20 23:45:07'),(4217,1,'2019-02-20 23:50:06'),(4218,1,'2019-02-20 23:55:07'),(4219,1,'2019-02-21 00:00:06'),(4220,1,'2019-02-21 00:05:07'),(4221,1,'2019-02-21 00:10:07'),(4222,1,'2019-02-21 00:15:07'),(4223,1,'2019-02-21 00:20:06'),(4224,1,'2019-02-21 00:25:07'),(4225,1,'2019-02-21 00:30:06'),(4226,1,'2019-02-21 00:35:06'),(4227,1,'2019-02-21 00:40:07'),(4228,1,'2019-02-21 00:45:07'),(4229,1,'2019-02-21 00:50:06'),(4230,1,'2019-02-21 00:55:07'),(4231,1,'2019-02-21 01:00:05'),(4232,1,'2019-02-21 01:05:06'),(4233,1,'2019-02-21 01:10:07'),(4234,1,'2019-02-21 01:15:07'),(4235,1,'2019-02-21 01:20:07'),(4236,1,'2019-02-21 01:25:06'),(4237,1,'2019-02-21 01:30:06'),(4238,1,'2019-02-21 01:35:07'),(4239,1,'2019-02-21 01:40:07'),(4240,1,'2019-02-21 01:45:07'),(4241,1,'2019-02-21 01:50:06'),(4242,1,'2019-02-21 01:55:06'),(4243,1,'2019-02-21 02:00:05'),(4244,1,'2019-02-21 02:05:07'),(4245,1,'2019-02-21 02:10:06'),(4246,1,'2019-02-21 02:15:07'),(4247,1,'2019-02-21 02:20:06'),(4248,1,'2019-02-21 02:25:07'),(4249,1,'2019-02-21 02:30:06'),(4250,1,'2019-02-21 02:35:06'),(4251,1,'2019-02-21 02:40:06'),(4252,1,'2019-02-21 02:45:06'),(4253,1,'2019-02-21 02:50:07'),(4254,1,'2019-02-21 02:55:06'),(4255,1,'2019-02-21 03:00:06'),(4256,1,'2019-02-21 03:05:07'),(4257,1,'2019-02-21 03:10:07'),(4258,1,'2019-02-21 03:15:06'),(4259,1,'2019-02-21 03:20:07'),(4260,1,'2019-02-21 03:25:06'),(4261,1,'2019-02-21 03:30:06'),(4262,1,'2019-02-21 03:35:06'),(4263,1,'2019-02-21 03:40:06'),(4264,1,'2019-02-21 03:45:07'),(4265,1,'2019-02-21 03:50:06'),(4266,1,'2019-02-21 03:55:06'),(4267,1,'2019-02-21 04:00:05'),(4268,1,'2019-02-21 04:05:07'),(4269,1,'2019-02-21 04:10:06'),(4270,1,'2019-02-21 04:15:07'),(4271,1,'2019-02-21 04:20:07'),(4272,1,'2019-02-21 04:25:07'),(4273,1,'2019-02-21 04:30:05'),(4274,1,'2019-02-21 04:35:07'),(4275,1,'2019-02-21 04:40:06'),(4276,1,'2019-02-21 04:45:07'),(4277,1,'2019-02-21 04:50:07'),(4278,1,'2019-02-21 04:55:07'),(4279,1,'2019-02-21 05:00:05'),(4280,1,'2019-02-21 05:05:07'),(4281,1,'2019-02-21 05:10:06'),(4282,1,'2019-02-21 05:15:07'),(4283,1,'2019-02-21 05:20:07'),(4284,1,'2019-02-21 05:25:06'),(4285,1,'2019-02-21 05:30:06'),(4286,1,'2019-02-21 05:35:07'),(4287,1,'2019-02-21 05:40:06'),(4288,1,'2019-02-21 05:45:07'),(4289,1,'2019-02-21 05:50:07'),(4290,1,'2019-02-21 05:55:06'),(4291,1,'2019-02-21 06:00:06'),(4292,1,'2019-02-21 06:05:07'),(4293,1,'2019-02-21 06:10:06'),(4294,1,'2019-02-21 06:15:07'),(4295,1,'2019-02-21 06:20:06'),(4296,1,'2019-02-21 06:25:06'),(4297,1,'2019-02-21 06:30:05'),(4298,1,'2019-02-21 06:35:07'),(4299,1,'2019-02-21 06:40:06'),(4300,1,'2019-02-21 06:45:07'),(4301,1,'2019-02-21 06:50:06'),(4302,1,'2019-02-21 06:55:06'),(4303,1,'2019-02-21 07:00:05'),(4304,1,'2019-02-21 07:05:07'),(4305,1,'2019-02-21 07:10:06'),(4306,1,'2019-02-21 07:15:07'),(4307,1,'2019-02-21 07:20:07'),(4308,1,'2019-02-21 07:25:07'),(4309,1,'2019-02-21 07:30:05'),(4310,1,'2019-02-21 07:35:07'),(4311,1,'2019-02-21 07:40:07'),(4312,1,'2019-02-21 07:45:06'),(4313,1,'2019-02-21 07:50:07'),(4314,1,'2019-02-21 07:55:06'),(4315,1,'2019-02-21 08:00:06'),(4316,1,'2019-02-21 08:05:07'),(4317,1,'2019-02-21 08:10:06'),(4318,1,'2019-02-21 08:15:07'),(4319,1,'2019-02-21 08:20:07'),(4320,1,'2019-02-21 08:25:06'),(4321,1,'2019-02-21 08:30:05'),(4322,1,'2019-02-21 08:35:07'),(4323,1,'2019-02-21 08:40:07'),(4324,1,'2019-02-21 08:45:06'),(4325,1,'2019-02-21 08:50:06'),(4326,1,'2019-02-21 08:55:07'),(4327,1,'2019-02-21 09:00:05'),(4328,1,'2019-02-21 09:05:06'),(4329,1,'2019-02-21 09:10:06'),(4330,1,'2019-02-21 09:15:07'),(4331,1,'2019-02-21 09:20:07'),(4332,1,'2019-02-21 09:25:07'),(4333,1,'2019-02-21 09:30:05'),(4334,1,'2019-02-21 09:35:07'),(4335,1,'2019-02-21 09:40:07'),(4336,1,'2019-02-21 09:45:07'),(4337,1,'2019-02-21 09:50:06'),(4338,1,'2019-02-21 09:55:06'),(4339,1,'2019-02-21 10:00:05'),(4340,1,'2019-02-21 10:05:07'),(4341,1,'2019-02-21 10:10:06'),(4342,1,'2019-02-21 10:15:06'),(4343,1,'2019-02-21 10:20:07'),(4344,1,'2019-02-21 10:25:07'),(4345,1,'2019-02-21 10:30:06'),(4346,1,'2019-02-21 10:35:07'),(4347,1,'2019-02-21 10:40:07'),(4348,1,'2019-02-21 10:45:07'),(4349,1,'2019-02-21 10:50:06'),(4350,1,'2019-02-21 10:55:07'),(4351,1,'2019-02-21 11:00:06'),(4352,1,'2019-02-21 11:05:07'),(4353,1,'2019-02-21 11:10:06'),(4354,1,'2019-02-21 11:15:07'),(4355,1,'2019-02-21 11:20:07'),(4356,1,'2019-02-21 11:25:06'),(4357,1,'2019-02-21 11:30:06'),(4358,1,'2019-02-21 11:35:06'),(4359,1,'2019-02-21 11:40:07'),(4360,1,'2019-02-21 11:45:07'),(4361,1,'2019-02-21 11:50:07'),(4362,1,'2019-02-21 11:55:06'),(4363,1,'2019-02-21 12:00:05'),(4364,1,'2019-02-21 12:05:06'),(4365,1,'2019-02-21 12:10:07'),(4366,1,'2019-02-21 12:15:06'),(4367,1,'2019-02-21 12:20:07'),(4368,1,'2019-02-21 12:25:07'),(4369,1,'2019-02-21 12:30:06'),(4370,1,'2019-02-21 12:35:06'),(4371,1,'2019-02-21 12:40:07'),(4372,1,'2019-02-21 12:45:07'),(4373,1,'2019-02-21 12:50:06'),(4374,1,'2019-02-21 12:55:07'),(4375,1,'2019-02-21 13:00:05'),(4376,1,'2019-02-21 13:05:07'),(4377,1,'2019-02-21 13:10:07'),(4378,1,'2019-02-21 13:15:06'),(4379,1,'2019-02-21 13:20:07'),(4380,1,'2019-02-21 13:25:06'),(4381,1,'2019-02-21 13:30:05'),(4382,1,'2019-02-21 13:35:07'),(4383,1,'2019-02-21 13:40:06'),(4384,1,'2019-02-21 13:45:07'),(4385,1,'2019-02-21 13:50:07'),(4386,1,'2019-02-21 13:55:06'),(4387,1,'2019-02-21 14:00:06'),(4388,1,'2019-02-21 14:05:07'),(4389,1,'2019-02-21 14:10:07'),(4390,1,'2019-02-21 14:15:06'),(4391,1,'2019-02-21 14:20:07'),(4392,1,'2019-02-21 14:25:06'),(4393,1,'2019-02-21 14:30:06'),(4394,1,'2019-02-21 14:35:06'),(4395,1,'2019-02-21 14:40:07'),(4396,1,'2019-02-21 14:45:07'),(4397,1,'2019-02-21 14:50:07'),(4398,1,'2019-02-21 14:55:06'),(4399,1,'2019-02-21 15:00:06'),(4400,1,'2019-02-21 15:05:07'),(4401,1,'2019-02-21 15:10:07'),(4402,1,'2019-02-21 15:15:06'),(4403,1,'2019-02-21 15:20:07'),(4404,1,'2019-02-21 15:25:06'),(4405,1,'2019-02-21 15:30:06'),(4406,1,'2019-02-21 15:35:06'),(4407,1,'2019-02-21 15:40:07'),(4408,1,'2019-02-21 15:45:06'),(4409,1,'2019-02-21 15:50:07'),(4410,1,'2019-02-21 15:55:07'),(4411,1,'2019-02-21 16:00:05'),(4412,1,'2019-02-21 16:05:07'),(4413,1,'2019-02-21 16:10:07'),(4414,1,'2019-02-21 16:15:06'),(4415,1,'2019-02-21 16:20:07'),(4416,1,'2019-02-21 16:25:07'),(4417,1,'2019-02-21 16:30:05'),(4418,1,'2019-02-21 16:35:06'),(4419,1,'2019-02-21 16:40:07'),(4420,1,'2019-02-21 16:45:07'),(4421,1,'2019-02-21 16:50:06'),(4422,1,'2019-02-21 16:55:07'),(4423,1,'2019-02-21 17:00:05'),(4424,1,'2019-02-21 17:05:06'),(4425,1,'2019-02-21 17:10:06'),(4426,1,'2019-02-21 17:15:06'),(4427,1,'2019-02-21 17:20:06'),(4428,1,'2019-02-21 17:25:07'),(4429,1,'2019-02-21 17:30:05'),(4430,1,'2019-02-21 17:35:06'),(4431,1,'2019-02-21 17:40:07'),(4432,1,'2019-02-21 17:45:06'),(4433,1,'2019-02-21 17:50:07'),(4434,1,'2019-02-21 17:55:06'),(4435,1,'2019-02-21 18:00:06'),(4436,1,'2019-02-21 18:05:07'),(4437,1,'2019-02-21 18:10:06'),(4438,1,'2019-02-21 18:15:07'),(4439,1,'2019-02-21 18:20:07'),(4440,1,'2019-02-21 18:25:07'),(4441,1,'2019-02-21 18:30:05'),(4442,1,'2019-02-21 18:35:07'),(4443,1,'2019-02-21 18:40:07'),(4444,1,'2019-02-21 18:45:06'),(4445,1,'2019-02-21 18:50:07'),(4446,1,'2019-02-21 18:55:07'),(4447,1,'2019-02-21 19:00:05'),(4448,1,'2019-02-21 19:05:07'),(4449,1,'2019-02-21 19:10:06'),(4450,1,'2019-02-21 19:15:07'),(4451,1,'2019-02-21 19:20:06'),(4452,1,'2019-02-21 19:25:06'),(4453,1,'2019-02-21 19:30:05'),(4454,1,'2019-02-21 19:35:07'),(4455,1,'2019-02-21 19:40:07'),(4456,1,'2019-02-21 19:45:06'),(4457,1,'2019-02-21 19:50:06'),(4458,1,'2019-02-21 19:55:07'),(4459,1,'2019-02-21 20:00:05'),(4460,1,'2019-02-21 20:05:06'),(4461,1,'2019-02-21 20:10:06'),(4462,1,'2019-02-21 20:15:07'),(4463,1,'2019-02-21 20:20:07'),(4464,1,'2019-02-21 20:25:06'),(4465,1,'2019-02-21 20:30:06'),(4466,1,'2019-02-21 20:35:06'),(4467,1,'2019-02-21 20:40:07'),(4468,1,'2019-02-21 20:45:07'),(4469,1,'2019-02-21 20:50:06'),(4470,1,'2019-02-21 20:55:07'),(4471,1,'2019-02-21 21:00:05'),(4472,1,'2019-02-21 21:05:07'),(4473,1,'2019-02-21 21:10:07'),(4474,1,'2019-02-21 21:15:07'),(4475,1,'2019-02-21 21:20:06'),(4476,1,'2019-02-21 21:25:07'),(4477,1,'2019-02-21 21:30:06'),(4478,1,'2019-02-21 21:35:06'),(4479,1,'2019-02-21 21:40:06'),(4480,1,'2019-02-21 21:45:07'),(4481,1,'2019-02-21 21:50:07'),(4482,1,'2019-02-21 21:55:06'),(4483,1,'2019-02-21 22:00:06'),(4484,1,'2019-02-21 22:05:07'),(4485,1,'2019-02-21 22:10:07'),(4486,1,'2019-02-21 22:15:06'),(4487,1,'2019-02-21 22:20:07'),(4488,1,'2019-02-21 22:25:07'),(4489,1,'2019-02-21 22:30:05'),(4490,1,'2019-02-21 22:35:07'),(4491,1,'2019-02-21 22:40:06'),(4492,1,'2019-02-21 22:45:07'),(4493,1,'2019-02-21 22:50:07'),(4494,1,'2019-02-21 22:55:07'),(4495,1,'2019-02-21 23:00:05'),(4496,1,'2019-02-21 23:05:06'),(4497,1,'2019-02-21 23:10:07'),(4498,1,'2019-02-21 23:15:07'),(4499,1,'2019-02-21 23:20:06'),(4500,1,'2019-02-21 23:25:07'),(4501,1,'2019-02-21 23:30:05'),(4502,1,'2019-02-21 23:35:07'),(4503,1,'2019-02-21 23:40:06'),(4504,1,'2019-02-21 23:45:06'),(4505,1,'2019-02-21 23:50:07'),(4506,1,'2019-02-21 23:55:06'),(4507,1,'2019-02-22 00:00:06'),(4508,1,'2019-02-22 00:05:06'),(4509,1,'2019-02-22 00:10:06'),(4510,1,'2019-02-22 00:15:06'),(4511,1,'2019-02-22 00:20:06'),(4512,1,'2019-02-22 00:25:06'),(4513,1,'2019-02-22 00:30:06'),(4514,1,'2019-02-22 00:35:07'),(4515,1,'2019-02-22 00:40:07'),(4516,1,'2019-02-22 00:45:06'),(4517,1,'2019-02-22 00:50:07'),(4518,1,'2019-02-22 00:55:07'),(4519,1,'2019-02-22 01:00:05'),(4520,1,'2019-02-22 01:05:06'),(4521,1,'2019-02-22 01:10:07'),(4522,1,'2019-02-22 01:15:07'),(4523,1,'2019-02-22 01:20:07'),(4524,1,'2019-02-22 01:25:07'),(4525,1,'2019-02-22 01:30:05'),(4526,1,'2019-02-22 01:35:07'),(4527,1,'2019-02-22 01:40:06'),(4528,1,'2019-02-22 01:45:07'),(4529,1,'2019-02-22 01:50:05'),(4530,1,'2019-02-22 01:55:07'),(4531,1,'2019-02-22 02:00:06'),(4532,1,'2019-02-22 02:05:07'),(4533,1,'2019-02-22 02:10:06'),(4534,1,'2019-02-22 02:15:06'),(4535,1,'2019-02-22 02:20:07'),(4536,1,'2019-02-22 02:25:06'),(4537,1,'2019-02-22 02:30:05'),(4538,1,'2019-02-22 02:35:06'),(4539,1,'2019-02-22 02:40:06'),(4540,1,'2019-02-22 02:45:07'),(4541,1,'2019-02-22 02:50:07'),(4542,1,'2019-02-22 02:55:07'),(4543,1,'2019-02-22 03:00:05'),(4544,1,'2019-02-22 03:05:07'),(4545,1,'2019-02-22 03:10:06'),(4546,1,'2019-02-22 03:15:07'),(4547,1,'2019-02-22 03:20:07'),(4548,1,'2019-02-22 03:25:06'),(4549,1,'2019-02-22 03:30:05'),(4550,1,'2019-02-22 03:35:07'),(4551,1,'2019-02-22 03:40:07'),(4552,1,'2019-02-22 03:45:06'),(4553,1,'2019-02-22 03:50:07'),(4554,1,'2019-02-22 03:55:06'),(4555,1,'2019-02-22 04:00:06'),(4556,1,'2019-02-22 04:05:06'),(4557,1,'2019-02-22 04:10:07'),(4558,1,'2019-02-22 04:15:07'),(4559,1,'2019-02-22 04:20:07'),(4560,1,'2019-02-22 04:25:06'),(4561,1,'2019-02-22 04:30:06'),(4562,1,'2019-02-22 04:35:06'),(4563,1,'2019-02-22 04:40:07'),(4564,1,'2019-02-22 04:45:07'),(4565,1,'2019-02-22 04:50:07'),(4566,1,'2019-02-22 04:55:06'),(4567,1,'2019-02-22 05:00:06'),(4568,1,'2019-02-22 05:05:06'),(4569,1,'2019-02-22 05:10:07'),(4570,1,'2019-02-22 05:15:07'),(4571,1,'2019-02-22 05:20:07'),(4572,1,'2019-02-22 05:25:06'),(4573,1,'2019-02-22 05:30:05'),(4574,1,'2019-02-22 05:35:06'),(4575,1,'2019-02-22 05:40:06'),(4576,1,'2019-02-22 05:45:07'),(4577,1,'2019-02-22 05:50:07'),(4578,1,'2019-02-22 05:55:06'),(4579,1,'2019-02-22 06:00:05'),(4580,1,'2019-02-22 06:05:06'),(4581,1,'2019-02-22 06:10:07'),(4582,1,'2019-02-22 06:15:07'),(4583,1,'2019-02-22 06:20:06'),(4584,1,'2019-02-22 06:25:05'),(4585,1,'2019-02-22 06:30:06'),(4586,1,'2019-02-22 06:35:06'),(4587,1,'2019-02-22 06:40:07'),(4588,1,'2019-02-22 06:45:06'),(4589,1,'2019-02-22 06:50:07'),(4590,1,'2019-02-22 06:55:07'),(4591,1,'2019-02-22 07:00:05'),(4592,1,'2019-02-22 07:05:07'),(4593,1,'2019-02-22 07:10:07'),(4594,1,'2019-02-22 07:15:07'),(4595,1,'2019-02-22 07:20:07'),(4596,1,'2019-02-22 07:25:06'),(4597,1,'2019-02-22 07:30:05'),(4598,1,'2019-02-22 07:35:07'),(4599,1,'2019-02-22 07:40:07'),(4600,1,'2019-02-22 07:45:06'),(4601,1,'2019-02-22 07:50:06'),(4602,1,'2019-02-22 07:55:07'),(4603,1,'2019-02-22 08:00:06'),(4604,1,'2019-02-22 08:05:07'),(4605,1,'2019-02-22 08:10:06'),(4606,1,'2019-02-22 08:15:07'),(4607,1,'2019-02-22 08:20:07'),(4608,1,'2019-02-22 08:25:07'),(4609,1,'2019-02-22 08:30:05'),(4610,1,'2019-02-22 08:35:07'),(4611,1,'2019-02-22 08:40:07'),(4612,1,'2019-02-22 08:45:06'),(4613,1,'2019-02-22 08:50:07'),(4614,1,'2019-02-22 08:55:07'),(4615,1,'2019-02-22 09:00:05'),(4616,1,'2019-02-22 09:05:07'),(4617,1,'2019-02-22 09:10:07'),(4618,1,'2019-02-22 09:15:06'),(4619,1,'2019-02-22 09:20:06'),(4620,1,'2019-02-22 09:25:07'),(4621,1,'2019-02-22 09:30:05'),(4622,1,'2019-02-22 09:35:07'),(4623,1,'2019-02-22 09:40:06'),(4624,1,'2019-02-22 09:45:07'),(4625,1,'2019-02-22 09:50:07'),(4626,1,'2019-02-22 09:55:07'),(4627,1,'2019-02-22 10:00:05'),(4628,1,'2019-02-22 10:05:06'),(4629,1,'2019-02-22 10:10:07'),(4630,1,'2019-02-22 10:15:07'),(4631,1,'2019-02-22 10:20:06'),(4632,1,'2019-02-22 10:25:07'),(4633,1,'2019-02-22 10:30:05'),(4634,1,'2019-02-22 10:35:07'),(4635,1,'2019-02-22 10:40:06'),(4636,1,'2019-02-22 10:45:07'),(4637,1,'2019-02-22 10:50:07'),(4638,1,'2019-02-22 10:55:06'),(4639,1,'2019-02-22 11:00:06'),(4640,1,'2019-02-22 11:05:06'),(4641,1,'2019-02-22 11:10:06'),(4642,1,'2019-02-22 11:15:06'),(4643,1,'2019-02-22 11:20:06'),(4644,1,'2019-02-22 11:25:06'),(4645,1,'2019-02-22 11:30:05'),(4646,1,'2019-02-22 11:35:07'),(4647,1,'2019-02-22 11:40:06'),(4648,1,'2019-02-22 11:45:06'),(4649,1,'2019-02-22 11:50:07'),(4650,1,'2019-02-22 11:55:06'),(4651,1,'2019-02-22 12:00:06'),(4652,1,'2019-02-22 12:05:07'),(4653,1,'2019-02-22 12:10:07'),(4654,1,'2019-02-22 12:15:07'),(4655,1,'2019-02-22 12:20:06'),(4656,1,'2019-02-22 12:25:07'),(4657,1,'2019-02-22 12:30:05'),(4658,1,'2019-02-22 12:35:06'),(4659,1,'2019-02-22 12:40:07'),(4660,1,'2019-02-22 12:45:07'),(4661,1,'2019-02-22 12:50:07'),(4662,1,'2019-02-22 12:55:06'),(4663,1,'2019-02-22 13:00:06'),(4664,1,'2019-02-22 13:05:07'),(4665,1,'2019-02-22 13:10:07'),(4666,1,'2019-02-22 13:15:06'),(4667,1,'2019-02-22 13:20:06'),(4668,1,'2019-02-22 13:25:07'),(4669,1,'2019-02-22 13:30:05'),(4670,1,'2019-02-22 13:35:06'),(4671,1,'2019-02-22 13:40:07'),(4672,1,'2019-02-22 13:45:07'),(4673,1,'2019-02-22 13:50:06'),(4674,1,'2019-02-22 13:55:07'),(4675,1,'2019-02-22 14:00:05'),(4676,1,'2019-02-22 14:05:07'),(4677,1,'2019-02-22 14:10:06'),(4678,1,'2019-02-22 14:15:07'),(4679,1,'2019-02-22 14:20:07'),(4680,1,'2019-02-22 14:25:07'),(4681,1,'2019-02-22 14:30:05'),(4682,1,'2019-02-22 14:35:07'),(4683,1,'2019-02-22 14:40:06'),(4684,1,'2019-02-22 14:45:07'),(4685,1,'2019-02-22 14:50:07'),(4686,1,'2019-02-22 14:55:06'),(4687,1,'2019-02-22 15:00:06'),(4688,1,'2019-02-22 15:05:06'),(4689,1,'2019-02-22 15:10:07'),(4690,1,'2019-02-22 15:15:06'),(4691,1,'2019-02-22 15:20:06'),(4692,1,'2019-02-22 15:25:06'),(4693,1,'2019-02-22 15:30:06'),(4694,1,'2019-02-22 15:35:06'),(4695,1,'2019-02-22 15:40:07'),(4696,1,'2019-02-22 15:45:06'),(4697,1,'2019-02-22 15:50:07'),(4698,1,'2019-02-22 15:55:06'),(4699,1,'2019-02-22 16:00:05'),(4700,1,'2019-02-22 16:05:07'),(4701,1,'2019-02-22 16:10:06'),(4702,1,'2019-02-22 16:15:07'),(4703,1,'2019-02-22 16:20:07'),(4704,1,'2019-02-22 16:25:07'),(4705,1,'2019-02-22 16:30:04'),(4706,1,'2019-02-22 16:35:07'),(4707,1,'2019-02-22 16:40:07'),(4708,1,'2019-02-22 16:45:07'),(4709,1,'2019-02-22 16:50:07'),(4710,1,'2019-02-22 16:55:06'),(4711,1,'2019-02-22 17:00:06'),(4712,1,'2019-02-22 17:05:07'),(4713,1,'2019-02-22 17:10:06'),(4714,1,'2019-02-22 17:15:07'),(4715,1,'2019-02-22 17:20:07'),(4716,1,'2019-02-22 17:25:06'),(4717,1,'2019-02-22 17:30:06'),(4718,1,'2019-02-22 17:35:07'),(4719,1,'2019-02-22 17:40:06'),(4720,1,'2019-02-22 17:45:07'),(4721,1,'2019-02-22 17:50:06'),(4722,1,'2019-02-22 17:55:07'),(4723,1,'2019-02-22 18:00:04'),(4724,1,'2019-02-22 18:05:07'),(4725,1,'2019-02-22 18:10:06'),(4726,1,'2019-02-22 18:15:07'),(4727,1,'2019-02-22 18:20:07'),(4728,1,'2019-02-22 18:25:07'),(4729,1,'2019-02-22 18:30:05'),(4730,1,'2019-02-22 18:35:07'),(4731,1,'2019-02-22 18:40:06'),(4732,1,'2019-02-22 18:45:06'),(4733,1,'2019-02-22 18:50:06'),(4734,1,'2019-02-22 18:55:07'),(4735,1,'2019-02-22 19:00:05'),(4736,1,'2019-02-22 19:05:07'),(4737,1,'2019-02-22 19:10:06'),(4738,1,'2019-02-22 19:15:07'),(4739,1,'2019-02-22 19:20:07'),(4740,1,'2019-02-22 19:25:07'),(4741,1,'2019-02-22 19:30:05'),(4742,1,'2019-02-22 19:35:07'),(4743,1,'2019-02-22 19:40:06'),(4744,1,'2019-02-22 19:45:07'),(4745,1,'2019-02-22 19:50:06'),(4746,1,'2019-02-22 19:55:07'),(4747,1,'2019-02-22 20:00:05'),(4748,1,'2019-02-22 20:05:07'),(4749,1,'2019-02-22 20:10:06'),(4750,1,'2019-02-22 20:15:06'),(4751,1,'2019-02-22 20:20:07'),(4752,1,'2019-02-22 20:25:07'),(4753,1,'2019-02-22 20:30:05'),(4754,1,'2019-02-22 20:35:07'),(4755,1,'2019-02-22 20:40:06'),(4756,1,'2019-02-22 20:45:06'),(4757,1,'2019-02-22 20:50:07'),(4758,1,'2019-02-22 20:55:07'),(4759,1,'2019-02-22 21:00:05'),(4760,1,'2019-02-22 21:05:06'),(4761,1,'2019-02-22 21:10:07'),(4762,1,'2019-02-22 21:15:07'),(4763,1,'2019-02-22 21:20:06'),(4764,1,'2019-02-22 21:25:06'),(4765,1,'2019-02-22 21:30:06'),(4766,1,'2019-02-22 21:35:06'),(4767,1,'2019-02-22 21:40:07'),(4768,1,'2019-02-22 21:45:06'),(4769,1,'2019-02-22 21:50:07'),(4770,1,'2019-02-22 21:55:07'),(4771,1,'2019-02-22 22:00:05'),(4772,1,'2019-02-22 22:05:06'),(4773,1,'2019-02-22 22:10:07'),(4774,1,'2019-02-22 22:15:06'),(4775,1,'2019-02-22 22:20:07'),(4776,1,'2019-02-22 22:25:07'),(4777,1,'2019-02-22 22:30:05'),(4778,1,'2019-02-22 22:35:06'),(4779,1,'2019-02-22 22:40:07'),(4780,1,'2019-02-22 22:45:06'),(4781,1,'2019-02-22 22:50:06'),(4782,1,'2019-02-22 22:55:07'),(4783,1,'2019-02-22 23:00:06'),(4784,1,'2019-02-22 23:05:07'),(4785,1,'2019-02-22 23:10:06'),(4786,1,'2019-02-22 23:15:06'),(4787,1,'2019-02-22 23:20:07'),(4788,1,'2019-02-22 23:25:07'),(4789,1,'2019-02-22 23:30:05'),(4790,1,'2019-02-22 23:35:07'),(4791,1,'2019-02-22 23:40:07'),(4792,1,'2019-02-22 23:45:07'),(4793,1,'2019-02-22 23:50:06'),(4794,1,'2019-02-22 23:55:07'),(4795,1,'2019-02-23 00:00:05'),(4796,1,'2019-02-23 00:05:06'),(4797,1,'2019-02-23 00:10:07'),(4798,1,'2019-02-23 00:15:07'),(4799,1,'2019-02-23 00:20:07'),(4800,1,'2019-02-23 00:25:06'),(4801,1,'2019-02-23 00:30:05'),(4802,1,'2019-02-23 00:35:06'),(4803,1,'2019-02-23 00:40:07'),(4804,1,'2019-02-23 00:45:07'),(4805,1,'2019-02-23 00:50:06'),(4806,1,'2019-02-23 00:55:07'),(4807,1,'2019-02-23 01:00:05'),(4808,1,'2019-02-23 01:05:06'),(4809,1,'2019-02-23 01:10:05'),(4810,1,'2019-02-23 01:15:07'),(4811,1,'2019-02-23 01:20:07'),(4812,1,'2019-02-23 01:25:07'),(4813,1,'2019-02-23 01:30:05'),(4814,1,'2019-02-23 01:35:06'),(4815,1,'2019-02-23 01:40:07'),(4816,1,'2019-02-23 01:45:07'),(4817,1,'2019-02-23 01:50:07'),(4818,1,'2019-02-23 01:55:06'),(4819,1,'2019-02-23 02:00:05'),(4820,1,'2019-02-23 02:05:07'),(4821,1,'2019-02-23 02:10:06'),(4822,1,'2019-02-23 02:15:06'),(4823,1,'2019-02-23 02:20:07'),(4824,1,'2019-02-23 02:25:07'),(4825,1,'2019-02-23 02:30:05'),(4826,1,'2019-02-23 02:35:06'),(4827,1,'2019-02-23 02:40:07'),(4828,1,'2019-02-23 02:45:07'),(4829,1,'2019-02-23 02:50:06'),(4830,1,'2019-02-23 02:55:07'),(4831,1,'2019-02-23 03:00:06'),(4832,1,'2019-02-23 03:05:07'),(4833,1,'2019-02-23 03:10:07'),(4834,1,'2019-02-23 03:15:06'),(4835,1,'2019-02-23 03:20:07'),(4836,1,'2019-02-23 03:25:06'),(4837,1,'2019-02-23 03:30:06'),(4838,1,'2019-02-23 03:35:06'),(4839,1,'2019-02-23 03:40:05'),(4840,1,'2019-02-23 03:45:07'),(4841,1,'2019-02-23 03:50:07'),(4842,1,'2019-02-23 03:55:07'),(4843,1,'2019-02-23 04:00:05'),(4844,1,'2019-02-23 04:05:06'),(4845,1,'2019-02-23 04:10:07'),(4846,1,'2019-02-23 04:15:07'),(4847,1,'2019-02-23 04:20:07'),(4848,1,'2019-02-23 04:25:06'),(4849,1,'2019-02-23 04:30:06'),(4850,1,'2019-02-23 04:35:06'),(4851,1,'2019-02-23 04:40:07'),(4852,1,'2019-02-23 04:45:06'),(4853,1,'2019-02-23 04:50:07'),(4854,1,'2019-02-23 04:55:06'),(4855,1,'2019-02-23 05:00:06'),(4856,1,'2019-02-23 05:05:06'),(4857,1,'2019-02-23 05:10:07'),(4858,1,'2019-02-23 05:15:07'),(4859,1,'2019-02-23 05:20:06'),(4860,1,'2019-02-23 05:25:07'),(4861,1,'2019-02-23 05:30:05'),(4862,1,'2019-02-23 05:35:07'),(4863,1,'2019-02-23 05:40:06'),(4864,1,'2019-02-23 05:45:07'),(4865,1,'2019-02-23 05:50:07'),(4866,1,'2019-02-23 05:55:06'),(4867,1,'2019-02-23 06:00:06'),(4868,1,'2019-02-23 06:05:06'),(4869,1,'2019-02-23 06:10:07'),(4870,1,'2019-02-23 06:15:06'),(4871,1,'2019-02-23 06:20:06'),(4872,1,'2019-02-23 06:25:06'),(4873,1,'2019-02-23 06:30:05'),(4874,1,'2019-02-23 06:35:06'),(4875,1,'2019-02-23 06:40:07'),(4876,1,'2019-02-23 06:45:07'),(4877,1,'2019-02-23 06:50:07'),(4878,1,'2019-02-23 06:55:06'),(4879,1,'2019-02-23 07:00:05'),(4880,1,'2019-02-23 07:05:06'),(4881,1,'2019-02-23 07:10:06'),(4882,1,'2019-02-23 07:15:07'),(4883,1,'2019-02-23 07:20:07'),(4884,1,'2019-02-23 07:25:07'),(4885,1,'2019-02-23 07:30:05'),(4886,1,'2019-02-23 07:35:07'),(4887,1,'2019-02-23 07:40:07'),(4888,1,'2019-02-23 07:45:06'),(4889,1,'2019-02-23 07:50:07'),(4890,1,'2019-02-23 07:55:07'),(4891,1,'2019-02-23 08:00:05'),(4892,1,'2019-02-23 08:05:07'),(4893,1,'2019-02-23 08:10:06'),(4894,1,'2019-02-23 08:15:07'),(4895,1,'2019-02-23 08:20:07'),(4896,1,'2019-02-23 08:25:07'),(4897,1,'2019-02-23 08:30:05'),(4898,1,'2019-02-23 08:35:07'),(4899,1,'2019-02-23 08:40:07'),(4900,1,'2019-02-23 08:45:07'),(4901,1,'2019-02-23 08:50:06'),(4902,1,'2019-02-23 08:55:07'),(4903,1,'2019-02-23 09:00:05'),(4904,1,'2019-02-23 09:05:06'),(4905,1,'2019-02-23 09:10:06'),(4906,1,'2019-02-23 09:15:07'),(4907,1,'2019-02-23 09:20:06'),(4908,1,'2019-02-23 09:25:06'),(4909,1,'2019-02-23 09:30:06'),(4910,1,'2019-02-23 09:35:07'),(4911,1,'2019-02-23 09:40:07'),(4912,1,'2019-02-23 09:45:06'),(4913,1,'2019-02-23 09:50:07'),(4914,1,'2019-02-23 09:55:06'),(4915,1,'2019-02-23 10:00:06'),(4916,1,'2019-02-23 10:05:06'),(4917,1,'2019-02-23 10:10:06'),(4918,1,'2019-02-23 10:15:06'),(4919,1,'2019-02-23 10:20:06'),(4920,1,'2019-02-23 10:25:07'),(4921,1,'2019-02-23 10:30:06'),(4922,1,'2019-02-23 10:35:07'),(4923,1,'2019-02-23 10:40:07'),(4924,1,'2019-02-23 10:45:06'),(4925,1,'2019-02-23 10:50:07'),(4926,1,'2019-02-23 10:55:07'),(4927,1,'2019-02-23 11:00:05'),(4928,1,'2019-02-23 11:05:07'),(4929,1,'2019-02-23 11:10:07'),(4930,1,'2019-02-23 11:15:06'),(4931,1,'2019-02-23 11:20:06'),(4932,1,'2019-02-23 11:25:07'),(4933,1,'2019-02-23 11:30:06'),(4934,1,'2019-02-23 11:35:07'),(4935,1,'2019-02-23 11:40:06'),(4936,1,'2019-02-23 11:45:06'),(4937,1,'2019-02-23 11:50:07'),(4938,1,'2019-02-23 11:55:07'),(4939,1,'2019-02-23 12:00:05'),(4940,1,'2019-02-23 12:05:06'),(4941,1,'2019-02-23 12:10:07'),(4942,1,'2019-02-23 12:15:07'),(4943,1,'2019-02-23 12:20:07'),(4944,1,'2019-02-23 12:25:06'),(4945,1,'2019-02-23 12:30:06'),(4946,1,'2019-02-23 12:35:07'),(4947,1,'2019-02-23 12:40:07'),(4948,1,'2019-02-23 12:45:06'),(4949,1,'2019-02-23 12:50:07'),(4950,1,'2019-02-23 12:55:07'),(4951,1,'2019-02-23 13:00:05'),(4952,1,'2019-02-23 13:05:06'),(4953,1,'2019-02-23 13:10:07'),(4954,1,'2019-02-23 13:15:06'),(4955,1,'2019-02-23 13:20:06'),(4956,1,'2019-02-23 13:25:07'),(4957,1,'2019-02-23 13:30:06'),(4958,1,'2019-02-23 13:35:07'),(4959,1,'2019-02-23 13:40:07'),(4960,1,'2019-02-23 13:45:06'),(4961,1,'2019-02-23 13:50:06'),(4962,1,'2019-02-23 13:55:07'),(4963,1,'2019-02-23 14:00:05'),(4964,1,'2019-02-23 14:05:06'),(4965,1,'2019-02-23 14:10:06'),(4966,1,'2019-02-23 14:15:07'),(4967,1,'2019-02-23 14:20:06'),(4968,1,'2019-02-23 14:25:06'),(4969,1,'2019-02-23 14:30:05'),(4970,1,'2019-02-23 14:35:06'),(4971,1,'2019-02-23 14:40:06'),(4972,1,'2019-02-23 14:45:07'),(4973,1,'2019-02-23 14:50:07'),(4974,1,'2019-02-23 14:55:07'),(4975,1,'2019-02-23 15:00:05'),(4976,1,'2019-02-23 15:05:07'),(4977,1,'2019-02-23 15:10:06'),(4978,1,'2019-02-23 15:15:07'),(4979,1,'2019-02-23 15:20:07'),(4980,1,'2019-02-23 15:25:07'),(4981,1,'2019-02-23 15:30:05'),(4982,1,'2019-02-23 15:35:07'),(4983,1,'2019-02-23 15:40:07'),(4984,1,'2019-02-23 15:45:06'),(4985,1,'2019-02-23 15:50:07'),(4986,1,'2019-02-23 15:55:07'),(4987,1,'2019-02-23 16:00:05'),(4988,1,'2019-02-23 16:05:06'),(4989,1,'2019-02-23 16:10:07'),(4990,1,'2019-02-23 16:15:07'),(4991,1,'2019-02-23 16:20:07'),(4992,1,'2019-02-23 16:25:06'),(4993,1,'2019-02-23 16:30:06'),(4994,1,'2019-02-23 16:35:07'),(4995,1,'2019-02-23 16:40:07'),(4996,1,'2019-02-23 16:45:06'),(4997,1,'2019-02-23 16:50:07'),(4998,1,'2019-02-23 16:55:06'),(4999,1,'2019-02-23 17:00:06'),(5000,1,'2019-02-23 17:05:06'),(5001,1,'2019-02-23 17:10:07'),(5002,1,'2019-02-23 17:15:06'),(5003,1,'2019-02-23 17:20:07'),(5004,1,'2019-02-23 17:25:06'),(5005,1,'2019-02-23 17:30:06'),(5006,1,'2019-02-23 17:35:07'),(5007,1,'2019-02-23 17:40:06'),(5008,1,'2019-02-23 17:45:07'),(5009,1,'2019-02-23 17:50:07'),(5010,1,'2019-02-23 17:55:07'),(5011,1,'2019-02-23 18:00:05'),(5012,1,'2019-02-23 18:05:07'),(5013,1,'2019-02-23 18:10:06'),(5014,1,'2019-02-23 18:15:07'),(5015,1,'2019-02-23 18:20:06'),(5016,1,'2019-02-23 18:25:07'),(5017,1,'2019-02-23 18:30:05'),(5018,1,'2019-02-23 18:35:07'),(5019,1,'2019-02-23 18:40:07'),(5020,1,'2019-02-23 18:45:05'),(5021,1,'2019-02-23 18:50:07'),(5022,1,'2019-02-23 18:55:06'),(5023,1,'2019-02-23 19:00:06'),(5024,1,'2019-02-23 19:05:06'),(5025,1,'2019-02-23 19:10:07'),(5026,1,'2019-02-23 19:15:06'),(5027,1,'2019-02-23 19:20:07'),(5028,1,'2019-02-23 19:25:06'),(5029,1,'2019-02-23 19:30:06'),(5030,1,'2019-02-23 19:35:06'),(5031,1,'2019-02-23 19:40:07'),(5032,1,'2019-02-23 19:45:07'),(5033,1,'2019-02-23 19:50:07'),(5034,1,'2019-02-23 19:55:06'),(5035,1,'2019-02-23 20:00:06'),(5036,1,'2019-02-23 20:05:06'),(5037,1,'2019-02-23 20:10:07'),(5038,1,'2019-02-23 20:15:06'),(5039,1,'2019-02-23 20:20:06'),(5040,1,'2019-02-23 20:25:07'),(5041,1,'2019-02-23 20:30:05'),(5042,1,'2019-02-23 20:35:06'),(5043,1,'2019-02-23 20:40:07'),(5044,1,'2019-02-23 20:45:07'),(5045,1,'2019-02-23 20:50:07'),(5046,1,'2019-02-23 20:55:06'),(5047,1,'2019-02-23 21:00:05'),(5048,1,'2019-02-23 21:05:06'),(5049,1,'2019-02-23 21:10:06'),(5050,1,'2019-02-23 21:15:07'),(5051,1,'2019-02-23 21:20:06'),(5052,1,'2019-02-23 21:25:07'),(5053,1,'2019-02-23 21:30:06'),(5054,1,'2019-02-23 21:35:06'),(5055,1,'2019-02-23 21:40:07'),(5056,1,'2019-02-23 21:45:07'),(5057,1,'2019-02-23 21:50:07'),(5058,1,'2019-02-23 21:55:06'),(5059,1,'2019-02-23 22:00:05'),(5060,1,'2019-02-23 22:05:07'),(5061,1,'2019-02-23 22:10:06'),(5062,1,'2019-02-23 22:15:07'),(5063,1,'2019-02-23 22:20:06'),(5064,1,'2019-02-23 22:25:07'),(5065,1,'2019-02-23 22:30:05'),(5066,1,'2019-02-23 22:35:07'),(5067,1,'2019-02-23 22:40:06'),(5068,1,'2019-02-23 22:45:06'),(5069,1,'2019-02-23 22:50:06'),(5070,1,'2019-02-23 22:55:07'),(5071,1,'2019-02-23 23:00:05'),(5072,1,'2019-02-23 23:05:07'),(5073,1,'2019-02-23 23:10:06'),(5074,1,'2019-02-23 23:15:06'),(5075,1,'2019-02-23 23:20:07'),(5076,1,'2019-02-23 23:25:07'),(5077,1,'2019-02-23 23:30:05'),(5078,1,'2019-02-23 23:35:07'),(5079,1,'2019-02-23 23:40:07'),(5080,1,'2019-02-23 23:45:06'),(5081,1,'2019-02-23 23:50:07'),(5082,1,'2019-02-23 23:55:06'),(5083,1,'2019-02-24 00:00:05'),(5084,1,'2019-02-24 00:05:06'),(5085,1,'2019-02-24 00:10:06'),(5086,1,'2019-02-24 00:15:07'),(5087,1,'2019-02-24 00:20:07'),(5088,1,'2019-02-24 00:25:07'),(5089,1,'2019-02-24 00:30:05'),(5090,1,'2019-02-24 00:35:07'),(5091,1,'2019-02-24 00:40:06'),(5092,1,'2019-02-24 00:45:07'),(5093,1,'2019-02-24 00:50:06'),(5094,1,'2019-02-24 00:55:07'),(5095,1,'2019-02-24 01:00:05'),(5096,1,'2019-02-24 01:05:07'),(5097,1,'2019-02-24 01:10:06'),(5098,1,'2019-02-24 01:15:07'),(5099,1,'2019-02-24 01:20:07'),(5100,1,'2019-02-24 01:25:06'),(5101,1,'2019-02-24 01:30:05'),(5102,1,'2019-02-24 01:35:07'),(5103,1,'2019-02-24 01:40:07'),(5104,1,'2019-02-24 01:45:06'),(5105,1,'2019-02-24 01:50:07'),(5106,1,'2019-02-24 01:55:06'),(5107,1,'2019-02-24 02:00:05'),(5108,1,'2019-02-24 02:05:06'),(5109,1,'2019-02-24 02:10:07'),(5110,1,'2019-02-24 02:15:07'),(5111,1,'2019-02-24 02:20:06'),(5112,1,'2019-02-24 02:25:07'),(5113,1,'2019-02-24 02:30:05'),(5114,1,'2019-02-24 02:35:06'),(5115,1,'2019-02-24 02:40:06'),(5116,1,'2019-02-24 02:45:06'),(5117,1,'2019-02-24 02:50:07'),(5118,1,'2019-02-24 02:55:07'),(5119,1,'2019-02-24 03:00:05'),(5120,1,'2019-02-24 03:05:07'),(5121,1,'2019-02-24 03:10:06'),(5122,1,'2019-02-24 03:15:06'),(5123,1,'2019-02-24 03:20:07'),(5124,1,'2019-02-24 03:25:07'),(5125,1,'2019-02-24 03:30:05'),(5126,1,'2019-02-24 03:35:07'),(5127,1,'2019-02-24 03:40:07'),(5128,1,'2019-02-24 03:45:07'),(5129,1,'2019-02-24 03:50:06'),(5130,1,'2019-02-24 03:55:07'),(5131,1,'2019-02-24 04:00:05'),(5132,1,'2019-02-24 04:05:06'),(5133,1,'2019-02-24 04:10:06'),(5134,1,'2019-02-24 04:15:06'),(5135,1,'2019-02-24 04:20:07'),(5136,1,'2019-02-24 04:25:06'),(5137,1,'2019-02-24 04:30:06'),(5138,1,'2019-02-24 04:35:06'),(5139,1,'2019-02-24 04:40:07'),(5140,1,'2019-02-24 04:45:06'),(5141,1,'2019-02-24 04:50:06'),(5142,1,'2019-02-24 04:55:07'),(5143,1,'2019-02-24 05:00:05'),(5144,1,'2019-02-24 05:05:07'),(5145,1,'2019-02-24 05:10:06'),(5146,1,'2019-02-24 05:15:07'),(5147,1,'2019-02-24 05:20:07'),(5148,1,'2019-02-24 05:25:07'),(5149,1,'2019-02-24 05:30:05'),(5150,1,'2019-02-24 05:35:06'),(5151,1,'2019-02-24 05:40:07'),(5152,1,'2019-02-24 05:45:07'),(5153,1,'2019-02-24 05:50:06'),(5154,1,'2019-02-24 05:55:07'),(5155,1,'2019-02-24 06:00:05'),(5156,1,'2019-02-24 06:05:07'),(5157,1,'2019-02-24 06:10:06'),(5158,1,'2019-02-24 06:15:07'),(5159,1,'2019-02-24 06:20:07'),(5160,1,'2019-02-24 06:25:05'),(5161,1,'2019-02-24 06:30:05'),(5162,1,'2019-02-24 06:35:07'),(5163,1,'2019-02-24 06:40:05'),(5164,1,'2019-02-24 06:45:07'),(5165,1,'2019-02-24 06:50:06'),(5166,1,'2019-02-24 06:55:06'),(5167,1,'2019-02-24 07:00:05'),(5168,1,'2019-02-24 07:05:07'),(5169,1,'2019-02-24 07:10:06'),(5170,1,'2019-02-24 07:15:06'),(5171,1,'2019-02-24 07:20:06'),(5172,1,'2019-02-24 07:25:07'),(5173,1,'2019-02-24 07:30:05'),(5174,1,'2019-02-24 07:35:07'),(5175,1,'2019-02-24 07:40:07'),(5176,1,'2019-02-24 07:45:06'),(5177,1,'2019-02-24 07:50:07'),(5178,1,'2019-02-24 07:55:07'),(5179,1,'2019-02-24 08:00:05'),(5180,1,'2019-02-24 08:05:06'),(5181,1,'2019-02-24 08:10:06'),(5182,1,'2019-02-24 08:15:07'),(5183,1,'2019-02-24 08:20:07'),(5184,1,'2019-02-24 08:25:06'),(5185,1,'2019-02-24 08:30:05'),(5186,1,'2019-02-24 08:35:07'),(5187,1,'2019-02-24 08:40:07'),(5188,1,'2019-02-24 08:45:06'),(5189,1,'2019-02-24 08:50:07'),(5190,1,'2019-02-24 08:55:06'),(5191,1,'2019-02-24 09:00:06'),(5192,1,'2019-02-24 09:05:07'),(5193,1,'2019-02-24 09:10:06'),(5194,1,'2019-02-24 09:15:07'),(5195,1,'2019-02-24 09:20:06'),(5196,1,'2019-02-24 09:25:07'),(5197,1,'2019-02-24 09:30:05'),(5198,1,'2019-02-24 09:35:07'),(5199,1,'2019-02-24 09:40:06'),(5200,1,'2019-02-24 09:45:07'),(5201,1,'2019-02-24 09:50:07'),(5202,1,'2019-02-24 09:55:07'),(5203,1,'2019-02-24 10:00:05'),(5204,1,'2019-02-24 10:05:07'),(5205,1,'2019-02-24 10:10:06'),(5206,1,'2019-02-24 10:15:07'),(5207,1,'2019-02-24 10:20:07'),(5208,1,'2019-02-24 10:25:07'),(5209,1,'2019-02-24 10:30:05'),(5210,1,'2019-02-24 10:35:07'),(5211,1,'2019-02-24 10:40:07'),(5212,1,'2019-02-24 10:45:07'),(5213,1,'2019-02-24 10:50:06'),(5214,1,'2019-02-24 10:55:07'),(5215,1,'2019-02-24 11:00:06'),(5216,1,'2019-02-24 11:05:06'),(5217,1,'2019-02-24 11:10:07'),(5218,1,'2019-02-24 11:15:06'),(5219,1,'2019-02-24 11:20:06'),(5220,1,'2019-02-24 11:25:07'),(5221,1,'2019-02-24 11:30:06'),(5222,1,'2019-02-24 11:35:07'),(5223,1,'2019-02-24 11:40:06'),(5224,1,'2019-02-24 11:45:07'),(5225,1,'2019-02-24 11:50:07'),(5226,1,'2019-02-24 11:55:07'),(5227,1,'2019-02-24 12:00:05'),(5228,1,'2019-02-24 12:05:07'),(5229,1,'2019-02-24 12:10:07'),(5230,1,'2019-02-24 12:15:07'),(5231,1,'2019-02-24 12:20:07'),(5232,1,'2019-02-24 12:25:06'),(5233,1,'2019-02-24 12:30:06'),(5234,1,'2019-02-24 12:35:07'),(5235,1,'2019-02-24 12:40:07'),(5236,1,'2019-02-24 12:45:06'),(5237,1,'2019-02-24 12:50:07'),(5238,1,'2019-02-24 12:55:06'),(5239,1,'2019-02-24 13:00:06'),(5240,1,'2019-02-24 13:05:06'),(5241,1,'2019-02-24 13:10:07'),(5242,1,'2019-02-24 13:15:07'),(5243,1,'2019-02-24 13:20:07'),(5244,1,'2019-02-24 13:25:06'),(5245,1,'2019-02-24 13:30:06'),(5246,1,'2019-02-24 13:35:07'),(5247,1,'2019-02-24 13:40:06'),(5248,1,'2019-02-24 13:45:05'),(5249,1,'2019-02-24 13:50:07'),(5250,1,'2019-02-24 13:55:07'),(5251,1,'2019-02-24 14:00:05'),(5252,1,'2019-02-24 14:05:07'),(5253,1,'2019-02-24 14:10:07'),(5254,1,'2019-02-24 14:15:06'),(5255,1,'2019-02-24 14:20:07'),(5256,1,'2019-02-24 14:25:07'),(5257,1,'2019-02-24 14:30:05'),(5258,1,'2019-02-24 14:35:06'),(5259,1,'2019-02-24 14:40:06'),(5260,1,'2019-02-24 14:45:07'),(5261,1,'2019-02-24 14:50:07'),(5262,1,'2019-02-24 14:55:06'),(5263,1,'2019-02-24 15:00:06'),(5264,1,'2019-02-24 15:05:06'),(5265,1,'2019-02-24 15:10:07'),(5266,1,'2019-02-24 15:15:06'),(5267,1,'2019-02-24 15:20:07'),(5268,1,'2019-02-24 15:25:07'),(5269,1,'2019-02-24 15:30:05'),(5270,1,'2019-02-24 15:35:06'),(5271,1,'2019-02-24 15:40:07'),(5272,1,'2019-02-24 15:45:07'),(5273,1,'2019-02-24 15:50:07'),(5274,1,'2019-02-24 15:55:06'),(5275,1,'2019-02-24 16:00:06'),(5276,1,'2019-02-24 16:05:06'),(5277,1,'2019-02-24 16:10:07'),(5278,1,'2019-02-24 16:15:07'),(5279,1,'2019-02-24 16:20:07'),(5280,1,'2019-02-24 16:25:06'),(5281,1,'2019-02-24 16:30:05'),(5282,1,'2019-02-24 16:35:07'),(5283,1,'2019-02-24 16:40:07'),(5284,1,'2019-02-24 16:45:06'),(5285,1,'2019-02-24 16:50:07'),(5286,1,'2019-02-24 16:55:06'),(5287,1,'2019-02-24 17:00:05'),(5288,1,'2019-02-24 17:05:07'),(5289,1,'2019-02-24 17:10:07'),(5290,1,'2019-02-24 17:15:06'),(5291,1,'2019-02-24 17:20:07'),(5292,1,'2019-02-24 17:25:06'),(5293,1,'2019-02-24 17:30:06'),(5294,1,'2019-02-24 17:35:06'),(5295,1,'2019-02-24 17:40:07'),(5296,1,'2019-02-24 17:45:06'),(5297,1,'2019-02-24 17:50:07'),(5298,1,'2019-02-24 17:55:07'),(5299,1,'2019-02-24 18:00:05'),(5300,1,'2019-02-24 18:05:06'),(5301,1,'2019-02-24 18:10:07'),(5302,1,'2019-02-24 18:15:07'),(5303,1,'2019-02-24 18:20:07'),(5304,1,'2019-02-24 18:25:07'),(5305,1,'2019-02-24 18:30:05'),(5306,1,'2019-02-24 18:35:06'),(5307,1,'2019-02-24 18:40:07'),(5308,1,'2019-02-24 18:45:06'),(5309,1,'2019-02-24 18:50:07'),(5310,1,'2019-02-24 18:55:07'),(5311,1,'2019-02-24 19:00:05'),(5312,1,'2019-02-24 19:05:06'),(5313,1,'2019-02-24 19:10:06'),(5314,1,'2019-02-24 19:15:06'),(5315,1,'2019-02-24 19:20:06'),(5316,1,'2019-02-24 19:25:07'),(5317,1,'2019-02-24 19:30:06'),(5318,1,'2019-02-24 19:35:07'),(5319,1,'2019-02-24 19:40:07'),(5320,1,'2019-02-24 19:45:07'),(5321,1,'2019-02-24 19:50:06'),(5322,1,'2019-02-24 19:55:07'),(5323,1,'2019-02-24 20:00:05'),(5324,1,'2019-02-24 20:05:07'),(5325,1,'2019-02-24 20:10:07'),(5326,1,'2019-02-24 20:15:07'),(5327,1,'2019-02-24 20:20:06'),(5328,1,'2019-02-24 20:25:07'),(5329,1,'2019-02-24 20:30:06'),(5330,1,'2019-02-24 20:35:07'),(5331,1,'2019-02-24 20:40:07'),(5332,1,'2019-02-24 20:45:06'),(5333,1,'2019-02-24 20:50:07'),(5334,1,'2019-02-24 20:55:06'),(5335,1,'2019-02-24 21:00:06'),(5336,1,'2019-02-24 21:05:06'),(5337,1,'2019-02-24 21:10:07'),(5338,1,'2019-02-24 21:15:06'),(5339,1,'2019-02-24 21:20:06'),(5340,1,'2019-02-24 21:25:07'),(5341,1,'2019-02-24 21:30:06'),(5342,1,'2019-02-24 21:35:07'),(5343,1,'2019-02-24 21:40:07'),(5344,1,'2019-02-24 21:45:06'),(5345,1,'2019-02-24 21:50:07'),(5346,1,'2019-02-24 21:55:06'),(5347,1,'2019-02-24 22:00:06'),(5348,1,'2019-02-24 22:05:07'),(5349,1,'2019-02-24 22:10:06'),(5350,1,'2019-02-24 22:15:07'),(5351,1,'2019-02-24 22:20:06'),(5352,1,'2019-02-24 22:25:07'),(5353,1,'2019-02-24 22:30:06'),(5354,1,'2019-02-24 22:35:07'),(5355,1,'2019-02-24 22:40:06'),(5356,1,'2019-02-24 22:45:07'),(5357,1,'2019-02-24 22:50:07'),(5358,1,'2019-02-24 22:55:07'),(5359,1,'2019-02-24 23:00:05'),(5360,1,'2019-02-24 23:05:06'),(5361,1,'2019-02-24 23:10:07'),(5362,1,'2019-02-24 23:15:06'),(5363,1,'2019-02-24 23:20:07'),(5364,1,'2019-02-24 23:25:07'),(5365,1,'2019-02-24 23:30:05'),(5366,1,'2019-02-24 23:35:06'),(5367,1,'2019-02-24 23:40:07'),(5368,1,'2019-02-24 23:45:06'),(5369,1,'2019-02-24 23:50:07'),(5370,1,'2019-02-24 23:55:06'),(5371,1,'2019-02-25 00:00:06'),(5372,1,'2019-02-25 00:05:07'),(5373,1,'2019-02-25 00:10:07'),(5374,1,'2019-02-25 00:15:06'),(5375,1,'2019-02-25 00:20:07'),(5376,1,'2019-02-25 00:25:06'),(5377,1,'2019-02-25 00:30:05'),(5378,1,'2019-02-25 00:35:07'),(5379,1,'2019-02-25 00:40:07'),(5380,1,'2019-02-25 00:45:06'),(5381,1,'2019-02-25 00:50:07'),(5382,1,'2019-02-25 00:55:07'),(5383,1,'2019-02-25 01:00:05'),(5384,1,'2019-02-25 01:05:06'),(5385,1,'2019-02-25 01:10:07'),(5386,1,'2019-02-25 01:15:07'),(5387,1,'2019-02-25 01:20:06'),(5388,1,'2019-02-25 01:25:07'),(5389,1,'2019-02-25 01:30:05'),(5390,1,'2019-02-25 01:35:07'),(5391,1,'2019-02-25 01:40:06'),(5392,1,'2019-02-25 01:45:06'),(5393,1,'2019-02-25 01:50:06'),(5394,1,'2019-02-25 01:55:07'),(5395,1,'2019-02-25 02:00:06'),(5396,1,'2019-02-25 02:05:07'),(5397,1,'2019-02-25 02:10:06'),(5398,1,'2019-02-25 02:15:07'),(5399,1,'2019-02-25 02:20:07'),(5400,1,'2019-02-25 02:25:07'),(5401,1,'2019-02-25 02:30:05'),(5402,1,'2019-02-25 02:35:07'),(5403,1,'2019-02-25 02:40:06'),(5404,1,'2019-02-25 02:45:07'),(5405,1,'2019-02-25 02:50:07'),(5406,1,'2019-02-25 02:55:06'),(5407,1,'2019-02-25 03:00:05'),(5408,1,'2019-02-25 03:05:07'),(5409,1,'2019-02-25 03:10:07'),(5410,1,'2019-02-25 03:15:07'),(5411,1,'2019-02-25 03:20:05'),(5412,1,'2019-02-25 03:25:07'),(5413,1,'2019-02-25 03:30:06'),(5414,1,'2019-02-25 03:35:07'),(5415,1,'2019-02-25 03:40:07'),(5416,1,'2019-02-25 03:45:06'),(5417,1,'2019-02-25 03:50:07'),(5418,1,'2019-02-25 03:55:07'),(5419,1,'2019-02-25 04:00:05'),(5420,1,'2019-02-25 04:05:06'),(5421,1,'2019-02-25 04:10:07'),(5422,1,'2019-02-25 04:15:06'),(5423,1,'2019-02-25 04:20:07'),(5424,1,'2019-02-25 04:25:06'),(5425,1,'2019-02-25 04:30:06'),(5426,1,'2019-02-25 04:35:06'),(5427,1,'2019-02-25 04:40:07'),(5428,1,'2019-02-25 04:45:06'),(5429,1,'2019-02-25 04:50:07'),(5430,1,'2019-02-25 04:55:06'),(5431,1,'2019-02-25 05:00:06'),(5432,1,'2019-02-25 05:05:06'),(5433,1,'2019-02-25 05:10:07'),(5434,1,'2019-02-25 05:15:07'),(5435,1,'2019-02-25 05:20:06'),(5436,1,'2019-02-25 05:25:06'),(5437,1,'2019-02-25 05:30:05'),(5438,1,'2019-02-25 05:35:07'),(5439,1,'2019-02-25 05:40:07'),(5440,1,'2019-02-25 05:45:07'),(5441,1,'2019-02-25 05:50:06'),(5442,1,'2019-02-25 05:55:07'),(5443,1,'2019-02-25 06:00:06'),(5444,1,'2019-02-25 06:05:06'),(5445,1,'2019-02-25 06:10:06'),(5446,1,'2019-02-25 06:15:07'),(5447,1,'2019-02-25 06:20:06'),(5448,1,'2019-02-25 06:25:06'),(5449,1,'2019-02-25 06:30:05'),(5450,1,'2019-02-25 06:35:07'),(5451,1,'2019-02-25 06:40:06'),(5452,1,'2019-02-25 06:45:07'),(5453,1,'2019-02-25 06:50:07'),(5454,1,'2019-02-25 06:55:07'),(5455,1,'2019-02-25 07:00:05'),(5456,1,'2019-02-25 07:05:07'),(5457,1,'2019-02-25 07:10:07'),(5458,1,'2019-02-25 07:15:07'),(5459,1,'2019-02-25 07:20:06'),(5460,1,'2019-02-25 07:25:06'),(5461,1,'2019-02-25 07:30:05'),(5462,1,'2019-02-25 07:35:07'),(5463,1,'2019-02-25 07:40:07'),(5464,1,'2019-02-25 07:45:07'),(5465,1,'2019-02-25 07:50:06'),(5466,1,'2019-02-25 07:55:07'),(5467,1,'2019-02-25 08:00:05'),(5468,1,'2019-02-25 08:05:07'),(5469,1,'2019-02-25 08:10:07'),(5470,1,'2019-02-25 08:15:06'),(5471,1,'2019-02-25 08:20:06'),(5472,1,'2019-02-25 08:25:07'),(5473,1,'2019-02-25 08:30:05'),(5474,1,'2019-02-25 08:35:07'),(5475,1,'2019-02-25 08:40:07'),(5476,1,'2019-02-25 08:45:06'),(5477,1,'2019-02-25 08:50:07'),(5478,1,'2019-02-25 08:55:06'),(5479,1,'2019-02-25 09:00:06'),(5480,1,'2019-02-25 09:05:07'),(5481,1,'2019-02-25 09:10:06'),(5482,1,'2019-02-25 09:15:07'),(5483,1,'2019-02-25 09:20:07'),(5484,1,'2019-02-25 09:25:07'),(5485,1,'2019-02-25 09:30:05'),(5486,1,'2019-02-25 09:35:06'),(5487,1,'2019-02-25 09:40:07'),(5488,1,'2019-02-25 09:45:06'),(5489,1,'2019-02-25 09:50:07'),(5490,1,'2019-02-25 09:55:07'),(5491,1,'2019-02-25 10:00:05'),(5492,1,'2019-02-25 10:05:07'),(5493,1,'2019-02-25 10:10:07'),(5494,1,'2019-02-25 10:15:07'),(5495,1,'2019-02-25 10:20:06'),(5496,1,'2019-02-25 10:25:07'),(5497,1,'2019-02-25 10:30:06'),(5498,1,'2019-02-25 10:35:06'),(5499,1,'2019-02-25 10:40:07'),(5500,1,'2019-02-25 10:45:07'),(5501,1,'2019-02-25 10:50:07'),(5502,1,'2019-02-25 10:55:06'),(5503,1,'2019-02-25 11:00:06'),(5504,1,'2019-02-25 11:05:06'),(5505,1,'2019-02-25 11:10:06'),(5506,1,'2019-02-25 11:15:06'),(5507,1,'2019-02-25 11:20:06'),(5508,1,'2019-02-25 11:25:06'),(5509,1,'2019-02-25 11:30:05'),(5510,1,'2019-02-25 11:35:06'),(5511,1,'2019-02-25 11:40:06'),(5512,1,'2019-02-25 11:45:07'),(5513,1,'2019-02-25 11:50:07'),(5514,1,'2019-02-25 11:55:06'),(5515,1,'2019-02-25 12:00:06'),(5516,1,'2019-02-25 12:05:07'),(5517,1,'2019-02-25 12:10:06'),(5518,1,'2019-02-25 12:15:06'),(5519,1,'2019-02-25 12:20:07'),(5520,1,'2019-02-25 12:25:06'),(5521,1,'2019-02-25 12:30:06'),(5522,1,'2019-02-25 12:35:06'),(5523,1,'2019-02-25 12:40:07'),(5524,1,'2019-02-25 12:45:06'),(5525,1,'2019-02-25 12:50:06'),(5526,1,'2019-02-25 12:55:07'),(5527,1,'2019-02-25 13:00:05'),(5528,1,'2019-02-25 13:05:07'),(5529,1,'2019-02-25 13:10:06'),(5530,1,'2019-02-25 13:15:06'),(5531,1,'2019-02-25 13:20:06'),(5532,1,'2019-02-25 13:25:07'),(5533,1,'2019-02-25 13:30:05'),(5534,1,'2019-02-25 13:35:07'),(5535,1,'2019-02-25 13:40:06'),(5536,1,'2019-02-25 13:45:07'),(5537,1,'2019-02-25 13:50:06'),(5538,1,'2019-02-25 13:55:07'),(5539,1,'2019-02-25 14:00:06'),(5540,1,'2019-02-25 14:05:07'),(5541,1,'2019-02-25 14:10:07'),(5542,1,'2019-02-25 14:15:06'),(5543,1,'2019-02-25 14:20:07'),(5544,1,'2019-02-25 14:25:07'),(5545,1,'2019-02-25 14:30:05'),(5546,1,'2019-02-25 14:35:06'),(5547,1,'2019-02-25 14:40:07'),(5548,1,'2019-02-25 14:45:06'),(5549,1,'2019-02-25 14:50:07'),(5550,1,'2019-02-25 14:55:06'),(5551,1,'2019-02-25 15:00:06'),(5552,1,'2019-02-25 15:05:07'),(5553,1,'2019-02-25 15:10:07'),(5554,1,'2019-02-25 15:15:06'),(5555,1,'2019-02-25 15:20:07'),(5556,1,'2019-02-25 15:25:06'),(5557,1,'2019-02-25 15:30:06'),(5558,1,'2019-02-25 15:35:06'),(5559,1,'2019-02-25 15:40:07'),(5560,1,'2019-02-25 15:45:07'),(5561,1,'2019-02-25 15:50:07'),(5562,1,'2019-02-25 15:55:06'),(5563,1,'2019-02-25 16:00:06'),(5564,1,'2019-02-25 16:05:06'),(5565,1,'2019-02-25 16:10:07'),(5566,1,'2019-02-25 16:15:06'),(5567,1,'2019-02-25 16:20:06'),(5568,1,'2019-02-25 16:25:07'),(5569,1,'2019-02-25 16:30:05'),(5570,1,'2019-02-25 16:35:07'),(5571,1,'2019-02-25 16:40:06'),(5572,1,'2019-02-25 16:45:06'),(5573,1,'2019-02-25 16:50:06'),(5574,1,'2019-02-25 16:55:06'),(5575,1,'2019-02-25 17:00:05'),(5576,1,'2019-02-25 17:05:07'),(5577,1,'2019-02-25 17:10:06'),(5578,1,'2019-02-25 17:15:07'),(5579,1,'2019-02-25 17:20:06'),(5580,1,'2019-02-25 17:25:07'),(5581,1,'2019-02-25 17:30:06'),(5582,1,'2019-02-25 17:35:06'),(5583,1,'2019-02-25 17:40:06'),(5584,1,'2019-02-25 17:45:06'),(5585,1,'2019-02-25 17:50:07'),(5586,1,'2019-02-25 17:55:07'),(5587,1,'2019-02-25 18:00:05'),(5588,1,'2019-02-25 18:05:07'),(5589,1,'2019-02-25 18:10:07'),(5590,1,'2019-02-25 18:15:06'),(5591,1,'2019-02-25 18:20:07'),(5592,1,'2019-02-25 18:25:06'),(5593,1,'2019-02-25 18:30:04'),(5594,1,'2019-02-25 18:35:07'),(5595,1,'2019-02-25 18:40:07'),(5596,1,'2019-02-25 18:45:07'),(5597,1,'2019-02-25 18:50:06'),(5598,1,'2019-02-25 18:55:07'),(5599,1,'2019-02-25 19:00:06'),(5600,1,'2019-02-25 19:05:06'),(5601,1,'2019-02-25 19:10:07'),(5602,1,'2019-02-25 19:15:06'),(5603,1,'2019-02-25 19:20:06'),(5604,1,'2019-02-25 19:25:06'),(5605,1,'2019-02-25 19:30:06'),(5606,1,'2019-02-25 19:35:06'),(5607,1,'2019-02-25 19:40:07'),(5608,1,'2019-02-25 19:45:07'),(5609,1,'2019-02-25 19:50:07'),(5610,1,'2019-02-25 19:55:07'),(5611,1,'2019-02-25 20:00:05'),(5612,1,'2019-02-25 20:05:06'),(5613,1,'2019-02-25 20:10:06'),(5614,1,'2019-02-25 20:15:06'),(5615,1,'2019-02-25 20:20:06'),(5616,1,'2019-02-25 20:25:07'),(5617,1,'2019-02-25 20:30:05'),(5618,1,'2019-02-25 20:35:07'),(5619,1,'2019-02-25 20:40:07'),(5620,1,'2019-02-25 20:45:07'),(5621,1,'2019-02-25 20:50:06'),(5622,1,'2019-02-25 20:55:07'),(5623,1,'2019-02-25 21:00:05'),(5624,1,'2019-02-25 21:05:07'),(5625,1,'2019-02-25 21:10:06'),(5626,1,'2019-02-25 21:15:07'),(5627,1,'2019-02-25 21:20:07'),(5628,1,'2019-02-25 21:25:06'),(5629,1,'2019-02-25 21:30:06'),(5630,1,'2019-02-25 21:35:06'),(5631,1,'2019-02-25 21:40:07'),(5632,1,'2019-02-25 21:45:07'),(5633,1,'2019-02-25 21:50:06'),(5634,1,'2019-02-25 21:55:07'),(5635,1,'2019-02-25 22:00:05'),(5636,1,'2019-02-25 22:05:06'),(5637,1,'2019-02-25 22:10:07'),(5638,1,'2019-02-25 22:15:06'),(5639,1,'2019-02-25 22:20:06'),(5640,1,'2019-02-25 22:25:06'),(5641,1,'2019-02-25 22:30:06'),(5642,1,'2019-02-25 22:35:07'),(5643,1,'2019-02-25 22:40:07'),(5644,1,'2019-02-25 22:45:06'),(5645,1,'2019-02-25 22:50:07'),(5646,1,'2019-02-25 22:55:06'),(5647,1,'2019-02-25 23:00:06'),(5648,1,'2019-02-25 23:05:06'),(5649,1,'2019-02-25 23:10:07'),(5650,1,'2019-02-25 23:15:07'),(5651,1,'2019-02-25 23:20:07'),(5652,1,'2019-02-25 23:25:06'),(5653,1,'2019-02-25 23:30:06'),(5654,1,'2019-02-25 23:35:07'),(5655,1,'2019-02-25 23:40:07'),(5656,1,'2019-02-25 23:45:07'),(5657,1,'2019-02-25 23:50:06'),(5658,1,'2019-02-25 23:55:06'),(5659,1,'2019-02-26 00:00:05'),(5660,1,'2019-02-26 00:05:07'),(5661,1,'2019-02-26 00:10:06'),(5662,1,'2019-02-26 00:15:07'),(5663,1,'2019-02-26 00:20:06'),(5664,1,'2019-02-26 00:25:07'),(5665,1,'2019-02-26 00:30:06'),(5666,1,'2019-02-26 00:35:07'),(5667,1,'2019-02-26 00:40:07'),(5668,1,'2019-02-26 00:45:07'),(5669,1,'2019-02-26 00:50:06'),(5670,1,'2019-02-26 00:55:07'),(5671,1,'2019-02-26 01:00:06'),(5672,1,'2019-02-26 01:05:06'),(5673,1,'2019-02-26 01:10:07'),(5674,1,'2019-02-26 01:15:06'),(5675,1,'2019-02-26 01:20:06'),(5676,1,'2019-02-26 01:25:06'),(5677,1,'2019-02-26 01:30:06'),(5678,1,'2019-02-26 01:35:06'),(5679,1,'2019-02-26 01:40:06'),(5680,1,'2019-02-26 01:45:07'),(5681,1,'2019-02-26 01:50:06'),(5682,1,'2019-02-26 01:55:07'),(5683,1,'2019-02-26 02:00:05'),(5684,1,'2019-02-26 02:05:07'),(5685,1,'2019-02-26 02:10:07'),(5686,1,'2019-02-26 02:15:06'),(5687,1,'2019-02-26 02:20:06'),(5688,1,'2019-02-26 02:25:06'),(5689,1,'2019-02-26 02:30:05'),(5690,1,'2019-02-26 02:35:07'),(5691,1,'2019-02-26 02:40:06'),(5692,1,'2019-02-26 02:45:07'),(5693,1,'2019-02-26 02:50:07'),(5694,1,'2019-02-26 02:55:06'),(5695,1,'2019-02-26 03:00:06'),(5696,1,'2019-02-26 03:05:06'),(5697,1,'2019-02-26 03:10:07'),(5698,1,'2019-02-26 03:15:06'),(5699,1,'2019-02-26 03:20:07'),(5700,1,'2019-02-26 03:25:06'),(5701,1,'2019-02-26 03:30:06'),(5702,1,'2019-02-26 03:35:07'),(5703,1,'2019-02-26 03:40:07'),(5704,1,'2019-02-26 03:45:07'),(5705,1,'2019-02-26 03:50:06'),(5706,1,'2019-02-26 03:55:07'),(5707,1,'2019-02-26 04:00:06'),(5708,1,'2019-02-26 04:05:06'),(5709,1,'2019-02-26 04:10:07'),(5710,1,'2019-02-26 04:15:07'),(5711,1,'2019-02-26 04:20:06'),(5712,1,'2019-02-26 04:25:07'),(5713,1,'2019-02-26 04:30:06'),(5714,1,'2019-02-26 04:35:06'),(5715,1,'2019-02-26 04:40:06'),(5716,1,'2019-02-26 04:45:07'),(5717,1,'2019-02-26 04:50:06'),(5718,1,'2019-02-26 04:55:07'),(5719,1,'2019-02-26 05:00:06'),(5720,1,'2019-02-26 05:05:07'),(5721,1,'2019-02-26 05:10:06'),(5722,1,'2019-02-26 05:15:07'),(5723,1,'2019-02-26 05:20:06'),(5724,1,'2019-02-26 05:25:07'),(5725,1,'2019-02-26 05:30:06'),(5726,1,'2019-02-26 05:35:07'),(5727,1,'2019-02-26 05:40:06'),(5728,1,'2019-02-26 05:45:07'),(5729,1,'2019-02-26 05:50:07'),(5730,1,'2019-02-26 05:55:06'),(5731,1,'2019-02-26 06:00:06'),(5732,1,'2019-02-26 06:05:06'),(5733,1,'2019-02-26 06:10:07'),(5734,1,'2019-02-26 06:15:07'),(5735,1,'2019-02-26 06:20:07'),(5736,1,'2019-02-26 06:25:05'),(5737,1,'2019-02-26 06:30:05'),(5738,1,'2019-02-26 06:35:07'),(5739,1,'2019-02-26 06:40:07'),(5740,1,'2019-02-26 06:45:07'),(5741,1,'2019-02-26 06:50:06'),(5742,1,'2019-02-26 06:55:06'),(5743,1,'2019-02-26 07:00:05'),(5744,1,'2019-02-26 07:05:06'),(5745,1,'2019-02-26 07:10:06'),(5746,1,'2019-02-26 07:15:07'),(5747,1,'2019-02-26 07:20:06'),(5748,1,'2019-02-26 07:25:06'),(5749,1,'2019-02-26 07:30:06'),(5750,1,'2019-02-26 07:35:07'),(5751,1,'2019-02-26 07:40:07'),(5752,1,'2019-02-26 07:45:06'),(5753,1,'2019-02-26 07:50:07'),(5754,1,'2019-02-26 07:55:07'),(5755,1,'2019-02-26 08:00:05'),(5756,1,'2019-02-26 08:05:06'),(5757,1,'2019-02-26 08:10:07'),(5758,1,'2019-02-26 08:15:07'),(5759,1,'2019-02-26 08:20:06'),(5760,1,'2019-02-26 08:25:06'),(5761,1,'2019-02-26 08:30:06'),(5762,1,'2019-02-26 08:35:06'),(5763,1,'2019-02-26 08:40:07'),(5764,1,'2019-02-26 08:45:06'),(5765,1,'2019-02-26 08:50:07'),(5766,1,'2019-02-26 08:55:07'),(5767,1,'2019-02-26 09:00:05'),(5768,1,'2019-02-26 09:05:06'),(5769,1,'2019-02-26 09:10:06'),(5770,1,'2019-02-26 09:15:07'),(5771,1,'2019-02-26 09:20:06'),(5772,1,'2019-02-26 09:25:07'),(5773,1,'2019-02-26 09:30:06'),(5774,1,'2019-02-26 09:35:07'),(5775,1,'2019-02-26 09:40:06'),(5776,1,'2019-02-26 09:45:07'),(5777,1,'2019-02-26 09:50:06'),(5778,1,'2019-02-26 09:55:07'),(5779,1,'2019-02-26 10:00:05'),(5780,1,'2019-02-26 10:05:07'),(5781,1,'2019-02-26 10:10:06'),(5782,1,'2019-02-26 10:15:07'),(5783,1,'2019-02-26 10:20:06'),(5784,1,'2019-02-26 10:25:07'),(5785,1,'2019-02-26 10:30:05'),(5786,1,'2019-02-26 10:35:06'),(5787,1,'2019-02-26 10:40:07'),(5788,1,'2019-02-26 10:45:06'),(5789,1,'2019-02-26 10:50:07'),(5790,1,'2019-02-26 10:55:06'),(5791,1,'2019-02-26 11:00:05'),(5792,1,'2019-02-26 11:05:07'),(5793,1,'2019-02-26 11:10:07'),(5794,1,'2019-02-26 11:15:06'),(5795,1,'2019-02-26 11:20:07'),(5796,1,'2019-02-26 11:25:07'),(5797,1,'2019-02-26 11:30:05'),(5798,1,'2019-02-26 11:35:07'),(5799,1,'2019-02-26 11:40:07'),(5800,1,'2019-02-26 11:45:06'),(5801,1,'2019-02-26 11:50:07'),(5802,1,'2019-02-26 11:55:06'),(5803,1,'2019-02-26 12:00:05'),(5804,1,'2019-02-26 12:05:07'),(5805,1,'2019-02-26 12:10:06'),(5806,1,'2019-02-26 12:15:07'),(5807,1,'2019-02-26 12:20:06'),(5808,1,'2019-02-26 12:25:06'),(5809,1,'2019-02-26 12:30:06'),(5810,1,'2019-02-26 12:35:06'),(5811,1,'2019-02-26 12:40:07'),(5812,1,'2019-02-26 12:45:07'),(5813,1,'2019-02-26 12:50:06'),(5814,1,'2019-02-26 12:55:07'),(5815,1,'2019-02-26 13:00:05'),(5816,1,'2019-02-26 13:05:07'),(5817,1,'2019-02-26 13:10:06'),(5818,1,'2019-02-26 13:15:07'),(5819,1,'2019-02-26 13:20:07'),(5820,1,'2019-02-26 13:25:07'),(5821,1,'2019-02-26 13:30:05'),(5822,1,'2019-02-26 13:35:07'),(5823,1,'2019-02-26 13:40:06'),(5824,1,'2019-02-26 13:45:07'),(5825,1,'2019-02-26 13:50:06'),(5826,1,'2019-02-26 13:55:07'),(5827,1,'2019-02-26 14:00:06'),(5828,1,'2019-02-26 14:05:07'),(5829,1,'2019-02-26 14:10:07'),(5830,1,'2019-02-26 14:15:07'),(5831,1,'2019-02-26 14:20:06'),(5832,1,'2019-02-26 14:25:07'),(5833,1,'2019-02-26 14:30:06'),(5834,1,'2019-02-26 14:35:07'),(5835,1,'2019-02-26 14:40:06'),(5836,1,'2019-02-26 14:45:07'),(5837,1,'2019-02-26 14:50:06'),(5838,1,'2019-02-26 14:55:06'),(5839,1,'2019-02-26 15:00:06'),(5840,1,'2019-02-26 15:05:07'),(5841,1,'2019-02-26 15:10:06'),(5842,1,'2019-02-26 15:15:07'),(5843,1,'2019-02-26 15:20:07'),(5844,1,'2019-02-26 15:25:06'),(5845,1,'2019-02-26 15:30:06'),(5846,1,'2019-02-26 15:35:07'),(5847,1,'2019-02-26 15:40:06'),(5848,1,'2019-02-26 15:45:06'),(5849,1,'2019-02-26 15:50:07'),(5850,1,'2019-02-26 15:55:07'),(5851,1,'2019-02-26 16:00:05'),(5852,1,'2019-02-26 16:05:07'),(5853,1,'2019-02-26 16:10:07'),(5854,1,'2019-02-26 16:15:07'),(5855,1,'2019-02-26 16:20:06'),(5856,1,'2019-02-26 16:25:07'),(5857,1,'2019-02-26 16:30:05'),(5858,1,'2019-02-26 16:35:07'),(5859,1,'2019-02-26 16:40:06'),(5860,1,'2019-02-26 16:45:07'),(5861,1,'2019-02-26 16:50:07'),(5862,1,'2019-02-26 16:55:07'),(5863,1,'2019-02-26 17:00:05'),(5864,1,'2019-02-26 17:05:07'),(5865,1,'2019-02-26 17:10:06'),(5866,1,'2019-02-26 17:15:07'),(5867,1,'2019-02-26 17:20:06'),(5868,1,'2019-02-26 17:25:07'),(5869,1,'2019-02-26 17:30:05'),(5870,1,'2019-02-26 17:35:07'),(5871,1,'2019-02-26 17:40:06'),(5872,1,'2019-02-26 17:45:07'),(5873,1,'2019-02-26 17:50:06'),(5874,1,'2019-02-26 17:55:07'),(5875,1,'2019-02-26 18:00:05'),(5876,1,'2019-02-26 18:05:07'),(5877,1,'2019-02-26 18:10:06'),(5878,1,'2019-02-26 18:15:06'),(5879,1,'2019-02-26 18:20:07'),(5880,1,'2019-02-26 18:25:06'),(5881,1,'2019-02-26 18:30:06'),(5882,1,'2019-02-26 18:35:06'),(5883,1,'2019-02-26 18:40:07'),(5884,1,'2019-02-26 18:45:06'),(5885,1,'2019-02-26 18:50:07'),(5886,1,'2019-02-26 18:55:07'),(5887,1,'2019-02-26 19:00:05'),(5888,1,'2019-02-26 19:05:07'),(5889,1,'2019-02-26 19:10:06'),(5890,1,'2019-02-26 19:15:06'),(5891,1,'2019-02-26 19:20:07'),(5892,1,'2019-02-26 19:25:06'),(5893,1,'2019-02-26 19:30:06'),(5894,1,'2019-02-26 19:35:06'),(5895,1,'2019-02-26 19:40:07'),(5896,1,'2019-02-26 19:45:06'),(5897,1,'2019-02-26 19:50:07'),(5898,1,'2019-02-26 19:55:07'),(5899,1,'2019-02-26 20:00:05'),(5900,1,'2019-02-26 20:05:07'),(5901,1,'2019-02-26 20:10:06'),(5902,1,'2019-02-26 20:15:07'),(5903,1,'2019-02-26 20:20:06'),(5904,1,'2019-02-26 20:25:06'),(5905,1,'2019-02-26 20:30:06'),(5906,1,'2019-02-26 20:35:07'),(5907,1,'2019-02-26 20:40:06'),(5908,1,'2019-02-26 20:45:07'),(5909,1,'2019-02-26 20:50:06'),(5910,1,'2019-02-26 20:55:07'),(5911,1,'2019-02-26 21:00:05'),(5912,1,'2019-02-26 21:05:07'),(5913,1,'2019-02-26 21:10:07'),(5914,1,'2019-02-26 21:15:06'),(5915,1,'2019-02-26 21:20:07'),(5916,1,'2019-02-26 21:25:06'),(5917,1,'2019-02-26 21:30:05'),(5918,1,'2019-02-26 21:35:07'),(5919,1,'2019-02-26 21:40:07'),(5920,1,'2019-02-26 21:45:06'),(5921,1,'2019-02-26 21:50:07'),(5922,1,'2019-02-26 21:55:06'),(5923,1,'2019-02-26 22:00:06'),(5924,1,'2019-02-26 22:05:07'),(5925,1,'2019-02-26 22:10:07'),(5926,1,'2019-02-26 22:15:07'),(5927,1,'2019-02-26 22:20:06'),(5928,1,'2019-02-26 22:25:07'),(5929,1,'2019-02-26 22:30:05'),(5930,1,'2019-02-26 22:35:07'),(5931,1,'2019-02-26 22:40:07'),(5932,1,'2019-02-26 22:45:07'),(5933,1,'2019-02-26 22:50:06'),(5934,1,'2019-02-26 22:55:06'),(5935,1,'2019-02-26 23:00:06'),(5936,1,'2019-02-26 23:05:06'),(5937,1,'2019-02-26 23:10:07'),(5938,1,'2019-02-26 23:15:07'),(5939,1,'2019-02-26 23:20:07'),(5940,1,'2019-02-26 23:25:06'),(5941,1,'2019-02-26 23:30:06'),(5942,1,'2019-02-26 23:35:06'),(5943,1,'2019-02-26 23:40:07'),(5944,1,'2019-02-26 23:45:07'),(5945,1,'2019-02-26 23:50:07'),(5946,1,'2019-02-26 23:55:06'),(5947,1,'2019-02-27 00:00:05'),(5948,1,'2019-02-27 00:05:06'),(5949,1,'2019-02-27 00:10:06'),(5950,1,'2019-02-27 00:15:07'),(5951,1,'2019-02-27 00:20:07'),(5952,1,'2019-02-27 00:25:06'),(5953,1,'2019-02-27 00:30:05'),(5954,1,'2019-02-27 00:35:06'),(5955,1,'2019-02-27 00:40:07'),(5956,1,'2019-02-27 00:45:07'),(5957,1,'2019-02-27 00:50:07'),(5958,1,'2019-02-27 00:55:06'),(5959,1,'2019-02-27 01:00:05'),(5960,1,'2019-02-27 01:05:07'),(5961,1,'2019-02-27 01:10:07'),(5962,1,'2019-02-27 01:15:06'),(5963,1,'2019-02-27 01:20:07'),(5964,1,'2019-02-27 01:25:06'),(5965,1,'2019-02-27 01:30:06'),(5966,1,'2019-02-27 01:35:06'),(5967,1,'2019-02-27 01:40:06'),(5968,1,'2019-02-27 01:45:07'),(5969,1,'2019-02-27 01:50:07'),(5970,1,'2019-02-27 01:55:06'),(5971,1,'2019-02-27 02:00:06'),(5972,1,'2019-02-27 02:05:06'),(5973,1,'2019-02-27 02:10:07'),(5974,1,'2019-02-27 02:15:06'),(5975,1,'2019-02-27 02:20:07'),(5976,1,'2019-02-27 02:25:07'),(5977,1,'2019-02-27 02:30:05'),(5978,1,'2019-02-27 02:35:07'),(5979,1,'2019-02-27 02:40:07'),(5980,1,'2019-02-27 02:45:06'),(5981,1,'2019-02-27 02:50:07'),(5982,1,'2019-02-27 02:55:06'),(5983,1,'2019-02-27 03:00:06'),(5984,1,'2019-02-27 03:05:07'),(5985,1,'2019-02-27 03:10:07'),(5986,1,'2019-02-27 03:15:06'),(5987,1,'2019-02-27 03:20:06'),(5988,1,'2019-02-27 03:25:07'),(5989,1,'2019-02-27 03:30:06'),(5990,1,'2019-02-27 03:35:07'),(5991,1,'2019-02-27 03:40:06'),(5992,1,'2019-02-27 03:45:07'),(5993,1,'2019-02-27 03:50:07'),(5994,1,'2019-02-27 03:55:06'),(5995,1,'2019-02-27 04:00:06'),(5996,1,'2019-02-27 04:05:06'),(5997,1,'2019-02-27 04:10:07'),(5998,1,'2019-02-27 04:15:07'),(5999,1,'2019-02-27 04:20:06'),(6000,1,'2019-02-27 04:25:07'),(6001,1,'2019-02-27 04:30:05'),(6002,1,'2019-02-27 04:35:06'),(6003,1,'2019-02-27 04:40:06'),(6004,1,'2019-02-27 04:45:06'),(6005,1,'2019-02-27 04:50:07'),(6006,1,'2019-02-27 04:55:06'),(6007,1,'2019-02-27 05:00:06'),(6008,1,'2019-02-27 05:05:07'),(6009,1,'2019-02-27 05:10:06'),(6010,1,'2019-02-27 05:15:07'),(6011,1,'2019-02-27 05:20:07'),(6012,1,'2019-02-27 05:25:06'),(6013,1,'2019-02-27 05:30:06'),(6014,1,'2019-02-27 05:35:06'),(6015,1,'2019-02-27 05:40:07'),(6016,1,'2019-02-27 05:45:06'),(6017,1,'2019-02-27 05:50:07'),(6018,1,'2019-02-27 05:55:06'),(6019,1,'2019-02-27 06:00:06'),(6020,1,'2019-02-27 06:05:07'),(6021,1,'2019-02-27 06:10:07'),(6022,1,'2019-02-27 06:15:06'),(6023,1,'2019-02-27 06:20:06'),(6024,1,'2019-02-27 06:25:06'),(6025,1,'2019-02-27 06:30:05'),(6026,1,'2019-02-27 06:35:06'),(6027,1,'2019-02-27 06:40:07'),(6028,1,'2019-02-27 06:45:07'),(6029,1,'2019-02-27 06:50:07'),(6030,1,'2019-02-27 06:55:06'),(6031,1,'2019-02-27 07:00:05'),(6032,1,'2019-02-27 07:05:07'),(6033,1,'2019-02-27 07:10:06'),(6034,1,'2019-02-27 07:15:07'),(6035,1,'2019-02-27 07:20:06'),(6036,1,'2019-02-27 07:25:07'),(6037,1,'2019-02-27 07:30:05'),(6038,1,'2019-02-27 07:35:07'),(6039,1,'2019-02-27 07:40:06'),(6040,1,'2019-02-27 07:45:06'),(6041,1,'2019-02-27 07:50:07'),(6042,1,'2019-02-27 07:55:07'),(6043,1,'2019-02-27 08:00:05'),(6044,1,'2019-02-27 08:05:06'),(6045,1,'2019-02-27 08:10:07'),(6046,1,'2019-02-27 08:15:06'),(6047,1,'2019-02-27 08:20:07'),(6048,1,'2019-02-27 08:25:07'),(6049,1,'2019-02-27 08:30:05'),(6050,1,'2019-02-27 08:35:06'),(6051,1,'2019-02-27 08:40:06'),(6052,1,'2019-02-27 08:45:06'),(6053,1,'2019-02-27 08:50:07'),(6054,1,'2019-02-27 08:55:07'),(6055,1,'2019-02-27 09:00:05'),(6056,1,'2019-02-27 09:05:07'),(6057,1,'2019-02-27 09:10:06'),(6058,1,'2019-02-27 09:15:06'),(6059,1,'2019-02-27 09:20:07'),(6060,1,'2019-02-27 09:25:06'),(6061,1,'2019-02-27 09:30:05'),(6062,1,'2019-02-27 09:35:06'),(6063,1,'2019-02-27 09:40:07'),(6064,1,'2019-02-27 09:45:07'),(6065,1,'2019-02-27 09:50:07'),(6066,1,'2019-02-27 09:55:06'),(6067,1,'2019-02-27 10:00:06'),(6068,1,'2019-02-27 10:05:06'),(6069,1,'2019-02-27 10:10:06'),(6070,1,'2019-02-27 10:15:06'),(6071,1,'2019-02-27 10:20:07'),(6072,1,'2019-02-27 10:25:06'),(6073,1,'2019-02-27 10:30:05'),(6074,1,'2019-02-27 10:35:07'),(6075,1,'2019-02-27 10:40:06'),(6076,1,'2019-02-27 10:45:07'),(6077,1,'2019-02-27 10:50:06'),(6078,1,'2019-02-27 10:55:07'),(6079,1,'2019-02-27 11:00:05'),(6080,1,'2019-02-27 11:05:07'),(6081,1,'2019-02-27 11:10:06'),(6082,1,'2019-02-27 11:15:06'),(6083,1,'2019-02-27 11:20:07'),(6084,1,'2019-02-27 11:25:07'),(6085,1,'2019-02-27 11:30:05'),(6086,1,'2019-02-27 11:35:06'),(6087,1,'2019-02-27 11:40:07'),(6088,1,'2019-02-27 11:45:07'),(6089,1,'2019-02-27 11:50:06'),(6090,1,'2019-02-27 11:55:07'),(6091,1,'2019-02-27 12:00:05'),(6092,1,'2019-02-27 12:05:07'),(6093,1,'2019-02-27 12:10:06'),(6094,1,'2019-02-27 12:15:07'),(6095,1,'2019-02-27 12:20:07'),(6096,1,'2019-02-27 12:25:06'),(6097,1,'2019-02-27 12:30:05'),(6098,1,'2019-02-27 12:35:07'),(6099,1,'2019-02-27 12:40:07'),(6100,1,'2019-02-27 12:45:06'),(6101,1,'2019-02-27 12:50:07'),(6102,1,'2019-02-27 12:55:06'),(6103,1,'2019-02-27 13:00:06'),(6104,1,'2019-02-27 13:05:06'),(6105,1,'2019-02-27 13:10:07'),(6106,1,'2019-02-27 13:15:06'),(6107,1,'2019-02-27 13:20:07'),(6108,1,'2019-02-27 13:25:07'),(6109,1,'2019-02-27 13:30:05'),(6110,1,'2019-02-27 13:35:06'),(6111,1,'2019-02-27 13:40:07'),(6112,1,'2019-02-27 13:45:07'),(6113,1,'2019-02-27 13:50:06'),(6114,1,'2019-02-27 13:55:07'),(6115,1,'2019-02-27 14:00:06'),(6116,1,'2019-02-27 14:05:07'),(6117,1,'2019-02-27 14:10:06'),(6118,1,'2019-02-27 14:15:07'),(6119,1,'2019-02-27 14:20:06'),(6120,1,'2019-02-27 14:25:06'),(6121,1,'2019-02-27 14:30:05'),(6122,1,'2019-02-27 14:35:06'),(6123,1,'2019-02-27 14:40:06'),(6124,1,'2019-02-27 14:45:06'),(6125,1,'2019-02-27 14:50:06'),(6126,1,'2019-02-27 14:55:06'),(6127,1,'2019-02-27 15:00:06'),(6128,1,'2019-02-27 15:05:06'),(6129,1,'2019-02-27 15:10:07'),(6130,1,'2019-02-27 15:15:06'),(6131,1,'2019-02-27 15:20:06'),(6132,1,'2019-02-27 15:25:06'),(6133,1,'2019-02-27 15:30:05'),(6134,1,'2019-02-27 15:35:06'),(6135,1,'2019-02-27 15:40:06'),(6136,1,'2019-02-27 15:45:07'),(6137,1,'2019-02-27 15:50:07'),(6138,1,'2019-02-27 15:55:06'),(6139,1,'2019-02-27 16:00:06'),(6140,1,'2019-02-27 16:05:07'),(6141,1,'2019-02-27 16:10:07'),(6142,1,'2019-02-27 16:15:07'),(6143,1,'2019-02-27 16:20:06'),(6144,1,'2019-02-27 16:25:07'),(6145,1,'2019-02-27 16:30:05'),(6146,1,'2019-02-27 16:35:07'),(6147,1,'2019-02-27 16:40:06'),(6148,1,'2019-02-27 16:45:07'),(6149,1,'2019-02-27 16:50:07'),(6150,1,'2019-02-27 16:55:07'),(6151,1,'2019-02-27 17:00:05'),(6152,1,'2019-02-27 17:05:07'),(6153,1,'2019-02-27 17:10:06'),(6154,1,'2019-02-27 17:15:05'),(6155,1,'2019-02-27 17:20:06'),(6156,1,'2019-02-27 17:25:06'),(6157,1,'2019-02-27 17:30:06'),(6158,1,'2019-02-27 17:35:06'),(6159,1,'2019-02-27 17:40:07'),(6160,1,'2019-02-27 17:45:07'),(6161,1,'2019-02-27 17:50:06'),(6162,1,'2019-02-27 17:55:07'),(6163,1,'2019-02-27 18:00:05'),(6164,1,'2019-02-27 18:05:07'),(6165,1,'2019-02-27 18:10:06'),(6166,1,'2019-02-27 18:15:07'),(6167,1,'2019-02-27 18:20:06'),(6168,1,'2019-02-27 18:25:07'),(6169,1,'2019-02-27 18:30:06'),(6170,1,'2019-02-27 18:35:07'),(6171,1,'2019-02-27 18:40:06'),(6172,1,'2019-02-27 18:45:07'),(6173,1,'2019-02-27 18:50:07'),(6174,1,'2019-02-27 18:55:07'),(6175,1,'2019-02-27 19:00:05'),(6176,1,'2019-02-27 19:05:07'),(6177,1,'2019-02-27 19:10:06'),(6178,1,'2019-02-27 19:15:06'),(6179,1,'2019-02-27 19:20:07'),(6180,1,'2019-02-27 19:25:07'),(6181,1,'2019-02-27 19:30:05'),(6182,1,'2019-02-27 19:35:06'),(6183,1,'2019-02-27 19:40:07'),(6184,1,'2019-02-27 19:45:06'),(6185,1,'2019-02-27 19:50:07'),(6186,1,'2019-02-27 19:55:06'),(6187,1,'2019-02-27 20:00:05'),(6188,1,'2019-02-27 20:05:06'),(6189,1,'2019-02-27 20:10:06'),(6190,1,'2019-02-27 20:15:06'),(6191,1,'2019-02-27 20:20:07'),(6192,1,'2019-02-27 20:25:07'),(6193,1,'2019-02-27 20:30:05'),(6194,1,'2019-02-27 20:35:06'),(6195,1,'2019-02-27 20:40:06'),(6196,1,'2019-02-27 20:45:07'),(6197,1,'2019-02-27 20:50:07'),(6198,1,'2019-02-27 20:55:06'),(6199,1,'2019-02-27 21:00:06'),(6200,1,'2019-02-27 21:05:07'),(6201,1,'2019-02-27 21:10:07'),(6202,1,'2019-02-27 21:15:06'),(6203,1,'2019-02-27 21:20:06'),(6204,1,'2019-02-27 21:25:07'),(6205,1,'2019-02-27 21:30:06'),(6206,1,'2019-02-27 21:35:06'),(6207,1,'2019-02-27 21:40:07'),(6208,1,'2019-02-27 21:45:07'),(6209,1,'2019-02-27 21:50:06'),(6210,1,'2019-02-27 21:55:07'),(6211,1,'2019-02-27 22:00:05'),(6212,1,'2019-02-27 22:05:05'),(6213,1,'2019-02-27 22:10:06'),(6214,1,'2019-02-27 22:15:06'),(6215,1,'2019-02-27 22:20:05'),(6216,1,'2019-02-27 22:25:07'),(6217,1,'2019-02-27 22:30:06'),(6218,1,'2019-02-27 22:35:07'),(6219,1,'2019-02-27 22:40:07'),(6220,1,'2019-02-27 22:45:07'),(6221,1,'2019-02-27 22:50:06'),(6222,1,'2019-02-27 22:55:07'),(6223,1,'2019-02-27 23:00:05'),(6224,1,'2019-02-27 23:05:05'),(6225,1,'2019-02-27 23:10:06'),(6226,1,'2019-02-27 23:15:07'),(6227,1,'2019-02-27 23:20:07'),(6228,1,'2019-02-27 23:25:07'),(6229,1,'2019-02-27 23:30:05'),(6230,1,'2019-02-27 23:35:07'),(6231,1,'2019-02-27 23:40:07'),(6232,1,'2019-02-27 23:45:06'),(6233,1,'2019-02-27 23:50:07'),(6234,1,'2019-02-27 23:55:06'),(6235,1,'2019-02-28 00:00:05'),(6236,1,'2019-02-28 00:05:06'),(6237,1,'2019-02-28 00:10:07'),(6238,1,'2019-02-28 00:15:07'),(6239,1,'2019-02-28 00:20:06'),(6240,1,'2019-02-28 00:25:07'),(6241,1,'2019-02-28 00:30:06'),(6242,1,'2019-02-28 00:35:07'),(6243,1,'2019-02-28 00:40:06'),(6244,1,'2019-02-28 00:45:07'),(6245,1,'2019-02-28 00:50:07'),(6246,1,'2019-02-28 00:55:07'),(6247,1,'2019-02-28 01:00:05'),(6248,1,'2019-02-28 01:05:07'),(6249,1,'2019-02-28 01:10:07'),(6250,1,'2019-02-28 01:15:05'),(6251,1,'2019-02-28 01:20:06'),(6252,1,'2019-02-28 01:25:07'),(6253,1,'2019-02-28 01:30:05'),(6254,1,'2019-02-28 01:35:06'),(6255,1,'2019-02-28 01:40:07'),(6256,1,'2019-02-28 01:45:06'),(6257,1,'2019-02-28 01:50:07'),(6258,1,'2019-02-28 01:55:06'),(6259,1,'2019-02-28 02:00:05'),(6260,1,'2019-02-28 02:05:07'),(6261,1,'2019-02-28 02:10:06'),(6262,1,'2019-02-28 02:15:07'),(6263,1,'2019-02-28 02:20:06'),(6264,1,'2019-02-28 02:25:07'),(6265,1,'2019-02-28 02:30:05'),(6266,1,'2019-02-28 02:35:06'),(6267,1,'2019-02-28 02:40:07'),(6268,1,'2019-02-28 02:45:06'),(6269,1,'2019-02-28 02:50:07'),(6270,1,'2019-02-28 02:55:06'),(6271,1,'2019-02-28 03:00:06'),(6272,1,'2019-02-28 03:05:07'),(6273,1,'2019-02-28 03:10:06'),(6274,1,'2019-02-28 03:15:07'),(6275,1,'2019-02-28 03:20:07'),(6276,1,'2019-02-28 03:25:07'),(6277,1,'2019-02-28 03:30:05'),(6278,1,'2019-02-28 03:35:07'),(6279,1,'2019-02-28 03:40:07'),(6280,1,'2019-02-28 03:45:07'),(6281,1,'2019-02-28 03:50:06'),(6282,1,'2019-02-28 03:55:07'),(6283,1,'2019-02-28 04:00:06'),(6284,1,'2019-02-28 04:05:06'),(6285,1,'2019-02-28 04:10:07'),(6286,1,'2019-02-28 04:15:06'),(6287,1,'2019-02-28 04:20:07'),(6288,1,'2019-02-28 04:25:06'),(6289,1,'2019-02-28 04:30:06'),(6290,1,'2019-02-28 04:35:06'),(6291,1,'2019-02-28 04:40:07'),(6292,1,'2019-02-28 04:45:07'),(6293,1,'2019-02-28 04:50:07'),(6294,1,'2019-02-28 04:55:06'),(6295,1,'2019-02-28 05:00:06'),(6296,1,'2019-02-28 05:05:06'),(6297,1,'2019-02-28 05:10:07'),(6298,1,'2019-02-28 05:15:06'),(6299,1,'2019-02-28 05:20:07'),(6300,1,'2019-02-28 05:25:07'),(6301,1,'2019-02-28 05:30:05'),(6302,1,'2019-02-28 05:35:06'),(6303,1,'2019-02-28 05:40:07'),(6304,1,'2019-02-28 05:45:07'),(6305,1,'2019-02-28 05:50:06'),(6306,1,'2019-02-28 05:55:07'),(6307,1,'2019-02-28 06:00:05'),(6308,1,'2019-02-28 06:05:07'),(6309,1,'2019-02-28 06:10:06'),(6310,1,'2019-02-28 06:15:06'),(6311,1,'2019-02-28 06:20:07'),(6312,1,'2019-02-28 06:25:06'),(6313,1,'2019-02-28 06:30:05'),(6314,1,'2019-02-28 06:35:07'),(6315,1,'2019-02-28 06:40:06'),(6316,1,'2019-02-28 06:45:07'),(6317,1,'2019-02-28 06:50:07'),(6318,1,'2019-02-28 06:55:07'),(6319,1,'2019-02-28 07:00:05'),(6320,1,'2019-02-28 07:05:07'),(6321,1,'2019-02-28 07:10:06'),(6322,1,'2019-02-28 07:15:07'),(6323,1,'2019-02-28 07:20:06'),(6324,1,'2019-02-28 07:25:06'),(6325,1,'2019-02-28 07:30:06'),(6326,1,'2019-02-28 07:35:06'),(6327,1,'2019-02-28 07:40:07'),(6328,1,'2019-02-28 07:45:06'),(6329,1,'2019-02-28 07:50:07'),(6330,1,'2019-02-28 07:55:07'),(6331,1,'2019-02-28 08:00:05'),(6332,1,'2019-02-28 08:05:07'),(6333,1,'2019-02-28 08:10:07'),(6334,1,'2019-02-28 08:15:07'),(6335,1,'2019-02-28 08:20:07'),(6336,1,'2019-02-28 08:25:06'),(6337,1,'2019-02-28 08:30:06'),(6338,1,'2019-02-28 08:35:07'),(6339,1,'2019-02-28 08:40:07'),(6340,1,'2019-02-28 08:45:06'),(6341,1,'2019-02-28 08:50:06'),(6342,1,'2019-02-28 08:55:07'),(6343,1,'2019-02-28 09:00:05'),(6344,1,'2019-02-28 09:05:07'),(6345,1,'2019-02-28 09:10:07'),(6346,1,'2019-02-28 09:15:07'),(6347,1,'2019-02-28 09:20:06'),(6348,1,'2019-02-28 09:25:07'),(6349,1,'2019-02-28 09:30:06'),(6350,1,'2019-02-28 09:35:07'),(6351,1,'2019-02-28 09:40:07'),(6352,1,'2019-02-28 09:45:07'),(6353,1,'2019-02-28 09:50:06'),(6354,1,'2019-02-28 09:55:06'),(6355,1,'2019-02-28 10:00:05'),(6356,1,'2019-02-28 10:05:07'),(6357,1,'2019-02-28 10:10:06'),(6358,1,'2019-02-28 10:15:07'),(6359,1,'2019-02-28 10:20:06'),(6360,1,'2019-02-28 10:25:06'),(6361,1,'2019-02-28 10:30:05'),(6362,1,'2019-02-28 10:35:07'),(6363,1,'2019-02-28 10:40:07'),(6364,1,'2019-02-28 10:45:06'),(6365,1,'2019-02-28 10:50:07'),(6366,1,'2019-02-28 10:55:07'),(6367,1,'2019-02-28 11:00:05'),(6368,1,'2019-02-28 11:05:06'),(6369,1,'2019-02-28 11:10:07'),(6370,1,'2019-02-28 11:15:06'),(6371,1,'2019-02-28 11:20:07'),(6372,1,'2019-02-28 11:25:07'),(6373,1,'2019-02-28 11:30:05'),(6374,1,'2019-02-28 11:35:06'),(6375,1,'2019-02-28 11:40:07'),(6376,1,'2019-02-28 11:45:07'),(6377,1,'2019-02-28 11:50:07'),(6378,1,'2019-02-28 11:55:06'),(6379,1,'2019-02-28 12:00:05'),(6380,1,'2019-02-28 12:05:06'),(6381,1,'2019-02-28 12:10:07'),(6382,1,'2019-02-28 12:15:07'),(6383,1,'2019-02-28 12:20:07'),(6384,1,'2019-02-28 12:25:06'),(6385,1,'2019-02-28 12:30:06'),(6386,1,'2019-02-28 12:35:07'),(6387,1,'2019-02-28 12:40:07'),(6388,1,'2019-02-28 12:45:07'),(6389,1,'2019-02-28 12:50:06'),(6390,1,'2019-02-28 12:55:07'),(6391,1,'2019-02-28 13:00:05'),(6392,1,'2019-02-28 13:05:07'),(6393,1,'2019-02-28 13:10:07'),(6394,1,'2019-02-28 13:15:07'),(6395,1,'2019-02-28 13:20:06'),(6396,1,'2019-02-28 13:25:07'),(6397,1,'2019-02-28 13:30:06'),(6398,1,'2019-02-28 13:35:07'),(6399,1,'2019-02-28 13:40:06'),(6400,1,'2019-02-28 13:45:07'),(6401,1,'2019-02-28 13:50:06'),(6402,1,'2019-02-28 13:55:07'),(6403,1,'2019-02-28 14:00:05'),(6404,1,'2019-02-28 14:05:07'),(6405,1,'2019-02-28 14:10:06'),(6406,1,'2019-02-28 14:15:07'),(6407,1,'2019-02-28 14:20:06'),(6408,1,'2019-02-28 14:25:07'),(6409,1,'2019-02-28 14:30:06'),(6410,1,'2019-02-28 14:35:07'),(6411,1,'2019-02-28 14:40:06'),(6412,1,'2019-02-28 14:45:07'),(6413,1,'2019-02-28 14:50:07'),(6414,1,'2019-02-28 14:55:06'),(6415,1,'2019-02-28 15:00:06'),(6416,1,'2019-02-28 15:05:07'),(6417,1,'2019-02-28 15:10:07'),(6418,1,'2019-02-28 15:15:06'),(6419,1,'2019-02-28 15:20:07'),(6420,1,'2019-02-28 15:25:06'),(6421,1,'2019-02-28 15:30:06'),(6422,1,'2019-02-28 15:35:07'),(6423,1,'2019-02-28 15:40:07'),(6424,1,'2019-02-28 15:45:06'),(6425,1,'2019-02-28 15:50:07'),(6426,1,'2019-02-28 15:55:06'),(6427,1,'2019-02-28 16:00:06'),(6428,1,'2019-02-28 16:05:06'),(6429,1,'2019-02-28 16:10:06'),(6430,1,'2019-02-28 16:15:06'),(6431,1,'2019-02-28 16:20:07'),(6432,1,'2019-02-28 16:25:06'),(6433,1,'2019-02-28 16:30:06'),(6434,1,'2019-02-28 16:35:07'),(6435,1,'2019-02-28 16:40:07'),(6436,1,'2019-02-28 16:45:07'),(6437,1,'2019-02-28 16:50:06'),(6438,1,'2019-02-28 16:55:07'),(6439,1,'2019-02-28 17:00:05'),(6440,1,'2019-02-28 17:05:06'),(6441,1,'2019-02-28 17:10:06'),(6442,1,'2019-02-28 17:15:07'),(6443,1,'2019-02-28 17:20:07'),(6444,1,'2019-02-28 17:25:07'),(6445,1,'2019-02-28 17:30:05'),(6446,1,'2019-02-28 17:35:06'),(6447,1,'2019-02-28 17:40:07'),(6448,1,'2019-02-28 17:45:07'),(6449,1,'2019-02-28 17:50:06'),(6450,1,'2019-02-28 17:55:06'),(6451,1,'2019-02-28 18:00:05'),(6452,1,'2019-02-28 18:05:07'),(6453,1,'2019-02-28 18:10:07'),(6454,1,'2019-02-28 18:15:06'),(6455,1,'2019-02-28 18:20:06'),(6456,1,'2019-02-28 18:25:06'),(6457,1,'2019-02-28 18:30:06'),(6458,1,'2019-02-28 18:35:06'),(6459,1,'2019-02-28 18:40:06'),(6460,1,'2019-02-28 18:45:07'),(6461,1,'2019-02-28 18:50:06'),(6462,1,'2019-02-28 18:55:07'),(6463,1,'2019-02-28 19:00:06'),(6464,1,'2019-02-28 19:05:07'),(6465,1,'2019-02-28 19:10:07'),(6466,1,'2019-02-28 19:15:06'),(6467,1,'2019-02-28 19:20:07'),(6468,1,'2019-02-28 19:25:07'),(6469,1,'2019-02-28 19:30:05'),(6470,1,'2019-02-28 19:35:07'),(6471,1,'2019-02-28 19:40:07'),(6472,1,'2019-02-28 19:45:06'),(6473,1,'2019-02-28 19:50:07'),(6474,1,'2019-02-28 19:55:06'),(6475,1,'2019-02-28 20:00:06'),(6476,1,'2019-02-28 20:05:06'),(6477,1,'2019-02-28 20:10:07'),(6478,1,'2019-02-28 20:15:07'),(6479,1,'2019-02-28 20:20:07'),(6480,1,'2019-02-28 20:25:06'),(6481,1,'2019-02-28 20:30:06'),(6482,1,'2019-02-28 20:35:06'),(6483,1,'2019-02-28 20:40:06'),(6484,1,'2019-02-28 20:45:07'),(6485,1,'2019-02-28 20:50:07'),(6486,1,'2019-02-28 20:55:06'),(6487,1,'2019-02-28 21:00:05'),(6488,1,'2019-02-28 21:05:07'),(6489,1,'2019-02-28 21:10:06'),(6490,1,'2019-02-28 21:15:07'),(6491,1,'2019-02-28 21:20:07'),(6492,1,'2019-02-28 21:25:07'),(6493,1,'2019-02-28 21:30:05'),(6494,1,'2019-02-28 21:35:07'),(6495,1,'2019-02-28 21:40:07'),(6496,1,'2019-02-28 21:45:07'),(6497,1,'2019-02-28 21:50:06'),(6498,1,'2019-02-28 21:55:07'),(6499,1,'2019-02-28 22:00:05'),(6500,1,'2019-02-28 22:05:07'),(6501,1,'2019-02-28 22:10:06'),(6502,1,'2019-02-28 22:15:07'),(6503,1,'2019-02-28 22:20:07'),(6504,1,'2019-02-28 22:25:06'),(6505,1,'2019-02-28 22:30:05'),(6506,1,'2019-02-28 22:35:07'),(6507,1,'2019-02-28 22:40:06'),(6508,1,'2019-02-28 22:45:07'),(6509,1,'2019-02-28 22:50:06'),(6510,1,'2019-02-28 22:55:07'),(6511,1,'2019-02-28 23:00:05'),(6512,1,'2019-02-28 23:05:06'),(6513,1,'2019-02-28 23:10:07'),(6514,1,'2019-02-28 23:15:06'),(6515,1,'2019-02-28 23:20:07'),(6516,1,'2019-02-28 23:25:07'),(6517,1,'2019-02-28 23:30:05'),(6518,1,'2019-02-28 23:35:06'),(6519,1,'2019-02-28 23:40:06'),(6520,1,'2019-02-28 23:45:06'),(6521,1,'2019-02-28 23:50:07'),(6522,1,'2019-02-28 23:55:07'),(6523,1,'2019-03-01 00:00:05'),(6524,1,'2019-03-01 00:05:07'),(6525,1,'2019-03-01 00:10:06'),(6526,1,'2019-03-01 00:15:07'),(6527,1,'2019-03-01 00:20:06'),(6528,1,'2019-03-01 00:25:06'),(6529,1,'2019-03-01 00:30:06'),(6530,1,'2019-03-01 00:35:06'),(6531,1,'2019-03-01 00:40:07'),(6532,1,'2019-03-01 00:45:07'),(6533,1,'2019-03-01 00:50:06'),(6534,1,'2019-03-01 00:55:07'),(6535,1,'2019-03-01 01:00:05'),(6536,1,'2019-03-01 01:05:07'),(6537,1,'2019-03-01 01:10:06'),(6538,1,'2019-03-01 01:15:07'),(6539,1,'2019-03-01 01:20:06'),(6540,1,'2019-03-01 01:25:07'),(6541,1,'2019-03-01 01:30:06'),(6542,1,'2019-03-01 01:35:07'),(6543,1,'2019-03-01 01:40:07'),(6544,1,'2019-03-01 01:45:06'),(6545,1,'2019-03-01 01:50:07'),(6546,1,'2019-03-01 01:55:07'),(6547,1,'2019-03-01 02:00:05'),(6548,1,'2019-03-01 02:05:07'),(6549,1,'2019-03-01 02:10:06'),(6550,1,'2019-03-01 02:15:07'),(6551,1,'2019-03-01 02:20:06'),(6552,1,'2019-03-01 02:25:07'),(6553,1,'2019-03-01 02:30:05'),(6554,1,'2019-03-01 02:35:07'),(6555,1,'2019-03-01 02:40:07'),(6556,1,'2019-03-01 02:45:07'),(6557,1,'2019-03-01 02:50:06'),(6558,1,'2019-03-01 02:55:07'),(6559,1,'2019-03-01 03:00:06'),(6560,1,'2019-03-01 03:05:06'),(6561,1,'2019-03-01 03:10:07'),(6562,1,'2019-03-01 03:15:06'),(6563,1,'2019-03-01 03:20:06'),(6564,1,'2019-03-01 03:25:06'),(6565,1,'2019-03-01 03:30:06'),(6566,1,'2019-03-01 03:35:06'),(6567,1,'2019-03-01 03:40:06'),(6568,1,'2019-03-01 03:45:07'),(6569,1,'2019-03-01 03:50:06'),(6570,1,'2019-03-01 03:55:07'),(6571,1,'2019-03-01 04:00:06'),(6572,1,'2019-03-01 04:05:07'),(6573,1,'2019-03-01 04:10:06'),(6574,1,'2019-03-01 04:15:07'),(6575,1,'2019-03-01 04:20:07'),(6576,1,'2019-03-01 04:25:06'),(6577,1,'2019-03-01 04:30:05'),(6578,1,'2019-03-01 04:35:07'),(6579,1,'2019-03-01 04:40:06'),(6580,1,'2019-03-01 04:45:07'),(6581,1,'2019-03-01 04:50:06'),(6582,1,'2019-03-01 04:55:07'),(6583,1,'2019-03-01 05:00:05'),(6584,1,'2019-03-01 05:05:07'),(6585,1,'2019-03-01 05:10:06'),(6586,1,'2019-03-01 05:15:07'),(6587,1,'2019-03-01 05:20:06'),(6588,1,'2019-03-01 05:25:07'),(6589,1,'2019-03-01 05:30:05'),(6590,1,'2019-03-01 05:35:07'),(6591,1,'2019-03-01 05:40:06'),(6592,1,'2019-03-01 05:45:07'),(6593,1,'2019-03-01 05:50:07'),(6594,1,'2019-03-01 05:55:07'),(6595,1,'2019-03-01 06:00:05'),(6596,1,'2019-03-01 06:05:07'),(6597,1,'2019-03-01 06:10:06'),(6598,1,'2019-03-01 06:15:07'),(6599,1,'2019-03-01 06:20:07'),(6600,1,'2019-03-01 06:25:05'),(6601,1,'2019-03-01 06:30:06'),(6602,1,'2019-03-01 06:35:07'),(6603,1,'2019-03-01 06:40:07'),(6604,1,'2019-03-01 06:45:06'),(6605,1,'2019-03-01 06:50:07'),(6606,1,'2019-03-01 06:55:06'),(6607,1,'2019-03-01 07:00:06'),(6608,1,'2019-03-01 07:05:07'),(6609,1,'2019-03-01 07:10:07'),(6610,1,'2019-03-01 07:15:07'),(6611,1,'2019-03-01 07:20:06'),(6612,1,'2019-03-01 07:25:07'),(6613,1,'2019-03-01 07:30:05'),(6614,1,'2019-03-01 07:35:07'),(6615,1,'2019-03-01 07:40:06'),(6616,1,'2019-03-01 07:45:07'),(6617,1,'2019-03-01 07:50:07'),(6618,1,'2019-03-01 07:55:06'),(6619,1,'2019-03-01 08:00:05'),(6620,1,'2019-03-01 08:05:07'),(6621,1,'2019-03-01 08:10:06'),(6622,1,'2019-03-01 08:15:06'),(6623,1,'2019-03-01 08:20:07'),(6624,1,'2019-03-01 08:25:06'),(6625,1,'2019-03-01 08:30:05'),(6626,1,'2019-03-01 08:35:07'),(6627,1,'2019-03-01 08:40:06'),(6628,1,'2019-03-01 08:45:07'),(6629,1,'2019-03-01 08:50:06'),(6630,1,'2019-03-01 08:55:07'),(6631,1,'2019-03-01 09:00:05'),(6632,1,'2019-03-01 09:05:07'),(6633,1,'2019-03-01 09:10:07'),(6634,1,'2019-03-01 09:15:06'),(6635,1,'2019-03-01 09:20:07'),(6636,1,'2019-03-01 09:25:07'),(6637,1,'2019-03-01 09:30:05'),(6638,1,'2019-03-01 09:35:06'),(6639,1,'2019-03-01 09:40:07'),(6640,1,'2019-03-01 09:45:07'),(6641,1,'2019-03-01 09:50:07'),(6642,1,'2019-03-01 09:55:06'),(6643,1,'2019-03-01 10:00:05'),(6644,1,'2019-03-01 10:05:07'),(6645,1,'2019-03-01 10:10:07'),(6646,1,'2019-03-01 10:15:07'),(6647,1,'2019-03-01 10:20:06'),(6648,1,'2019-03-01 10:25:07'),(6649,1,'2019-03-01 10:30:05'),(6650,1,'2019-03-01 10:35:07'),(6651,1,'2019-03-01 10:40:07'),(6652,1,'2019-03-01 10:45:07'),(6653,1,'2019-03-01 10:50:07'),(6654,1,'2019-03-01 10:55:06'),(6655,1,'2019-03-01 11:00:06'),(6656,1,'2019-03-01 11:05:06'),(6657,1,'2019-03-01 11:10:07'),(6658,1,'2019-03-01 11:15:06'),(6659,1,'2019-03-01 11:20:07'),(6660,1,'2019-03-01 11:25:07'),(6661,1,'2019-03-01 11:30:05'),(6662,1,'2019-03-01 11:35:06'),(6663,1,'2019-03-01 11:40:06'),(6664,1,'2019-03-01 11:45:07'),(6665,1,'2019-03-01 11:50:06'),(6666,1,'2019-03-01 11:55:06'),(6667,1,'2019-03-01 12:00:06'),(6668,1,'2019-03-01 12:05:07'),(6669,1,'2019-03-01 12:10:06'),(6670,1,'2019-03-01 12:15:07'),(6671,1,'2019-03-01 12:20:07'),(6672,1,'2019-03-01 12:25:07'),(6673,1,'2019-03-01 12:30:05'),(6674,1,'2019-03-01 12:35:07'),(6675,1,'2019-03-01 12:40:06'),(6676,1,'2019-03-01 12:45:06'),(6677,1,'2019-03-01 12:50:07'),(6678,1,'2019-03-01 12:55:06'),(6679,1,'2019-03-01 13:00:06'),(6680,1,'2019-03-01 13:05:07'),(6681,1,'2019-03-01 13:10:07'),(6682,1,'2019-03-01 13:15:06'),(6683,1,'2019-03-01 13:20:06'),(6684,1,'2019-03-01 13:25:07'),(6685,1,'2019-03-01 13:30:05'),(6686,1,'2019-03-01 13:35:07'),(6687,1,'2019-03-01 13:40:07'),(6688,1,'2019-03-01 13:45:06'),(6689,1,'2019-03-01 13:50:07'),(6690,1,'2019-03-01 13:55:07'),(6691,1,'2019-03-01 14:00:05'),(6692,1,'2019-03-01 14:05:07'),(6693,1,'2019-03-01 14:10:07'),(6694,1,'2019-03-01 14:15:06'),(6695,1,'2019-03-01 14:20:06'),(6696,1,'2019-03-01 14:25:06'),(6697,1,'2019-03-01 14:30:06'),(6698,1,'2019-03-01 14:35:06'),(6699,1,'2019-03-01 14:40:07'),(6700,1,'2019-03-01 14:45:07'),(6701,1,'2019-03-01 14:50:07'),(6702,1,'2019-03-01 14:55:06'),(6703,1,'2019-03-01 15:00:06'),(6704,1,'2019-03-01 15:05:07'),(6705,1,'2019-03-01 15:10:07'),(6706,1,'2019-03-01 15:15:06'),(6707,1,'2019-03-01 15:20:07'),(6708,1,'2019-03-01 15:25:06'),(6709,1,'2019-03-01 15:30:06'),(6710,1,'2019-03-01 15:35:07'),(6711,1,'2019-03-01 15:40:07'),(6712,1,'2019-03-01 15:45:06'),(6713,1,'2019-03-01 15:50:06'),(6714,1,'2019-03-01 15:55:07'),(6715,1,'2019-03-01 16:00:05'),(6716,1,'2019-03-01 16:05:07'),(6717,1,'2019-03-01 16:10:06'),(6718,1,'2019-03-01 16:15:07'),(6719,1,'2019-03-01 16:20:07'),(6720,1,'2019-03-01 16:25:07'),(6721,1,'2019-03-01 16:30:05'),(6722,1,'2019-03-01 16:35:06'),(6723,1,'2019-03-01 16:40:07'),(6724,1,'2019-03-01 16:45:06'),(6725,1,'2019-03-01 16:50:06'),(6726,1,'2019-03-01 16:55:06'),(6727,1,'2019-03-01 17:00:05'),(6728,1,'2019-03-01 17:05:07'),(6729,1,'2019-03-01 17:10:07'),(6730,1,'2019-03-01 17:15:06'),(6731,1,'2019-03-01 17:20:07'),(6732,1,'2019-03-01 17:25:07'),(6733,1,'2019-03-01 17:30:05'),(6734,1,'2019-03-01 17:35:06'),(6735,1,'2019-03-01 17:40:07'),(6736,1,'2019-03-01 17:45:07'),(6737,1,'2019-03-01 17:50:07'),(6738,1,'2019-03-01 17:55:06'),(6739,1,'2019-03-01 18:00:06'),(6740,1,'2019-03-01 18:05:06'),(6741,1,'2019-03-01 18:10:07'),(6742,1,'2019-03-01 18:15:07'),(6743,1,'2019-03-01 18:20:06'),(6744,1,'2019-03-01 18:25:07'),(6745,1,'2019-03-01 18:30:05'),(6746,1,'2019-03-01 18:35:06'),(6747,1,'2019-03-01 18:40:07'),(6748,1,'2019-03-01 18:45:07'),(6749,1,'2019-03-01 18:50:07'),(6750,1,'2019-03-01 18:55:06'),(6751,1,'2019-03-01 19:00:06'),(6752,1,'2019-03-01 19:05:07'),(6753,1,'2019-03-01 19:10:07'),(6754,1,'2019-03-01 19:15:06'),(6755,1,'2019-03-01 19:20:06'),(6756,1,'2019-03-01 19:25:06'),(6757,1,'2019-03-01 19:30:05'),(6758,1,'2019-03-01 19:35:07'),(6759,1,'2019-03-01 19:40:06'),(6760,1,'2019-03-01 19:45:07'),(6761,1,'2019-03-01 19:50:07'),(6762,1,'2019-03-01 19:55:07'),(6763,1,'2019-03-01 20:00:05'),(6764,1,'2019-03-01 20:05:07'),(6765,1,'2019-03-01 20:10:06'),(6766,1,'2019-03-01 20:15:06'),(6767,1,'2019-03-01 20:20:07'),(6768,1,'2019-03-01 20:25:06'),(6769,1,'2019-03-01 20:30:05'),(6770,1,'2019-03-01 20:35:06'),(6771,1,'2019-03-01 20:40:07'),(6772,1,'2019-03-01 20:45:07'),(6773,1,'2019-03-01 20:50:06'),(6774,1,'2019-03-01 20:55:06'),(6775,1,'2019-03-01 21:00:06'),(6776,1,'2019-03-01 21:05:06'),(6777,1,'2019-03-01 21:10:07'),(6778,1,'2019-03-01 21:15:06'),(6779,1,'2019-03-01 21:20:07'),(6780,1,'2019-03-01 21:25:06'),(6781,1,'2019-03-01 21:30:05'),(6782,1,'2019-03-01 21:35:06'),(6783,1,'2019-03-01 21:40:07'),(6784,1,'2019-03-01 21:45:06'),(6785,1,'2019-03-01 21:50:07'),(6786,1,'2019-03-01 21:55:06'),(6787,1,'2019-03-01 22:00:06'),(6788,1,'2019-03-01 22:05:06'),(6789,1,'2019-03-01 22:10:07'),(6790,1,'2019-03-01 22:15:07'),(6791,1,'2019-03-01 22:20:06'),(6792,1,'2019-03-01 22:25:07'),(6793,1,'2019-03-01 22:30:05'),(6794,1,'2019-03-01 22:35:06'),(6795,1,'2019-03-01 22:40:07'),(6796,1,'2019-03-01 22:45:07'),(6797,1,'2019-03-01 22:50:06'),(6798,1,'2019-03-01 22:55:06'),(6799,1,'2019-03-01 23:00:06'),(6800,1,'2019-03-01 23:05:07'),(6801,1,'2019-03-01 23:10:07'),(6802,1,'2019-03-01 23:15:07'),(6803,1,'2019-03-01 23:20:06'),(6804,1,'2019-03-01 23:25:07'),(6805,1,'2019-03-01 23:30:05'),(6806,1,'2019-03-01 23:35:06'),(6807,1,'2019-03-01 23:40:07'),(6808,1,'2019-03-01 23:45:07'),(6809,1,'2019-03-01 23:50:06'),(6810,1,'2019-03-01 23:55:07'),(6811,1,'2019-03-02 00:00:05'),(6812,1,'2019-03-02 00:05:07'),(6813,1,'2019-03-02 00:10:07'),(6814,1,'2019-03-02 00:15:07'),(6815,1,'2019-03-02 00:20:06'),(6816,1,'2019-03-02 00:25:07'),(6817,1,'2019-03-02 00:30:05'),(6818,1,'2019-03-02 00:35:07'),(6819,1,'2019-03-02 00:40:07'),(6820,1,'2019-03-02 00:45:07'),(6821,1,'2019-03-02 00:50:06'),(6822,1,'2019-03-02 00:55:07'),(6823,1,'2019-03-02 01:00:05'),(6824,1,'2019-03-02 01:05:07'),(6825,1,'2019-03-02 01:10:06'),(6826,1,'2019-03-02 01:15:07'),(6827,1,'2019-03-02 01:20:07'),(6828,1,'2019-03-02 01:25:07'),(6829,1,'2019-03-02 01:30:05'),(6830,1,'2019-03-02 01:35:07'),(6831,1,'2019-03-02 01:40:07'),(6832,1,'2019-03-02 01:45:06'),(6833,1,'2019-03-02 01:50:07'),(6834,1,'2019-03-02 01:55:07'),(6835,1,'2019-03-02 02:00:05'),(6836,1,'2019-03-02 02:05:07'),(6837,1,'2019-03-02 02:10:07'),(6838,1,'2019-03-02 02:15:06'),(6839,1,'2019-03-02 02:20:06'),(6840,1,'2019-03-02 02:25:07'),(6841,1,'2019-03-02 02:30:06'),(6842,1,'2019-03-02 02:35:07'),(6843,1,'2019-03-02 02:40:07'),(6844,1,'2019-03-02 02:45:07'),(6845,1,'2019-03-02 02:50:06'),(6846,1,'2019-03-02 02:55:06'),(6847,1,'2019-03-02 03:00:06'),(6848,1,'2019-03-02 03:05:07'),(6849,1,'2019-03-02 03:10:07'),(6850,1,'2019-03-02 03:15:07'),(6851,1,'2019-03-02 03:20:06'),(6852,1,'2019-03-02 03:25:06'),(6853,1,'2019-03-02 03:30:05'),(6854,1,'2019-03-02 03:35:07'),(6855,1,'2019-03-02 03:40:07'),(6856,1,'2019-03-02 03:45:07'),(6857,1,'2019-03-02 03:50:06'),(6858,1,'2019-03-02 03:55:06'),(6859,1,'2019-03-02 04:00:05'),(6860,1,'2019-03-02 04:05:06'),(6861,1,'2019-03-02 04:10:07'),(6862,1,'2019-03-02 04:15:07'),(6863,1,'2019-03-02 04:20:07'),(6864,1,'2019-03-02 04:25:07'),(6865,1,'2019-03-02 04:30:05'),(6866,1,'2019-03-02 04:35:07'),(6867,1,'2019-03-02 04:40:06'),(6868,1,'2019-03-02 04:45:07'),(6869,1,'2019-03-02 04:50:06'),(6870,1,'2019-03-02 04:55:07'),(6871,1,'2019-03-02 05:00:05'),(6872,1,'2019-03-02 05:05:07'),(6873,1,'2019-03-02 05:10:07'),(6874,1,'2019-03-02 05:15:06'),(6875,1,'2019-03-02 05:20:07'),(6876,1,'2019-03-02 05:25:06'),(6877,1,'2019-03-02 05:30:06'),(6878,1,'2019-03-02 05:35:06'),(6879,1,'2019-03-02 05:40:07'),(6880,1,'2019-03-02 05:45:07'),(6881,1,'2019-03-02 05:50:07'),(6882,1,'2019-03-02 05:55:06'),(6883,1,'2019-03-02 06:00:05'),(6884,1,'2019-03-02 06:05:06'),(6885,1,'2019-03-02 06:10:06'),(6886,1,'2019-03-02 06:15:07'),(6887,1,'2019-03-02 06:20:06'),(6888,1,'2019-03-02 06:25:06'),(6889,1,'2019-03-02 06:30:06'),(6890,1,'2019-03-02 06:35:07'),(6891,1,'2019-03-02 06:40:06'),(6892,1,'2019-03-02 06:45:07'),(6893,1,'2019-03-02 06:50:06'),(6894,1,'2019-03-02 06:55:07'),(6895,1,'2019-03-02 07:00:05'),(6896,1,'2019-03-02 07:05:07'),(6897,1,'2019-03-02 07:10:06'),(6898,1,'2019-03-02 07:15:07'),(6899,1,'2019-03-02 07:20:06'),(6900,1,'2019-03-02 07:25:07'),(6901,1,'2019-03-02 07:30:06'),(6902,1,'2019-03-02 07:35:06'),(6903,1,'2019-03-02 07:40:07'),(6904,1,'2019-03-02 07:45:07'),(6905,1,'2019-03-02 07:50:06'),(6906,1,'2019-03-02 07:55:07'),(6907,1,'2019-03-02 08:00:05'),(6908,1,'2019-03-02 08:05:07'),(6909,1,'2019-03-02 08:10:07'),(6910,1,'2019-03-02 08:15:06'),(6911,1,'2019-03-02 08:20:06'),(6912,1,'2019-03-02 08:25:07'),(6913,1,'2019-03-02 08:30:05'),(6914,1,'2019-03-02 08:35:07'),(6915,1,'2019-03-02 08:40:06'),(6916,1,'2019-03-02 08:45:07'),(6917,1,'2019-03-02 08:50:06'),(6918,1,'2019-03-02 08:55:07'),(6919,1,'2019-03-02 09:00:06'),(6920,1,'2019-03-02 09:05:07'),(6921,1,'2019-03-02 09:10:06'),(6922,1,'2019-03-02 09:15:07'),(6923,1,'2019-03-02 09:20:07'),(6924,1,'2019-03-02 09:25:07'),(6925,1,'2019-03-02 09:30:05'),(6926,1,'2019-03-02 09:35:06'),(6927,1,'2019-03-02 09:40:06'),(6928,1,'2019-03-02 09:45:07'),(6929,1,'2019-03-02 09:50:07'),(6930,1,'2019-03-02 09:55:06'),(6931,1,'2019-03-02 10:00:05'),(6932,1,'2019-03-02 10:05:06'),(6933,1,'2019-03-02 10:10:07'),(6934,1,'2019-03-02 10:15:07'),(6935,1,'2019-03-02 10:20:06'),(6936,1,'2019-03-02 10:25:07'),(6937,1,'2019-03-02 10:30:05'),(6938,1,'2019-03-02 10:35:07'),(6939,1,'2019-03-02 10:40:07'),(6940,1,'2019-03-02 10:45:06'),(6941,1,'2019-03-02 10:50:07'),(6942,1,'2019-03-02 10:55:07'),(6943,1,'2019-03-02 11:00:05'),(6944,1,'2019-03-02 11:05:06'),(6945,1,'2019-03-02 11:10:06'),(6946,1,'2019-03-02 11:15:07'),(6947,1,'2019-03-02 11:20:07'),(6948,1,'2019-03-02 11:25:07'),(6949,1,'2019-03-02 11:30:05'),(6950,1,'2019-03-02 11:35:07'),(6951,1,'2019-03-02 11:40:07'),(6952,1,'2019-03-02 11:45:07'),(6953,1,'2019-03-02 11:50:06'),(6954,1,'2019-03-02 11:55:07'),(6955,1,'2019-03-02 12:00:05'),(6956,1,'2019-03-02 12:05:07'),(6957,1,'2019-03-02 12:10:07'),(6958,1,'2019-03-02 12:15:07'),(6959,1,'2019-03-02 12:20:06'),(6960,1,'2019-03-02 12:25:07'),(6961,1,'2019-03-02 12:30:06'),(6962,1,'2019-03-02 12:35:06'),(6963,1,'2019-03-02 12:40:07'),(6964,1,'2019-03-02 12:45:07'),(6965,1,'2019-03-02 12:50:06'),(6966,1,'2019-03-02 12:55:07'),(6967,1,'2019-03-02 13:00:06'),(6968,1,'2019-03-02 13:05:06'),(6969,1,'2019-03-02 13:10:07'),(6970,1,'2019-03-02 13:15:07'),(6971,1,'2019-03-02 13:20:07'),(6972,1,'2019-03-02 13:25:06'),(6973,1,'2019-03-02 13:30:05'),(6974,1,'2019-03-02 13:35:07'),(6975,1,'2019-03-02 13:40:07'),(6976,1,'2019-03-02 13:45:06'),(6977,1,'2019-03-02 13:50:07'),(6978,1,'2019-03-02 13:55:07'),(6979,1,'2019-03-02 14:00:05'),(6980,1,'2019-03-02 14:05:07'),(6981,1,'2019-03-02 14:10:07'),(6982,1,'2019-03-02 14:15:06'),(6983,1,'2019-03-02 14:20:06'),(6984,1,'2019-03-02 14:25:07'),(6985,1,'2019-03-02 14:30:05'),(6986,1,'2019-03-02 14:35:07'),(6987,1,'2019-03-02 14:40:07'),(6988,1,'2019-03-02 14:45:07'),(6989,1,'2019-03-02 14:50:06'),(6990,1,'2019-03-02 14:55:07'),(6991,1,'2019-03-02 15:00:05'),(6992,1,'2019-03-02 15:05:07'),(6993,1,'2019-03-02 15:10:06'),(6994,1,'2019-03-02 15:15:07'),(6995,1,'2019-03-02 15:20:06'),(6996,1,'2019-03-02 15:25:07'),(6997,1,'2019-03-02 15:30:06'),(6998,1,'2019-03-02 15:35:07'),(6999,1,'2019-03-02 15:40:07'),(7000,1,'2019-03-02 15:45:07'),(7001,1,'2019-03-02 15:50:06'),(7002,1,'2019-03-02 15:55:07'),(7003,1,'2019-03-02 16:00:05'),(7004,1,'2019-03-02 16:05:07'),(7005,1,'2019-03-02 16:10:06'),(7006,1,'2019-03-02 16:15:06'),(7007,1,'2019-03-02 16:20:06'),(7008,1,'2019-03-02 16:25:06'),(7009,1,'2019-03-02 16:30:05'),(7010,1,'2019-03-02 16:35:06'),(7011,1,'2019-03-02 16:40:07'),(7012,1,'2019-03-02 16:45:07'),(7013,1,'2019-03-02 16:50:06'),(7014,1,'2019-03-02 16:55:07'),(7015,1,'2019-03-02 17:00:05'),(7016,1,'2019-03-02 17:05:07'),(7017,1,'2019-03-02 17:10:07'),(7018,1,'2019-03-02 17:15:07'),(7019,1,'2019-03-02 17:20:06'),(7020,1,'2019-03-02 17:25:06'),(7021,1,'2019-03-02 17:30:06'),(7022,1,'2019-03-02 17:35:06'),(7023,1,'2019-03-02 17:40:07'),(7024,1,'2019-03-02 17:45:06'),(7025,1,'2019-03-02 17:50:07'),(7026,1,'2019-03-02 17:55:07'),(7027,1,'2019-03-02 18:00:05'),(7028,1,'2019-03-02 18:05:06'),(7029,1,'2019-03-02 18:10:07'),(7030,1,'2019-03-02 18:15:06'),(7031,1,'2019-03-02 18:20:06'),(7032,1,'2019-03-02 18:25:07'),(7033,1,'2019-03-02 18:30:05'),(7034,1,'2019-03-02 18:35:06'),(7035,1,'2019-03-02 18:40:06'),(7036,1,'2019-03-02 18:45:07'),(7037,1,'2019-03-02 18:50:06'),(7038,1,'2019-03-02 18:55:07'),(7039,1,'2019-03-02 19:00:05'),(7040,1,'2019-03-02 19:05:07'),(7041,1,'2019-03-02 19:10:06'),(7042,1,'2019-03-02 19:15:07'),(7043,1,'2019-03-02 19:20:07'),(7044,1,'2019-03-02 19:25:06'),(7045,1,'2019-03-02 19:30:05'),(7046,1,'2019-03-02 19:35:06'),(7047,1,'2019-03-02 19:40:07'),(7048,1,'2019-03-02 19:45:07'),(7049,1,'2019-03-02 19:50:07'),(7050,1,'2019-03-02 19:55:06'),(7051,1,'2019-03-02 20:00:05'),(7052,1,'2019-03-02 20:05:06'),(7053,1,'2019-03-02 20:10:06'),(7054,1,'2019-03-02 20:15:07'),(7055,1,'2019-03-02 20:20:07'),(7056,1,'2019-03-02 20:25:06'),(7057,1,'2019-03-02 20:30:06'),(7058,1,'2019-03-02 20:35:07'),(7059,1,'2019-03-02 20:40:06'),(7060,1,'2019-03-02 20:45:07'),(7061,1,'2019-03-02 20:50:07'),(7062,1,'2019-03-02 20:55:06'),(7063,1,'2019-03-02 21:00:06'),(7064,1,'2019-03-02 21:05:06'),(7065,1,'2019-03-02 21:10:06'),(7066,1,'2019-03-02 21:15:07'),(7067,1,'2019-03-02 21:20:07'),(7068,1,'2019-03-02 21:25:06'),(7069,1,'2019-03-02 21:30:05'),(7070,1,'2019-03-02 21:35:07'),(7071,1,'2019-03-02 21:40:06'),(7072,1,'2019-03-02 21:45:07'),(7073,1,'2019-03-02 21:50:07'),(7074,1,'2019-03-02 21:55:06'),(7075,1,'2019-03-02 22:00:05'),(7076,1,'2019-03-02 22:05:06'),(7077,1,'2019-03-02 22:10:06'),(7078,1,'2019-03-02 22:15:07'),(7079,1,'2019-03-02 22:20:06'),(7080,1,'2019-03-02 22:25:07'),(7081,1,'2019-03-02 22:30:06'),(7082,1,'2019-03-02 22:35:07'),(7083,1,'2019-03-02 22:40:06'),(7084,1,'2019-03-02 22:45:07'),(7085,1,'2019-03-02 22:50:07'),(7086,1,'2019-03-02 22:55:07'),(7087,1,'2019-03-02 23:00:05'),(7088,1,'2019-03-02 23:05:06'),(7089,1,'2019-03-02 23:10:07'),(7090,1,'2019-03-02 23:15:07'),(7091,1,'2019-03-02 23:20:06'),(7092,1,'2019-03-02 23:25:06'),(7093,1,'2019-03-02 23:30:05'),(7094,1,'2019-03-02 23:35:07'),(7095,1,'2019-03-02 23:40:06'),(7096,1,'2019-03-02 23:45:07'),(7097,1,'2019-03-02 23:50:06'),(7098,1,'2019-03-02 23:55:07'),(7099,1,'2019-03-03 00:00:06'),(7100,1,'2019-03-03 00:05:06'),(7101,1,'2019-03-03 00:10:07'),(7102,1,'2019-03-03 00:15:07'),(7103,1,'2019-03-03 00:20:06'),(7104,1,'2019-03-03 00:25:06'),(7105,1,'2019-03-03 00:30:05'),(7106,1,'2019-03-03 00:35:05'),(7107,1,'2019-03-03 00:40:07'),(7108,1,'2019-03-03 00:45:07'),(7109,1,'2019-03-03 00:50:07'),(7110,1,'2019-03-03 00:55:06'),(7111,1,'2019-03-03 01:00:06'),(7112,1,'2019-03-03 01:05:07'),(7113,1,'2019-03-03 01:10:07'),(7114,1,'2019-03-03 01:15:06'),(7115,1,'2019-03-03 01:20:06'),(7116,1,'2019-03-03 01:25:07'),(7117,1,'2019-03-03 01:30:05'),(7118,1,'2019-03-03 01:35:07'),(7119,1,'2019-03-03 01:40:07'),(7120,1,'2019-03-03 01:45:07'),(7121,1,'2019-03-03 01:50:06'),(7122,1,'2019-03-03 01:55:07'),(7123,1,'2019-03-03 02:00:05'),(7124,1,'2019-03-03 02:05:07'),(7125,1,'2019-03-03 02:10:07'),(7126,1,'2019-03-03 02:15:06'),(7127,1,'2019-03-03 02:20:07'),(7128,1,'2019-03-03 02:25:07'),(7129,1,'2019-03-03 02:30:05'),(7130,1,'2019-03-03 02:35:06'),(7131,1,'2019-03-03 02:40:07'),(7132,1,'2019-03-03 02:45:07'),(7133,1,'2019-03-03 02:50:06'),(7134,1,'2019-03-03 02:55:06'),(7135,1,'2019-03-03 03:00:05'),(7136,1,'2019-03-03 03:05:06'),(7137,1,'2019-03-03 03:10:07'),(7138,1,'2019-03-03 03:15:07'),(7139,1,'2019-03-03 03:20:06'),(7140,1,'2019-03-03 03:25:07'),(7141,1,'2019-03-03 03:30:06'),(7142,1,'2019-03-03 03:35:06'),(7143,1,'2019-03-03 03:40:06'),(7144,1,'2019-03-03 03:45:07'),(7145,1,'2019-03-03 03:50:07'),(7146,1,'2019-03-03 03:55:06'),(7147,1,'2019-03-03 04:00:06'),(7148,1,'2019-03-03 04:05:07'),(7149,1,'2019-03-03 04:10:06'),(7150,1,'2019-03-03 04:15:07'),(7151,1,'2019-03-03 04:20:07'),(7152,1,'2019-03-03 04:25:07'),(7153,1,'2019-03-03 04:30:05'),(7154,1,'2019-03-03 04:35:06'),(7155,1,'2019-03-03 04:40:07'),(7156,1,'2019-03-03 04:45:07'),(7157,1,'2019-03-03 04:50:06'),(7158,1,'2019-03-03 04:55:07'),(7159,1,'2019-03-03 05:00:06'),(7160,1,'2019-03-03 05:05:07'),(7161,1,'2019-03-03 05:10:06'),(7162,1,'2019-03-03 05:15:07'),(7163,1,'2019-03-03 05:20:07'),(7164,1,'2019-03-03 05:25:06'),(7165,1,'2019-03-03 05:30:06'),(7166,1,'2019-03-03 05:35:07'),(7167,1,'2019-03-03 05:40:06'),(7168,1,'2019-03-03 05:45:07'),(7169,1,'2019-03-03 05:50:07'),(7170,1,'2019-03-03 05:55:06'),(7171,1,'2019-03-03 06:00:06'),(7172,1,'2019-03-03 06:05:06'),(7173,1,'2019-03-03 06:10:06'),(7174,1,'2019-03-03 06:15:07'),(7175,1,'2019-03-03 06:20:07'),(7176,1,'2019-03-03 06:25:05'),(7177,1,'2019-03-03 06:30:06'),(7178,1,'2019-03-03 06:35:06'),(7179,1,'2019-03-03 06:40:07'),(7180,1,'2019-03-03 06:45:07'),(7181,1,'2019-03-03 06:50:07'),(7182,1,'2019-03-03 06:55:06'),(7183,1,'2019-03-03 07:00:06'),(7184,1,'2019-03-03 07:05:07'),(7185,1,'2019-03-03 07:10:07'),(7186,1,'2019-03-03 07:15:06'),(7187,1,'2019-03-03 07:20:07'),(7188,1,'2019-03-03 07:25:07'),(7189,1,'2019-03-03 07:30:05'),(7190,1,'2019-03-03 07:35:06'),(7191,1,'2019-03-03 07:40:07'),(7192,1,'2019-03-03 07:45:07'),(7193,1,'2019-03-03 07:50:06'),(7194,1,'2019-03-03 07:55:07'),(7195,1,'2019-03-03 08:00:05'),(7196,1,'2019-03-03 08:05:07'),(7197,1,'2019-03-03 08:10:07'),(7198,1,'2019-03-03 08:15:06'),(7199,1,'2019-03-03 08:20:07'),(7200,1,'2019-03-03 08:25:06'),(7201,1,'2019-03-03 08:30:06'),(7202,1,'2019-03-03 08:35:06'),(7203,1,'2019-03-03 08:40:07'),(7204,1,'2019-03-03 08:45:07'),(7205,1,'2019-03-03 08:50:07'),(7206,1,'2019-03-03 08:55:06'),(7207,1,'2019-03-03 09:00:06'),(7208,1,'2019-03-03 09:05:06'),(7209,1,'2019-03-03 09:10:07'),(7210,1,'2019-03-03 09:15:07'),(7211,1,'2019-03-03 09:20:06'),(7212,1,'2019-03-03 09:25:07'),(7213,1,'2019-03-03 09:30:05'),(7214,1,'2019-03-03 09:35:07'),(7215,1,'2019-03-03 09:40:06'),(7216,1,'2019-03-03 09:45:07'),(7217,1,'2019-03-03 09:50:07'),(7218,1,'2019-03-03 09:55:07'),(7219,1,'2019-03-03 10:00:05'),(7220,1,'2019-03-03 10:05:06'),(7221,1,'2019-03-03 10:10:07'),(7222,1,'2019-03-03 10:15:06'),(7223,1,'2019-03-03 10:20:07'),(7224,1,'2019-03-03 10:25:06'),(7225,1,'2019-03-03 10:30:05'),(7226,1,'2019-03-03 10:35:06'),(7227,1,'2019-03-03 10:40:07'),(7228,1,'2019-03-03 10:45:06'),(7229,1,'2019-03-03 10:50:07'),(7230,1,'2019-03-03 10:55:07'),(7231,1,'2019-03-03 11:00:05'),(7232,1,'2019-03-03 11:05:06'),(7233,1,'2019-03-03 11:10:07'),(7234,1,'2019-03-03 11:15:06'),(7235,1,'2019-03-03 11:20:06'),(7236,1,'2019-03-03 11:25:07'),(7237,1,'2019-03-03 11:30:05'),(7238,1,'2019-03-03 11:35:06'),(7239,1,'2019-03-03 11:40:07'),(7240,1,'2019-03-03 11:45:06'),(7241,1,'2019-03-03 11:50:06'),(7242,1,'2019-03-03 11:55:07'),(7243,1,'2019-03-03 12:00:05'),(7244,1,'2019-03-03 12:05:07'),(7245,1,'2019-03-03 12:10:06'),(7246,1,'2019-03-03 12:15:06'),(7247,1,'2019-03-03 12:20:07'),(7248,1,'2019-03-03 12:25:07'),(7249,1,'2019-03-03 12:30:05'),(7250,1,'2019-03-03 12:35:06'),(7251,1,'2019-03-03 12:40:07'),(7252,1,'2019-03-03 12:45:07'),(7253,1,'2019-03-03 12:50:06'),(7254,1,'2019-03-03 12:55:07'),(7255,1,'2019-03-03 13:00:06'),(7256,1,'2019-03-03 13:05:07'),(7257,1,'2019-03-03 13:10:07'),(7258,1,'2019-03-03 13:15:07'),(7259,1,'2019-03-03 13:20:07'),(7260,1,'2019-03-03 13:25:06'),(7261,1,'2019-03-03 13:30:06'),(7262,1,'2019-03-03 13:35:06'),(7263,1,'2019-03-03 13:40:07'),(7264,1,'2019-03-03 13:45:07'),(7265,1,'2019-03-03 13:50:07'),(7266,1,'2019-03-03 13:55:06'),(7267,1,'2019-03-03 14:00:06'),(7268,1,'2019-03-03 14:05:07'),(7269,1,'2019-03-03 14:10:06'),(7270,1,'2019-03-03 14:15:06'),(7271,1,'2019-03-03 14:20:07'),(7272,1,'2019-03-03 14:25:07'),(7273,1,'2019-03-03 14:30:05'),(7274,1,'2019-03-03 14:35:07'),(7275,1,'2019-03-03 14:40:06'),(7276,1,'2019-03-03 14:45:07'),(7277,1,'2019-03-03 14:50:06'),(7278,1,'2019-03-03 14:55:07'),(7279,1,'2019-03-03 15:00:06'),(7280,1,'2019-03-03 15:05:07'),(7281,1,'2019-03-03 15:10:06'),(7282,1,'2019-03-03 15:15:06'),(7283,1,'2019-03-03 15:20:07'),(7284,1,'2019-03-03 15:25:07'),(7285,1,'2019-03-03 15:30:05'),(7286,1,'2019-03-03 15:35:06'),(7287,1,'2019-03-03 15:40:07'),(7288,1,'2019-03-03 15:45:07'),(7289,1,'2019-03-03 15:50:06'),(7290,1,'2019-03-03 15:55:06'),(7291,1,'2019-03-03 16:00:06'),(7292,1,'2019-03-03 16:05:07'),(7293,1,'2019-03-03 16:10:06'),(7294,1,'2019-03-03 16:15:06'),(7295,1,'2019-03-03 16:20:07'),(7296,1,'2019-03-03 16:25:06'),(7297,1,'2019-03-03 16:30:06'),(7298,1,'2019-03-03 16:35:06'),(7299,1,'2019-03-03 16:40:07'),(7300,1,'2019-03-03 16:45:07'),(7301,1,'2019-03-03 16:50:07'),(7302,1,'2019-03-03 16:55:06'),(7303,1,'2019-03-03 17:00:05'),(7304,1,'2019-03-03 17:05:06'),(7305,1,'2019-03-03 17:10:07'),(7306,1,'2019-03-03 17:15:07'),(7307,1,'2019-03-03 17:20:07'),(7308,1,'2019-03-03 17:25:06'),(7309,1,'2019-03-03 17:30:06'),(7310,1,'2019-03-03 17:35:06'),(7311,1,'2019-03-03 17:40:07'),(7312,1,'2019-03-03 17:45:07'),(7313,1,'2019-03-03 17:50:07'),(7314,1,'2019-03-03 17:55:06'),(7315,1,'2019-03-03 18:00:05'),(7316,1,'2019-03-03 18:05:06'),(7317,1,'2019-03-03 18:10:07'),(7318,1,'2019-03-03 18:15:07'),(7319,1,'2019-03-03 18:20:07'),(7320,1,'2019-03-03 18:25:06'),(7321,1,'2019-03-03 18:30:05'),(7322,1,'2019-03-03 18:35:06'),(7323,1,'2019-03-03 18:40:07'),(7324,1,'2019-03-03 18:45:06'),(7325,1,'2019-03-03 18:50:06'),(7326,1,'2019-03-03 18:55:07'),(7327,1,'2019-03-03 19:00:05'),(7328,1,'2019-03-03 19:05:06'),(7329,1,'2019-03-03 19:10:07'),(7330,1,'2019-03-03 19:15:07'),(7331,1,'2019-03-03 19:20:07'),(7332,1,'2019-03-03 19:25:06'),(7333,1,'2019-03-03 19:30:06'),(7334,1,'2019-03-03 19:35:06'),(7335,1,'2019-03-03 19:40:07'),(7336,1,'2019-03-03 19:45:07'),(7337,1,'2019-03-03 19:50:07'),(7338,1,'2019-03-03 19:55:06'),(7339,1,'2019-03-03 20:00:06'),(7340,1,'2019-03-03 20:05:07'),(7341,1,'2019-03-03 20:10:07'),(7342,1,'2019-03-03 20:15:06'),(7343,1,'2019-03-03 20:20:06'),(7344,1,'2019-03-03 20:25:06'),(7345,1,'2019-03-03 20:30:05'),(7346,1,'2019-03-03 20:35:07'),(7347,1,'2019-03-03 20:40:07'),(7348,1,'2019-03-03 20:45:07'),(7349,1,'2019-03-03 20:50:06'),(7350,1,'2019-03-03 20:55:07'),(7351,1,'2019-03-03 21:00:05'),(7352,1,'2019-03-03 21:05:07'),(7353,1,'2019-03-03 21:10:07'),(7354,1,'2019-03-03 21:15:06'),(7355,1,'2019-03-03 21:20:07'),(7356,1,'2019-03-03 21:25:06'),(7357,1,'2019-03-03 21:30:05'),(7358,1,'2019-03-03 21:35:06'),(7359,1,'2019-03-03 21:40:06'),(7360,1,'2019-03-03 21:45:07'),(7361,1,'2019-03-03 21:50:07'),(7362,1,'2019-03-03 21:55:06'),(7363,1,'2019-03-03 22:00:06'),(7364,1,'2019-03-03 22:05:06'),(7365,1,'2019-03-03 22:10:06'),(7366,1,'2019-03-03 22:15:07'),(7367,1,'2019-03-03 22:20:07'),(7368,1,'2019-03-03 22:25:06'),(7369,1,'2019-03-03 22:30:06'),(7370,1,'2019-03-03 22:35:06'),(7371,1,'2019-03-03 22:40:07'),(7372,1,'2019-03-03 22:45:07'),(7373,1,'2019-03-03 22:50:06'),(7374,1,'2019-03-03 22:55:07'),(7375,1,'2019-03-03 23:00:05'),(7376,1,'2019-03-03 23:05:07'),(7377,1,'2019-03-03 23:10:06'),(7378,1,'2019-03-03 23:15:07'),(7379,1,'2019-03-03 23:20:06'),(7380,1,'2019-03-03 23:25:07'),(7381,1,'2019-03-03 23:30:05'),(7382,1,'2019-03-03 23:35:07'),(7383,1,'2019-03-03 23:40:07'),(7384,1,'2019-03-03 23:45:06'),(7385,1,'2019-03-03 23:50:07'),(7386,1,'2019-03-03 23:55:06'),(7387,1,'2019-03-04 00:00:05'),(7388,1,'2019-03-04 00:05:06'),(7389,1,'2019-03-04 00:10:07'),(7390,1,'2019-03-04 00:15:06'),(7391,1,'2019-03-04 00:20:06'),(7392,1,'2019-03-04 00:25:07'),(7393,1,'2019-03-04 00:30:05'),(7394,1,'2019-03-04 00:35:07'),(7395,1,'2019-03-04 00:40:07'),(7396,1,'2019-03-04 00:45:07'),(7397,1,'2019-03-04 00:50:06'),(7398,1,'2019-03-04 00:55:07'),(7399,1,'2019-03-04 01:00:05'),(7400,1,'2019-03-04 01:05:07'),(7401,1,'2019-03-04 01:10:07'),(7402,1,'2019-03-04 01:15:06'),(7403,1,'2019-03-04 01:20:07'),(7404,1,'2019-03-04 01:25:07'),(7405,1,'2019-03-04 01:30:05'),(7406,1,'2019-03-04 01:35:06'),(7407,1,'2019-03-04 01:40:07'),(7408,1,'2019-03-04 01:45:07'),(7409,1,'2019-03-04 01:50:07'),(7410,1,'2019-03-04 01:55:06'),(7411,1,'2019-03-04 02:00:06'),(7412,1,'2019-03-04 02:05:06'),(7413,1,'2019-03-04 02:10:07'),(7414,1,'2019-03-04 02:15:06'),(7415,1,'2019-03-04 02:20:06'),(7416,1,'2019-03-04 02:25:07'),(7417,1,'2019-03-04 02:30:05'),(7418,1,'2019-03-04 02:35:07'),(7419,1,'2019-03-04 02:40:06'),(7420,1,'2019-03-04 02:45:06'),(7421,1,'2019-03-04 02:50:06'),(7422,1,'2019-03-04 02:55:06'),(7423,1,'2019-03-04 03:00:06'),(7424,1,'2019-03-04 03:05:06'),(7425,1,'2019-03-04 03:10:06'),(7426,1,'2019-03-04 03:15:07'),(7427,1,'2019-03-04 03:20:06'),(7428,1,'2019-03-04 03:25:07'),(7429,1,'2019-03-04 03:30:05'),(7430,1,'2019-03-04 03:35:07'),(7431,1,'2019-03-04 03:40:05'),(7432,1,'2019-03-04 03:45:07'),(7433,1,'2019-03-04 03:50:07'),(7434,1,'2019-03-04 03:55:07'),(7435,1,'2019-03-04 04:00:05'),(7436,1,'2019-03-04 04:05:07'),(7437,1,'2019-03-04 04:10:06'),(7438,1,'2019-03-04 04:15:07'),(7439,1,'2019-03-04 04:20:06'),(7440,1,'2019-03-04 04:25:07'),(7441,1,'2019-03-04 04:30:05'),(7442,1,'2019-03-04 04:35:07'),(7443,1,'2019-03-04 04:40:06'),(7444,1,'2019-03-04 04:45:06'),(7445,1,'2019-03-04 04:50:07'),(7446,1,'2019-03-04 04:55:07'),(7447,1,'2019-03-04 05:00:05'),(7448,1,'2019-03-04 05:05:06'),(7449,1,'2019-03-04 05:10:07'),(7450,1,'2019-03-04 05:15:07'),(7451,1,'2019-03-04 05:20:06'),(7452,1,'2019-03-04 05:25:07'),(7453,1,'2019-03-04 05:30:05'),(7454,1,'2019-03-04 05:35:07'),(7455,1,'2019-03-04 05:40:07'),(7456,1,'2019-03-04 05:45:07'),(7457,1,'2019-03-04 05:50:06'),(7458,1,'2019-03-04 05:55:06'),(7459,1,'2019-03-04 06:00:06'),(7460,1,'2019-03-04 06:05:07'),(7461,1,'2019-03-04 06:10:06'),(7462,1,'2019-03-04 06:15:06'),(7463,1,'2019-03-04 06:20:07'),(7464,1,'2019-03-04 06:25:05'),(7465,1,'2019-03-04 06:30:06'),(7466,1,'2019-03-04 06:35:07'),(7467,1,'2019-03-04 06:40:07'),(7468,1,'2019-03-04 06:45:06'),(7469,1,'2019-03-04 06:50:07'),(7470,1,'2019-03-04 06:55:06'),(7471,1,'2019-03-04 07:00:06'),(7472,1,'2019-03-04 07:05:06'),(7473,1,'2019-03-04 07:10:07'),(7474,1,'2019-03-04 07:15:06'),(7475,1,'2019-03-04 07:20:07'),(7476,1,'2019-03-04 07:25:06'),(7477,1,'2019-03-04 07:30:05'),(7478,1,'2019-03-04 07:35:06'),(7479,1,'2019-03-04 07:40:06'),(7480,1,'2019-03-04 07:45:07'),(7481,1,'2019-03-04 07:50:06'),(7482,1,'2019-03-04 07:55:07'),(7483,1,'2019-03-04 08:00:05'),(7484,1,'2019-03-04 08:05:07'),(7485,1,'2019-03-04 08:10:06'),(7486,1,'2019-03-04 08:15:07'),(7487,1,'2019-03-04 08:20:07'),(7488,1,'2019-03-04 08:25:06'),(7489,1,'2019-03-04 08:30:06'),(7490,1,'2019-03-04 08:35:07'),(7491,1,'2019-03-04 08:40:07'),(7492,1,'2019-03-04 08:45:06'),(7493,1,'2019-03-04 08:50:07'),(7494,1,'2019-03-04 08:55:06'),(7495,1,'2019-03-04 09:00:06'),(7496,1,'2019-03-04 09:05:07'),(7497,1,'2019-03-04 09:10:06'),(7498,1,'2019-03-04 09:15:07'),(7499,1,'2019-03-04 09:20:07'),(7500,1,'2019-03-04 09:25:07'),(7501,1,'2019-03-04 09:30:05'),(7502,1,'2019-03-04 09:35:07'),(7503,1,'2019-03-04 09:40:06'),(7504,1,'2019-03-04 09:45:07'),(7505,1,'2019-03-04 09:50:07'),(7506,1,'2019-03-04 09:55:07'),(7507,1,'2019-03-04 10:00:05'),(7508,1,'2019-03-04 10:05:07'),(7509,1,'2019-03-04 10:10:06'),(7510,1,'2019-03-04 10:15:07'),(7511,1,'2019-03-04 10:20:06'),(7512,1,'2019-03-04 10:25:07'),(7513,1,'2019-03-04 10:30:05'),(7514,1,'2019-03-04 10:35:07'),(7515,1,'2019-03-04 10:40:06'),(7516,1,'2019-03-04 10:45:06'),(7517,1,'2019-03-04 10:50:07'),(7518,1,'2019-03-04 10:55:06'),(7519,1,'2019-03-04 11:00:06'),(7520,1,'2019-03-04 11:05:06'),(7521,1,'2019-03-04 11:10:07'),(7522,1,'2019-03-04 11:15:06'),(7523,1,'2019-03-04 11:20:07'),(7524,1,'2019-03-04 11:25:07'),(7525,1,'2019-03-04 11:30:05'),(7526,1,'2019-03-04 11:35:07'),(7527,1,'2019-03-04 11:40:07'),(7528,1,'2019-03-04 11:45:06'),(7529,1,'2019-03-04 11:50:06'),(7530,1,'2019-03-04 11:55:07'),(7531,1,'2019-03-04 12:00:05'),(7532,1,'2019-03-04 12:05:06'),(7533,1,'2019-03-04 12:10:07'),(7534,1,'2019-03-04 12:15:07'),(7535,1,'2019-03-04 12:20:07'),(7536,1,'2019-03-04 12:25:06'),(7537,1,'2019-03-04 12:30:05'),(7538,1,'2019-03-04 12:35:06'),(7539,1,'2019-03-04 12:40:07'),(7540,1,'2019-03-04 12:45:06'),(7541,1,'2019-03-04 12:50:07'),(7542,1,'2019-03-04 12:55:06'),(7543,1,'2019-03-04 13:00:06'),(7544,1,'2019-03-04 13:05:07'),(7545,1,'2019-03-04 13:10:07'),(7546,1,'2019-03-04 13:15:06'),(7547,1,'2019-03-04 13:20:07'),(7548,1,'2019-03-04 13:25:07'),(7549,1,'2019-03-04 13:30:05'),(7550,1,'2019-03-04 13:35:06'),(7551,1,'2019-03-04 13:40:07'),(7552,1,'2019-03-04 13:45:07'),(7553,1,'2019-03-04 13:50:06'),(7554,1,'2019-03-04 13:55:06'),(7555,1,'2019-03-04 14:00:05'),(7556,1,'2019-03-04 14:05:06'),(7557,1,'2019-03-04 14:10:06'),(7558,1,'2019-03-04 14:15:06'),(7559,1,'2019-03-04 14:20:07'),(7560,1,'2019-03-04 14:25:06'),(7561,1,'2019-03-04 14:30:05'),(7562,1,'2019-03-04 14:35:06'),(7563,1,'2019-03-04 14:40:07'),(7564,1,'2019-03-04 14:45:06'),(7565,1,'2019-03-04 14:50:07'),(7566,1,'2019-03-04 14:55:07'),(7567,1,'2019-03-04 15:00:05'),(7568,1,'2019-03-04 15:05:07'),(7569,1,'2019-03-04 15:10:07'),(7570,1,'2019-03-04 15:15:07'),(7571,1,'2019-03-04 15:20:06'),(7572,1,'2019-03-04 15:25:07'),(7573,1,'2019-03-04 15:30:06'),(7574,1,'2019-03-04 15:35:07'),(7575,1,'2019-03-04 15:40:07'),(7576,1,'2019-03-04 15:45:07'),(7577,1,'2019-03-04 15:50:06'),(7578,1,'2019-03-04 15:55:06'),(7579,1,'2019-03-04 16:00:06'),(7580,1,'2019-03-04 16:05:07'),(7581,1,'2019-03-04 16:10:06'),(7582,1,'2019-03-04 16:15:07'),(7583,1,'2019-03-04 16:20:06'),(7584,1,'2019-03-04 16:25:07'),(7585,1,'2019-03-04 16:30:06'),(7586,1,'2019-03-04 16:35:07'),(7587,1,'2019-03-04 16:40:06'),(7588,1,'2019-03-04 16:45:06'),(7589,1,'2019-03-04 16:50:07'),(7590,1,'2019-03-04 16:55:07'),(7591,1,'2019-03-04 17:00:05'),(7592,1,'2019-03-04 17:05:06'),(7593,1,'2019-03-04 17:10:07'),(7594,1,'2019-03-04 17:15:07'),(7595,1,'2019-03-04 17:20:07'),(7596,1,'2019-03-04 17:25:06'),(7597,1,'2019-03-04 17:30:04'),(7598,1,'2019-03-04 17:35:06'),(7599,1,'2019-03-04 17:40:06'),(7600,1,'2019-03-04 17:45:07'),(7601,1,'2019-03-04 17:50:07'),(7602,1,'2019-03-04 17:55:07'),(7603,1,'2019-03-04 18:00:05'),(7604,1,'2019-03-04 18:05:07'),(7605,1,'2019-03-04 18:10:07'),(7606,1,'2019-03-04 18:15:07'),(7607,1,'2019-03-04 18:20:06'),(7608,1,'2019-03-04 18:25:07'),(7609,1,'2019-03-04 18:30:06'),(7610,1,'2019-03-04 18:35:06'),(7611,1,'2019-03-04 18:40:06'),(7612,1,'2019-03-04 18:45:07'),(7613,1,'2019-03-04 18:50:07'),(7614,1,'2019-03-04 18:55:06'),(7615,1,'2019-03-04 19:00:05'),(7616,1,'2019-03-04 19:05:07'),(7617,1,'2019-03-04 19:10:06'),(7618,1,'2019-03-04 19:15:07'),(7619,1,'2019-03-04 19:20:06'),(7620,1,'2019-03-04 19:25:06'),(7621,1,'2019-03-04 19:30:06'),(7622,1,'2019-03-04 19:35:07'),(7623,1,'2019-03-04 19:40:06'),(7624,1,'2019-03-04 19:45:05'),(7625,1,'2019-03-04 19:50:07'),(7626,1,'2019-03-04 19:55:07'),(7627,1,'2019-03-04 20:00:05'),(7628,1,'2019-03-04 20:05:06'),(7629,1,'2019-03-04 20:10:06'),(7630,1,'2019-03-04 20:15:06'),(7631,1,'2019-03-04 20:20:06'),(7632,1,'2019-03-04 20:25:07'),(7633,1,'2019-03-04 20:30:05'),(7634,1,'2019-03-04 20:35:06'),(7635,1,'2019-03-04 20:40:06'),(7636,1,'2019-03-04 20:45:07'),(7637,1,'2019-03-04 20:50:07'),(7638,1,'2019-03-04 20:55:06'),(7639,1,'2019-03-04 21:00:06'),(7640,1,'2019-03-04 21:05:07'),(7641,1,'2019-03-04 21:10:06'),(7642,1,'2019-03-04 21:15:06'),(7643,1,'2019-03-04 21:20:07'),(7644,1,'2019-03-04 21:25:06'),(7645,1,'2019-03-04 21:30:06'),(7646,1,'2019-03-04 21:35:07'),(7647,1,'2019-03-04 21:40:07'),(7648,1,'2019-03-04 21:45:06'),(7649,1,'2019-03-04 21:50:06'),(7650,1,'2019-03-04 21:55:06'),(7651,1,'2019-03-04 22:00:05'),(7652,1,'2019-03-04 22:05:06'),(7653,1,'2019-03-04 22:10:07'),(7654,1,'2019-03-04 22:15:07'),(7655,1,'2019-03-04 22:20:06'),(7656,1,'2019-03-04 22:25:07'),(7657,1,'2019-03-04 22:30:05'),(7658,1,'2019-03-04 22:35:07'),(7659,1,'2019-03-04 22:40:06'),(7660,1,'2019-03-04 22:45:06'),(7661,1,'2019-03-04 22:50:07'),(7662,1,'2019-03-04 22:55:07'),(7663,1,'2019-03-04 23:00:05'),(7664,1,'2019-03-04 23:05:07'),(7665,1,'2019-03-04 23:10:07'),(7666,1,'2019-03-04 23:15:06'),(7667,1,'2019-03-04 23:20:07'),(7668,1,'2019-03-04 23:25:06'),(7669,1,'2019-03-04 23:30:05'),(7670,1,'2019-03-04 23:35:06'),(7671,1,'2019-03-04 23:40:07'),(7672,1,'2019-03-04 23:45:07'),(7673,1,'2019-03-04 23:50:06'),(7674,1,'2019-03-04 23:55:07'),(7675,1,'2019-03-05 00:00:05'),(7676,1,'2019-03-05 00:05:07'),(7677,1,'2019-03-05 00:10:07'),(7678,1,'2019-03-05 00:15:07'),(7679,1,'2019-03-05 00:20:06'),(7680,1,'2019-03-05 00:25:06'),(7681,1,'2019-03-05 00:30:06'),(7682,1,'2019-03-05 00:35:07'),(7683,1,'2019-03-05 00:40:06'),(7684,1,'2019-03-05 00:45:06'),(7685,1,'2019-03-05 00:50:06'),(7686,1,'2019-03-05 00:55:07'),(7687,1,'2019-03-05 01:00:05'),(7688,1,'2019-03-05 01:05:07'),(7689,1,'2019-03-05 01:10:07'),(7690,1,'2019-03-05 01:15:06'),(7691,1,'2019-03-05 01:20:07'),(7692,1,'2019-03-05 01:25:07'),(7693,1,'2019-03-05 01:30:05'),(7694,1,'2019-03-05 01:35:06'),(7695,1,'2019-03-05 01:40:07'),(7696,1,'2019-03-05 01:45:07'),(7697,1,'2019-03-05 01:50:07'),(7698,1,'2019-03-05 01:55:06'),(7699,1,'2019-03-05 02:00:06'),(7700,1,'2019-03-05 02:05:07'),(7701,1,'2019-03-05 02:10:07'),(7702,1,'2019-03-05 02:15:06'),(7703,1,'2019-03-05 02:20:07'),(7704,1,'2019-03-05 02:25:07'),(7705,1,'2019-03-05 02:30:05'),(7706,1,'2019-03-05 02:35:07'),(7707,1,'2019-03-05 02:40:06'),(7708,1,'2019-03-05 02:45:07'),(7709,1,'2019-03-05 02:50:07'),(7710,1,'2019-03-05 02:55:07'),(7711,1,'2019-03-05 03:00:05'),(7712,1,'2019-03-05 03:05:07'),(7713,1,'2019-03-05 03:10:06'),(7714,1,'2019-03-05 03:15:07'),(7715,1,'2019-03-05 03:20:07'),(7716,1,'2019-03-05 03:25:06'),(7717,1,'2019-03-05 03:30:06'),(7718,1,'2019-03-05 03:35:06'),(7719,1,'2019-03-05 03:40:07'),(7720,1,'2019-03-05 03:45:07'),(7721,1,'2019-03-05 03:50:06'),(7722,1,'2019-03-05 03:55:06'),(7723,1,'2019-03-05 04:00:06'),(7724,1,'2019-03-05 04:05:07'),(7725,1,'2019-03-05 04:10:07'),(7726,1,'2019-03-05 04:15:06'),(7727,1,'2019-03-05 04:20:07'),(7728,1,'2019-03-05 04:25:07'),(7729,1,'2019-03-05 04:30:05'),(7730,1,'2019-03-05 04:35:07'),(7731,1,'2019-03-05 04:40:07'),(7732,1,'2019-03-05 04:45:06'),(7733,1,'2019-03-05 04:50:07'),(7734,1,'2019-03-05 04:55:07'),(7735,1,'2019-03-05 05:00:05'),(7736,1,'2019-03-05 05:05:07'),(7737,1,'2019-03-05 05:10:06'),(7738,1,'2019-03-05 05:15:07'),(7739,1,'2019-03-05 05:20:07'),(7740,1,'2019-03-05 05:25:07'),(7741,1,'2019-03-05 05:30:05'),(7742,1,'2019-03-05 05:35:07'),(7743,1,'2019-03-05 05:40:06'),(7744,1,'2019-03-05 05:45:07'),(7745,1,'2019-03-05 05:50:07'),(7746,1,'2019-03-05 05:55:07'),(7747,1,'2019-03-05 06:00:05'),(7748,1,'2019-03-05 06:05:07'),(7749,1,'2019-03-05 06:10:06'),(7750,1,'2019-03-05 06:15:07'),(7751,1,'2019-03-05 06:20:06'),(7752,1,'2019-03-05 06:25:06'),(7753,1,'2019-03-05 06:30:05'),(7754,1,'2019-03-05 06:35:07'),(7755,1,'2019-03-05 06:40:06'),(7756,1,'2019-03-05 06:45:07'),(7757,1,'2019-03-05 06:50:06'),(7758,1,'2019-03-05 06:55:07'),(7759,1,'2019-03-05 07:00:06'),(7760,1,'2019-03-05 07:05:06'),(7761,1,'2019-03-05 07:10:07'),(7762,1,'2019-03-05 07:15:06'),(7763,1,'2019-03-05 07:20:06'),(7764,1,'2019-03-05 07:25:05'),(7765,1,'2019-03-05 07:30:06'),(7766,1,'2019-03-05 07:35:07'),(7767,1,'2019-03-05 07:40:07'),(7768,1,'2019-03-05 07:45:06'),(7769,1,'2019-03-05 07:50:07'),(7770,1,'2019-03-05 07:55:07'),(7771,1,'2019-03-05 08:00:05'),(7772,1,'2019-03-05 08:05:06'),(7773,1,'2019-03-05 08:10:07'),(7774,1,'2019-03-05 08:15:07'),(7775,1,'2019-03-05 08:20:07'),(7776,1,'2019-03-05 08:25:06'),(7777,1,'2019-03-05 08:30:05'),(7778,1,'2019-03-05 08:35:07'),(7779,1,'2019-03-05 08:40:06'),(7780,1,'2019-03-05 08:45:07'),(7781,1,'2019-03-05 08:50:07'),(7782,1,'2019-03-05 08:55:07'),(7783,1,'2019-03-05 09:00:05'),(7784,1,'2019-03-05 09:05:07'),(7785,1,'2019-03-05 09:10:06'),(7786,1,'2019-03-05 09:15:06'),(7787,1,'2019-03-05 09:20:07'),(7788,1,'2019-03-05 09:25:07'),(7789,1,'2019-03-05 09:30:05'),(7790,1,'2019-03-05 09:35:07'),(7791,1,'2019-03-05 09:40:07'),(7792,1,'2019-03-05 09:45:06'),(7793,1,'2019-03-05 09:50:06'),(7794,1,'2019-03-05 09:55:07'),(7795,1,'2019-03-05 10:00:05'),(7796,1,'2019-03-05 10:05:06'),(7797,1,'2019-03-05 10:10:07'),(7798,1,'2019-03-05 10:15:06'),(7799,1,'2019-03-05 10:20:06'),(7800,1,'2019-03-05 10:25:07'),(7801,1,'2019-03-05 10:30:05'),(7802,1,'2019-03-05 10:35:06'),(7803,1,'2019-03-05 10:40:07'),(7804,1,'2019-03-05 10:45:07'),(7805,1,'2019-03-05 10:50:06'),(7806,1,'2019-03-05 10:55:07'),(7807,1,'2019-03-05 11:00:05'),(7808,1,'2019-03-05 11:05:06'),(7809,1,'2019-03-05 11:10:06'),(7810,1,'2019-03-05 11:15:07'),(7811,1,'2019-03-05 11:20:07'),(7812,1,'2019-03-05 11:25:07'),(7813,1,'2019-03-05 11:30:05'),(7814,1,'2019-03-05 11:35:07'),(7815,1,'2019-03-05 11:40:07'),(7816,1,'2019-03-05 11:45:06'),(7817,1,'2019-03-05 11:50:07'),(7818,1,'2019-03-05 11:55:07'),(7819,1,'2019-03-05 12:00:05'),(7820,1,'2019-03-05 12:05:07'),(7821,1,'2019-03-05 12:10:07'),(7822,1,'2019-03-05 12:15:07'),(7823,1,'2019-03-05 12:20:06'),(7824,1,'2019-03-05 12:25:07'),(7825,1,'2019-03-05 12:30:05'),(7826,1,'2019-03-05 12:35:07'),(7827,1,'2019-03-05 12:40:06'),(7828,1,'2019-03-05 12:45:07'),(7829,1,'2019-03-05 12:50:06'),(7830,1,'2019-03-05 12:55:06'),(7831,1,'2019-03-05 13:00:06'),(7832,1,'2019-03-05 13:05:07'),(7833,1,'2019-03-05 13:10:06'),(7834,1,'2019-03-05 13:15:07'),(7835,1,'2019-03-05 13:20:07'),(7836,1,'2019-03-05 13:25:07'),(7837,1,'2019-03-05 13:30:05'),(7838,1,'2019-03-05 13:35:06'),(7839,1,'2019-03-05 13:40:06'),(7840,1,'2019-03-05 13:45:07'),(7841,1,'2019-03-05 13:50:06'),(7842,1,'2019-03-05 13:55:06'),(7843,1,'2019-03-05 14:00:06'),(7844,1,'2019-03-05 14:05:06'),(7845,1,'2019-03-05 14:10:07'),(7846,1,'2019-03-05 14:15:06'),(7847,1,'2019-03-05 14:20:06'),(7848,1,'2019-03-05 14:25:07'),(7849,1,'2019-03-05 14:30:05'),(7850,1,'2019-03-05 14:35:07'),(7851,1,'2019-03-05 14:40:07'),(7852,1,'2019-03-05 14:45:06'),(7853,1,'2019-03-05 14:50:07'),(7854,1,'2019-03-05 14:55:06'),(7855,1,'2019-03-05 15:00:05'),(7856,1,'2019-03-05 15:05:06'),(7857,1,'2019-03-05 15:10:06'),(7858,1,'2019-03-05 15:15:07'),(7859,1,'2019-03-05 15:20:07'),(7860,1,'2019-03-05 15:25:07'),(7861,1,'2019-03-05 15:30:05'),(7862,1,'2019-03-05 15:35:07'),(7863,1,'2019-03-05 15:40:07'),(7864,1,'2019-03-05 15:45:07'),(7865,1,'2019-03-05 15:50:06'),(7866,1,'2019-03-05 15:55:07'),(7867,1,'2019-03-05 16:00:06'),(7868,1,'2019-03-05 16:05:07'),(7869,1,'2019-03-05 16:10:07'),(7870,1,'2019-03-05 16:15:06'),(7871,1,'2019-03-05 16:20:07'),(7872,1,'2019-03-05 16:25:06'),(7873,1,'2019-03-05 16:30:06'),(7874,1,'2019-03-05 16:35:06'),(7875,1,'2019-03-05 16:40:07'),(7876,1,'2019-03-05 16:45:07'),(7877,1,'2019-03-05 16:50:07'),(7878,1,'2019-03-05 16:55:06'),(7879,1,'2019-03-05 17:00:05'),(7880,1,'2019-03-05 17:05:06'),(7881,1,'2019-03-05 17:10:07'),(7882,1,'2019-03-05 17:15:06'),(7883,1,'2019-03-05 17:20:07'),(7884,1,'2019-03-05 17:25:06'),(7885,1,'2019-03-05 17:30:05'),(7886,1,'2019-03-05 17:35:07'),(7887,1,'2019-03-05 17:40:07'),(7888,1,'2019-03-05 17:45:06'),(7889,1,'2019-03-05 17:50:07'),(7890,1,'2019-03-05 17:55:06'),(7891,1,'2019-03-05 18:00:06'),(7892,1,'2019-03-05 18:05:06'),(7893,1,'2019-03-05 18:10:07'),(7894,1,'2019-03-05 18:15:07'),(7895,1,'2019-03-05 18:20:07'),(7896,1,'2019-03-05 18:25:06'),(7897,1,'2019-03-05 18:30:05'),(7898,1,'2019-03-05 18:35:06'),(7899,1,'2019-03-05 18:40:07'),(7900,1,'2019-03-05 18:45:06'),(7901,1,'2019-03-05 18:50:07'),(7902,1,'2019-03-05 18:55:07'),(7903,1,'2019-03-05 19:00:05'),(7904,1,'2019-03-05 19:05:06'),(7905,1,'2019-03-05 19:10:07'),(7906,1,'2019-03-05 19:15:06'),(7907,1,'2019-03-05 19:20:07'),(7908,1,'2019-03-05 19:25:07'),(7909,1,'2019-03-05 19:30:05'),(7910,1,'2019-03-05 19:35:07'),(7911,1,'2019-03-05 19:40:07'),(7912,1,'2019-03-05 19:45:06'),(7913,1,'2019-03-05 19:50:06'),(7914,1,'2019-03-05 19:55:07'),(7915,1,'2019-03-05 20:00:06'),(7916,1,'2019-03-05 20:05:07'),(7917,1,'2019-03-05 20:10:06'),(7918,1,'2019-03-05 20:15:07'),(7919,1,'2019-03-05 20:20:07'),(7920,1,'2019-03-05 20:25:07'),(7921,1,'2019-03-05 20:30:05'),(7922,1,'2019-03-05 20:35:07'),(7923,1,'2019-03-05 20:40:07'),(7924,1,'2019-03-05 20:45:06'),(7925,1,'2019-03-05 20:50:06'),(7926,1,'2019-03-05 20:55:07'),(7927,1,'2019-03-05 21:00:05'),(7928,1,'2019-03-05 21:05:06'),(7929,1,'2019-03-05 21:10:07'),(7930,1,'2019-03-05 21:15:06'),(7931,1,'2019-03-05 21:20:07'),(7932,1,'2019-03-05 21:25:07'),(7933,1,'2019-03-05 21:30:05'),(7934,1,'2019-03-05 21:35:07'),(7935,1,'2019-03-05 21:40:06'),(7936,1,'2019-03-05 21:45:07'),(7937,1,'2019-03-05 21:50:06'),(7938,1,'2019-03-05 21:55:07'),(7939,1,'2019-03-05 22:00:05'),(7940,1,'2019-03-05 22:05:06'),(7941,1,'2019-03-05 22:10:06'),(7942,1,'2019-03-05 22:15:07'),(7943,1,'2019-03-05 22:20:06'),(7944,1,'2019-03-05 22:25:07'),(7945,1,'2019-03-05 22:30:05'),(7946,1,'2019-03-05 22:35:07'),(7947,1,'2019-03-05 22:40:06'),(7948,1,'2019-03-05 22:45:07'),(7949,1,'2019-03-05 22:50:06'),(7950,1,'2019-03-05 22:55:07'),(7951,1,'2019-03-05 23:00:05'),(7952,1,'2019-03-05 23:05:06'),(7953,1,'2019-03-05 23:10:05'),(7954,1,'2019-03-05 23:15:07'),(7955,1,'2019-03-05 23:20:07'),(7956,1,'2019-03-05 23:25:07'),(7957,1,'2019-03-05 23:30:05'),(7958,1,'2019-03-05 23:35:07'),(7959,1,'2019-03-05 23:40:06'),(7960,1,'2019-03-05 23:45:06'),(7961,1,'2019-03-05 23:50:07'),(7962,1,'2019-03-05 23:55:06'),(7963,1,'2019-03-06 00:00:06'),(7964,1,'2019-03-06 00:05:05'),(7965,1,'2019-03-06 00:10:07'),(7966,1,'2019-03-06 00:15:07'),(7967,1,'2019-03-06 00:20:06'),(7968,1,'2019-03-06 00:25:07'),(7969,1,'2019-03-06 00:30:05'),(7970,1,'2019-03-06 00:35:06'),(7971,1,'2019-03-06 00:40:06'),(7972,1,'2019-03-06 00:45:07'),(7973,1,'2019-03-06 00:50:07'),(7974,1,'2019-03-06 00:55:06'),(7975,1,'2019-03-06 01:00:06'),(7976,1,'2019-03-06 01:05:07'),(7977,1,'2019-03-06 01:10:06'),(7978,1,'2019-03-06 01:15:07'),(7979,1,'2019-03-06 01:20:06'),(7980,1,'2019-03-06 01:25:07'),(7981,1,'2019-03-06 01:30:05'),(7982,1,'2019-03-06 01:35:07'),(7983,1,'2019-03-06 01:40:07'),(7984,1,'2019-03-06 01:45:06'),(7985,1,'2019-03-06 01:50:06'),(7986,1,'2019-03-06 01:55:07'),(7987,1,'2019-03-06 02:00:05'),(7988,1,'2019-03-06 02:05:06'),(7989,1,'2019-03-06 02:10:07'),(7990,1,'2019-03-06 02:15:07'),(7991,1,'2019-03-06 02:20:07'),(7992,1,'2019-03-06 02:25:06'),(7993,1,'2019-03-06 02:30:05'),(7994,1,'2019-03-06 02:35:07'),(7995,1,'2019-03-06 02:40:06'),(7996,1,'2019-03-06 02:45:07'),(7997,1,'2019-03-06 02:50:07'),(7998,1,'2019-03-06 02:55:07'),(7999,1,'2019-03-06 03:00:05'),(8000,1,'2019-03-06 03:05:06'),(8001,1,'2019-03-06 03:10:07'),(8002,1,'2019-03-06 03:15:06'),(8003,1,'2019-03-06 03:20:06'),(8004,1,'2019-03-06 03:25:07'),(8005,1,'2019-03-06 03:30:06'),(8006,1,'2019-03-06 03:35:07'),(8007,1,'2019-03-06 03:40:06'),(8008,1,'2019-03-06 03:45:07'),(8009,1,'2019-03-06 03:50:07'),(8010,1,'2019-03-06 03:55:06'),(8011,1,'2019-03-06 04:00:05'),(8012,1,'2019-03-06 04:05:06'),(8013,1,'2019-03-06 04:10:07'),(8014,1,'2019-03-06 04:15:06'),(8015,1,'2019-03-06 04:20:07'),(8016,1,'2019-03-06 04:25:06'),(8017,1,'2019-03-06 04:30:06'),(8018,1,'2019-03-06 04:35:06'),(8019,1,'2019-03-06 04:40:07'),(8020,1,'2019-03-06 04:45:06'),(8021,1,'2019-03-06 04:50:07'),(8022,1,'2019-03-06 04:55:07'),(8023,1,'2019-03-06 05:00:05'),(8024,1,'2019-03-06 05:05:05'),(8025,1,'2019-03-06 05:10:07'),(8026,1,'2019-03-06 05:15:06'),(8027,1,'2019-03-06 05:20:07'),(8028,1,'2019-03-06 05:25:06'),(8029,1,'2019-03-06 05:30:06'),(8030,1,'2019-03-06 05:35:06'),(8031,1,'2019-03-06 05:40:07'),(8032,1,'2019-03-06 05:45:06'),(8033,1,'2019-03-06 05:50:07'),(8034,1,'2019-03-06 05:55:07'),(8035,1,'2019-03-06 06:00:05'),(8036,1,'2019-03-06 06:05:07'),(8037,1,'2019-03-06 06:10:06'),(8038,1,'2019-03-06 06:15:07'),(8039,1,'2019-03-06 06:20:07'),(8040,1,'2019-03-06 06:25:05'),(8041,1,'2019-03-06 06:30:06'),(8042,1,'2019-03-06 06:35:07'),(8043,1,'2019-03-06 06:40:06'),(8044,1,'2019-03-06 06:45:06'),(8045,1,'2019-03-06 06:50:06'),(8046,1,'2019-03-06 06:55:06'),(8047,1,'2019-03-06 07:00:06'),(8048,1,'2019-03-06 07:05:06'),(8049,1,'2019-03-06 07:10:07'),(8050,1,'2019-03-06 07:15:07'),(8051,1,'2019-03-06 07:20:07'),(8052,1,'2019-03-06 07:25:07'),(8053,1,'2019-03-06 07:30:05'),(8054,1,'2019-03-06 07:35:07'),(8055,1,'2019-03-06 07:40:06'),(8056,1,'2019-03-06 07:45:07'),(8057,1,'2019-03-06 07:50:07'),(8058,1,'2019-03-06 07:55:07'),(8059,1,'2019-03-06 08:00:05'),(8060,1,'2019-03-06 08:05:07'),(8061,1,'2019-03-06 08:10:07'),(8062,1,'2019-03-06 08:15:07'),(8063,1,'2019-03-06 08:20:06'),(8064,1,'2019-03-06 08:25:07'),(8065,1,'2019-03-06 08:30:05'),(8066,1,'2019-03-06 08:35:07'),(8067,1,'2019-03-06 08:40:07'),(8068,1,'2019-03-06 08:45:06'),(8069,1,'2019-03-06 08:50:07'),(8070,1,'2019-03-06 08:55:06'),(8071,1,'2019-03-06 09:00:05'),(8072,1,'2019-03-06 09:05:06'),(8073,1,'2019-03-06 09:10:07'),(8074,1,'2019-03-06 09:15:06'),(8075,1,'2019-03-06 09:20:07'),(8076,1,'2019-03-06 09:25:07'),(8077,1,'2019-03-06 09:30:05'),(8078,1,'2019-03-06 09:35:06'),(8079,1,'2019-03-06 09:40:06'),(8080,1,'2019-03-06 09:45:07'),(8081,1,'2019-03-06 09:50:06'),(8082,1,'2019-03-06 09:55:07'),(8083,1,'2019-03-06 10:00:05'),(8084,1,'2019-03-06 10:05:07'),(8085,1,'2019-03-06 10:10:06'),(8086,1,'2019-03-06 10:15:07'),(8087,1,'2019-03-06 10:20:07'),(8088,1,'2019-03-06 10:25:07'),(8089,1,'2019-03-06 10:30:05'),(8090,1,'2019-03-06 10:35:06'),(8091,1,'2019-03-06 10:40:06'),(8092,1,'2019-03-06 10:45:07'),(8093,1,'2019-03-06 10:50:07'),(8094,1,'2019-03-06 10:55:06'),(8095,1,'2019-03-06 11:00:06'),(8096,1,'2019-03-06 11:05:07'),(8097,1,'2019-03-06 11:10:07'),(8098,1,'2019-03-06 11:15:06'),(8099,1,'2019-03-06 11:20:06'),(8100,1,'2019-03-06 11:25:07'),(8101,1,'2019-03-06 11:30:05'),(8102,1,'2019-03-06 11:35:07'),(8103,1,'2019-03-06 11:40:07'),(8104,1,'2019-03-06 11:45:06'),(8105,1,'2019-03-06 11:50:07'),(8106,1,'2019-03-06 11:55:07'),(8107,1,'2019-03-06 12:00:05'),(8108,1,'2019-03-06 12:05:07'),(8109,1,'2019-03-06 12:10:06'),(8110,1,'2019-03-06 12:15:07'),(8111,1,'2019-03-06 12:20:07'),(8112,1,'2019-03-06 12:25:07'),(8113,1,'2019-03-06 12:30:05'),(8114,1,'2019-03-06 12:35:07'),(8115,1,'2019-03-06 12:40:07'),(8116,1,'2019-03-06 12:45:06'),(8117,1,'2019-03-06 12:50:07'),(8118,1,'2019-03-06 12:55:06'),(8119,1,'2019-03-06 13:00:05'),(8120,1,'2019-03-06 13:05:07'),(8121,1,'2019-03-06 13:10:06'),(8122,1,'2019-03-06 13:15:07'),(8123,1,'2019-03-06 13:20:06'),(8124,1,'2019-03-06 13:25:07'),(8125,1,'2019-03-06 13:30:05'),(8126,1,'2019-03-06 13:35:06'),(8127,1,'2019-03-06 13:40:07'),(8128,1,'2019-03-06 13:45:06'),(8129,1,'2019-03-06 13:50:07'),(8130,1,'2019-03-06 13:55:07'),(8131,1,'2019-03-06 14:00:05'),(8132,1,'2019-03-06 14:05:06'),(8133,1,'2019-03-06 14:10:07'),(8134,1,'2019-03-06 14:15:07'),(8135,1,'2019-03-06 14:20:07'),(8136,1,'2019-03-06 14:25:06'),(8137,1,'2019-03-06 14:30:05'),(8138,1,'2019-03-06 14:35:07'),(8139,1,'2019-03-06 14:40:07'),(8140,1,'2019-03-06 14:45:06'),(8141,1,'2019-03-06 14:50:07'),(8142,1,'2019-03-06 14:55:07'),(8143,1,'2019-03-06 15:00:05'),(8144,1,'2019-03-06 15:05:06'),(8145,1,'2019-03-06 15:10:07'),(8146,1,'2019-03-06 15:15:06'),(8147,1,'2019-03-06 15:20:06'),(8148,1,'2019-03-06 15:25:07'),(8149,1,'2019-03-06 15:30:05'),(8150,1,'2019-03-06 15:35:06'),(8151,1,'2019-03-06 15:40:06'),(8152,1,'2019-03-06 15:45:07'),(8153,1,'2019-03-06 15:50:07'),(8154,1,'2019-03-06 15:55:06'),(8155,1,'2019-03-06 16:00:06'),(8156,1,'2019-03-06 16:05:06'),(8157,1,'2019-03-06 16:10:06'),(8158,1,'2019-03-06 16:15:06'),(8159,1,'2019-03-06 16:20:06'),(8160,1,'2019-03-06 16:25:06'),(8161,1,'2019-03-06 16:30:06'),(8162,1,'2019-03-06 16:35:06'),(8163,1,'2019-03-06 16:40:07'),(8164,1,'2019-03-06 16:45:06'),(8165,1,'2019-03-06 16:50:07'),(8166,1,'2019-03-06 16:55:07'),(8167,1,'2019-03-06 17:00:05'),(8168,1,'2019-03-06 17:05:07'),(8169,1,'2019-03-06 17:10:06'),(8170,1,'2019-03-06 17:15:07'),(8171,1,'2019-03-06 17:20:07'),(8172,1,'2019-03-06 17:25:06'),(8173,1,'2019-03-06 17:30:06'),(8174,1,'2019-03-06 17:35:06'),(8175,1,'2019-03-06 17:40:06'),(8176,1,'2019-03-06 17:45:06'),(8177,1,'2019-03-06 17:50:07'),(8178,1,'2019-03-06 17:55:06'),(8179,1,'2019-03-06 18:00:05'),(8180,1,'2019-03-06 18:05:07'),(8181,1,'2019-03-06 18:10:06'),(8182,1,'2019-03-06 18:15:07'),(8183,1,'2019-03-06 18:20:06'),(8184,1,'2019-03-06 18:25:07'),(8185,1,'2019-03-06 18:30:06'),(8186,1,'2019-03-06 18:35:06'),(8187,1,'2019-03-06 18:40:07'),(8188,1,'2019-03-06 18:45:06'),(8189,1,'2019-03-06 18:50:07'),(8190,1,'2019-03-06 18:55:06'),(8191,1,'2019-03-06 19:00:06'),(8192,1,'2019-03-06 19:05:06'),(8193,1,'2019-03-06 19:10:07'),(8194,1,'2019-03-06 19:15:06'),(8195,1,'2019-03-06 19:20:07'),(8196,1,'2019-03-06 19:25:07'),(8197,1,'2019-03-06 19:30:05'),(8198,1,'2019-03-06 19:35:06'),(8199,1,'2019-03-06 19:40:07'),(8200,1,'2019-03-06 19:45:07'),(8201,1,'2019-03-06 19:50:07'),(8202,1,'2019-03-06 19:55:06'),(8203,1,'2019-03-06 20:00:05'),(8204,1,'2019-03-06 20:05:06'),(8205,1,'2019-03-06 20:10:07'),(8206,1,'2019-03-06 20:15:07'),(8207,1,'2019-03-06 20:20:06'),(8208,1,'2019-03-06 20:25:07'),(8209,1,'2019-03-06 20:30:06'),(8210,1,'2019-03-06 20:35:07'),(8211,1,'2019-03-06 20:40:06'),(8212,1,'2019-03-06 20:45:06'),(8213,1,'2019-03-06 20:50:07'),(8214,1,'2019-03-06 20:55:07'),(8215,1,'2019-03-06 21:00:05'),(8216,1,'2019-03-06 21:05:06'),(8217,1,'2019-03-06 21:10:07'),(8218,1,'2019-03-06 21:15:07'),(8219,1,'2019-03-06 21:20:07'),(8220,1,'2019-03-06 21:25:06'),(8221,1,'2019-03-06 21:30:06'),(8222,1,'2019-03-06 21:35:07'),(8223,1,'2019-03-06 21:40:07'),(8224,1,'2019-03-06 21:45:06'),(8225,1,'2019-03-06 21:50:07'),(8226,1,'2019-03-06 21:55:07'),(8227,1,'2019-03-06 22:00:05'),(8228,1,'2019-03-06 22:05:06'),(8229,1,'2019-03-06 22:10:07'),(8230,1,'2019-03-06 22:15:07'),(8231,1,'2019-03-06 22:20:07'),(8232,1,'2019-03-06 22:25:06'),(8233,1,'2019-03-06 22:30:06'),(8234,1,'2019-03-06 22:35:06'),(8235,1,'2019-03-06 22:40:06'),(8236,1,'2019-03-06 22:45:07'),(8237,1,'2019-03-06 22:50:07'),(8238,1,'2019-03-06 22:55:06'),(8239,1,'2019-03-06 23:00:06'),(8240,1,'2019-03-06 23:05:06'),(8241,1,'2019-03-06 23:10:07'),(8242,1,'2019-03-06 23:15:07'),(8243,1,'2019-03-06 23:20:07'),(8244,1,'2019-03-06 23:25:06'),(8245,1,'2019-03-06 23:30:05'),(8246,1,'2019-03-06 23:35:07'),(8247,1,'2019-03-06 23:40:07'),(8248,1,'2019-03-06 23:45:06'),(8249,1,'2019-03-06 23:50:07'),(8250,1,'2019-03-06 23:55:07'),(8251,1,'2019-03-07 00:00:05'),(8252,1,'2019-03-07 00:05:07'),(8253,1,'2019-03-07 00:10:07'),(8254,1,'2019-03-07 00:15:07'),(8255,1,'2019-03-07 00:20:07'),(8256,1,'2019-03-07 00:25:06'),(8257,1,'2019-03-07 00:30:06'),(8258,1,'2019-03-07 00:35:06'),(8259,1,'2019-03-07 00:40:07'),(8260,1,'2019-03-07 00:45:07'),(8261,1,'2019-03-07 00:50:06'),(8262,1,'2019-03-07 00:55:07'),(8263,1,'2019-03-07 01:00:05'),(8264,1,'2019-03-07 01:05:07'),(8265,1,'2019-03-07 01:10:06'),(8266,1,'2019-03-07 01:15:07'),(8267,1,'2019-03-07 01:20:07'),(8268,1,'2019-03-07 01:25:07'),(8269,1,'2019-03-07 01:30:05'),(8270,1,'2019-03-07 01:35:07'),(8271,1,'2019-03-07 01:40:07'),(8272,1,'2019-03-07 01:45:07'),(8273,1,'2019-03-07 01:50:06'),(8274,1,'2019-03-07 01:55:07'),(8275,1,'2019-03-07 02:00:05'),(8276,1,'2019-03-07 02:05:07'),(8277,1,'2019-03-07 02:10:07'),(8278,1,'2019-03-07 02:15:07'),(8279,1,'2019-03-07 02:20:06'),(8280,1,'2019-03-07 02:25:07'),(8281,1,'2019-03-07 02:30:05'),(8282,1,'2019-03-07 02:35:06'),(8283,1,'2019-03-07 02:40:07'),(8284,1,'2019-03-07 02:45:07'),(8285,1,'2019-03-07 02:50:06'),(8286,1,'2019-03-07 02:55:07'),(8287,1,'2019-03-07 03:00:05'),(8288,1,'2019-03-07 03:05:06'),(8289,1,'2019-03-07 03:10:07'),(8290,1,'2019-03-07 03:15:07'),(8291,1,'2019-03-07 03:20:07'),(8292,1,'2019-03-07 03:25:06'),(8293,1,'2019-03-07 03:30:05'),(8294,1,'2019-03-07 03:35:07'),(8295,1,'2019-03-07 03:40:07'),(8296,1,'2019-03-07 03:45:06'),(8297,1,'2019-03-07 03:50:07'),(8298,1,'2019-03-07 03:55:06'),(8299,1,'2019-03-07 04:00:05'),(8300,1,'2019-03-07 04:05:07'),(8301,1,'2019-03-07 04:10:07'),(8302,1,'2019-03-07 04:15:06'),(8303,1,'2019-03-07 04:20:07'),(8304,1,'2019-03-07 04:25:06'),(8305,1,'2019-03-07 04:30:06'),(8306,1,'2019-03-07 04:35:06'),(8307,1,'2019-03-07 04:40:06'),(8308,1,'2019-03-07 04:45:06'),(8309,1,'2019-03-07 04:50:07'),(8310,1,'2019-03-07 04:55:07'),(8311,1,'2019-03-07 05:00:05'),(8312,1,'2019-03-07 05:05:06'),(8313,1,'2019-03-07 05:10:06'),(8314,1,'2019-03-07 05:15:07'),(8315,1,'2019-03-07 05:20:07'),(8316,1,'2019-03-07 05:25:07'),(8317,1,'2019-03-07 05:30:05'),(8318,1,'2019-03-07 05:35:06'),(8319,1,'2019-03-07 05:40:06'),(8320,1,'2019-03-07 05:45:06'),(8321,1,'2019-03-07 05:50:07'),(8322,1,'2019-03-07 05:55:07'),(8323,1,'2019-03-07 06:00:05'),(8324,1,'2019-03-07 06:05:07'),(8325,1,'2019-03-07 06:10:06'),(8326,1,'2019-03-07 06:15:07'),(8327,1,'2019-03-07 06:20:07'),(8328,1,'2019-03-07 06:25:05'),(8329,1,'2019-03-07 06:30:06'),(8330,1,'2019-03-07 06:35:07'),(8331,1,'2019-03-07 06:40:07'),(8332,1,'2019-03-07 06:45:06'),(8333,1,'2019-03-07 06:50:07'),(8334,1,'2019-03-07 06:55:06'),(8335,1,'2019-03-07 07:00:06'),(8336,1,'2019-03-07 07:05:07'),(8337,1,'2019-03-07 07:10:07'),(8338,1,'2019-03-07 07:15:07'),(8339,1,'2019-03-07 07:20:06'),(8340,1,'2019-03-07 07:25:07'),(8341,1,'2019-03-07 07:30:05'),(8342,1,'2019-03-07 07:35:07'),(8343,1,'2019-03-07 07:40:07'),(8344,1,'2019-03-07 07:45:06'),(8345,1,'2019-03-07 07:50:07'),(8346,1,'2019-03-07 07:55:06'),(8347,1,'2019-03-07 08:00:06'),(8348,1,'2019-03-07 08:05:06'),(8349,1,'2019-03-07 08:10:07'),(8350,1,'2019-03-07 08:15:06'),(8351,1,'2019-03-07 08:20:07'),(8352,1,'2019-03-07 08:25:07'),(8353,1,'2019-03-07 08:30:05'),(8354,1,'2019-03-07 08:35:06'),(8355,1,'2019-03-07 08:40:07'),(8356,1,'2019-03-07 08:45:06'),(8357,1,'2019-03-07 08:50:07'),(8358,1,'2019-03-07 08:55:07'),(8359,1,'2019-03-07 09:00:05'),(8360,1,'2019-03-07 09:05:07'),(8361,1,'2019-03-07 09:10:07'),(8362,1,'2019-03-07 09:15:06'),(8363,1,'2019-03-07 09:20:07'),(8364,1,'2019-03-07 09:25:07'),(8365,1,'2019-03-07 09:30:05'),(8366,1,'2019-03-07 09:35:07'),(8367,1,'2019-03-07 09:40:07'),(8368,1,'2019-03-07 09:45:06'),(8369,1,'2019-03-07 09:50:06'),(8370,1,'2019-03-07 09:55:06'),(8371,1,'2019-03-07 10:00:06'),(8372,1,'2019-03-07 10:05:06'),(8373,1,'2019-03-07 10:10:07'),(8374,1,'2019-03-07 10:15:06'),(8375,1,'2019-03-07 10:20:07'),(8376,1,'2019-03-07 10:25:07'),(8377,1,'2019-03-07 10:30:05'),(8378,1,'2019-03-07 10:35:06'),(8379,1,'2019-03-07 10:40:06'),(8380,1,'2019-03-07 10:45:06'),(8381,1,'2019-03-07 10:50:07'),(8382,1,'2019-03-07 10:55:06'),(8383,1,'2019-03-07 11:00:05'),(8384,1,'2019-03-07 11:05:07'),(8385,1,'2019-03-07 11:10:06'),(8386,1,'2019-03-07 11:15:07'),(8387,1,'2019-03-07 11:20:06'),(8388,1,'2019-03-07 11:25:06'),(8389,1,'2019-03-07 11:30:05'),(8390,1,'2019-03-07 11:35:06'),(8391,1,'2019-03-07 11:40:07'),(8392,1,'2019-03-07 11:45:07'),(8393,1,'2019-03-07 11:50:06'),(8394,1,'2019-03-07 11:55:06'),(8395,1,'2019-03-07 12:00:06'),(8396,1,'2019-03-07 12:05:06'),(8397,1,'2019-03-07 12:10:06'),(8398,1,'2019-03-07 12:15:07'),(8399,1,'2019-03-07 12:20:06'),(8400,1,'2019-03-07 12:25:06'),(8401,1,'2019-03-07 12:30:06'),(8402,1,'2019-03-07 12:35:07'),(8403,1,'2019-03-07 12:40:06'),(8404,1,'2019-03-07 12:45:06'),(8405,1,'2019-03-07 12:50:07'),(8406,1,'2019-03-07 12:55:06'),(8407,1,'2019-03-07 13:00:06'),(8408,1,'2019-03-07 13:05:07'),(8409,1,'2019-03-07 13:10:07'),(8410,1,'2019-03-07 13:15:07'),(8411,1,'2019-03-07 13:20:06'),(8412,1,'2019-03-07 13:25:07'),(8413,1,'2019-03-07 13:30:06'),(8414,1,'2019-03-07 13:35:07'),(8415,1,'2019-03-07 13:40:06'),(8416,1,'2019-03-07 13:45:07'),(8417,1,'2019-03-07 13:50:06'),(8418,1,'2019-03-07 13:55:07'),(8419,1,'2019-03-07 14:00:05'),(8420,1,'2019-03-07 14:05:07'),(8421,1,'2019-03-07 14:10:07'),(8422,1,'2019-03-07 14:15:06'),(8423,1,'2019-03-07 14:20:06'),(8424,1,'2019-03-07 14:25:07'),(8425,1,'2019-03-07 14:30:06'),(8426,1,'2019-03-07 14:35:07'),(8427,1,'2019-03-07 14:40:06'),(8428,1,'2019-03-07 14:45:07'),(8429,1,'2019-03-07 14:50:06'),(8430,1,'2019-03-07 14:55:07'),(8431,1,'2019-03-07 15:00:04'),(8432,1,'2019-03-07 15:05:07'),(8433,1,'2019-03-07 15:10:07'),(8434,1,'2019-03-07 15:15:07'),(8435,1,'2019-03-07 15:20:06'),(8436,1,'2019-03-07 15:25:07'),(8437,1,'2019-03-07 15:30:06'),(8438,1,'2019-03-07 15:35:07'),(8439,1,'2019-03-07 15:40:07'),(8440,1,'2019-03-07 15:45:06'),(8441,1,'2019-03-07 15:50:07'),(8442,1,'2019-03-07 15:55:07'),(8443,1,'2019-03-07 16:00:05'),(8444,1,'2019-03-07 16:05:06'),(8445,1,'2019-03-07 16:10:06'),(8446,1,'2019-03-07 16:15:06'),(8447,1,'2019-03-07 16:20:07'),(8448,1,'2019-03-07 16:25:06'),(8449,1,'2019-03-07 16:30:06'),(8450,1,'2019-03-07 16:35:07'),(8451,1,'2019-03-07 16:40:06'),(8452,1,'2019-03-07 16:45:07'),(8453,1,'2019-03-07 16:50:06'),(8454,1,'2019-03-07 16:55:07'),(8455,1,'2019-03-07 17:00:06'),(8456,1,'2019-03-07 17:05:07'),(8457,1,'2019-03-07 17:10:06'),(8458,1,'2019-03-07 17:15:07'),(8459,1,'2019-03-07 17:20:06'),(8460,1,'2019-03-07 17:25:07'),(8461,1,'2019-03-07 17:30:05'),(8462,1,'2019-03-07 17:35:06'),(8463,1,'2019-03-07 17:40:06'),(8464,1,'2019-03-07 17:45:07'),(8465,1,'2019-03-07 17:50:06'),(8466,1,'2019-03-07 17:55:07'),(8467,1,'2019-03-07 18:00:05'),(8468,1,'2019-03-07 18:05:07'),(8469,1,'2019-03-07 18:10:06'),(8470,1,'2019-03-07 18:15:07'),(8471,1,'2019-03-07 18:20:06'),(8472,1,'2019-03-07 18:25:06'),(8473,1,'2019-03-07 18:30:06'),(8474,1,'2019-03-07 18:35:06'),(8475,1,'2019-03-07 18:40:06'),(8476,1,'2019-03-07 18:45:06'),(8477,1,'2019-03-07 18:50:06'),(8478,1,'2019-03-07 18:55:07'),(8479,1,'2019-03-07 19:00:06'),(8480,1,'2019-03-07 19:05:06'),(8481,1,'2019-03-07 19:10:06'),(8482,1,'2019-03-07 19:15:07'),(8483,1,'2019-03-07 19:20:07'),(8484,1,'2019-03-07 19:25:07'),(8485,1,'2019-03-07 19:30:05'),(8486,1,'2019-03-07 19:35:07'),(8487,1,'2019-03-07 19:40:07'),(8488,1,'2019-03-07 19:45:07'),(8489,1,'2019-03-07 19:50:06'),(8490,1,'2019-03-07 19:55:07'),(8491,1,'2019-03-07 20:00:06'),(8492,1,'2019-03-07 20:05:06'),(8493,1,'2019-03-07 20:10:07'),(8494,1,'2019-03-07 20:15:07'),(8495,1,'2019-03-07 20:20:06'),(8496,1,'2019-03-07 20:25:07'),(8497,1,'2019-03-07 20:30:05'),(8498,1,'2019-03-07 20:35:07'),(8499,1,'2019-03-07 20:40:06'),(8500,1,'2019-03-07 20:45:07'),(8501,1,'2019-03-07 20:50:07'),(8502,1,'2019-03-07 20:55:07'),(8503,1,'2019-03-07 21:00:05'),(8504,1,'2019-03-07 21:05:06'),(8505,1,'2019-03-07 21:10:07'),(8506,1,'2019-03-07 21:15:07'),(8507,1,'2019-03-07 21:20:06'),(8508,1,'2019-03-07 21:25:07'),(8509,1,'2019-03-07 21:30:06'),(8510,1,'2019-03-07 21:35:07'),(8511,1,'2019-03-07 21:40:06'),(8512,1,'2019-03-07 21:45:06'),(8513,1,'2019-03-07 21:50:07'),(8514,1,'2019-03-07 21:55:06'),(8515,1,'2019-03-07 22:00:06'),(8516,1,'2019-03-07 22:05:07'),(8517,1,'2019-03-07 22:10:07'),(8518,1,'2019-03-07 22:15:06'),(8519,1,'2019-03-07 22:20:07'),(8520,1,'2019-03-07 22:25:07'),(8521,1,'2019-03-07 22:30:05'),(8522,1,'2019-03-07 22:35:06'),(8523,1,'2019-03-07 22:40:07'),(8524,1,'2019-03-07 22:45:07'),(8525,1,'2019-03-07 22:50:07'),(8526,1,'2019-03-07 22:55:06'),(8527,1,'2019-03-07 23:00:06'),(8528,1,'2019-03-07 23:05:07'),(8529,1,'2019-03-07 23:10:07'),(8530,1,'2019-03-07 23:15:06'),(8531,1,'2019-03-07 23:20:06'),(8532,1,'2019-03-07 23:25:07'),(8533,1,'2019-03-07 23:30:05'),(8534,1,'2019-03-07 23:35:07'),(8535,1,'2019-03-07 23:40:07'),(8536,1,'2019-03-07 23:45:06'),(8537,1,'2019-03-07 23:50:07'),(8538,1,'2019-03-07 23:55:07'),(8539,1,'2019-03-08 00:00:05'),(8540,1,'2019-03-08 00:05:06'),(8541,1,'2019-03-08 00:10:07'),(8542,1,'2019-03-08 00:15:07'),(8543,1,'2019-03-08 00:20:06'),(8544,1,'2019-03-08 00:25:07'),(8545,1,'2019-03-08 00:30:05'),(8546,1,'2019-03-08 00:35:06'),(8547,1,'2019-03-08 00:40:06'),(8548,1,'2019-03-08 00:45:07'),(8549,1,'2019-03-08 00:50:06'),(8550,1,'2019-03-08 00:55:06'),(8551,1,'2019-03-08 01:00:05'),(8552,1,'2019-03-08 01:05:07'),(8553,1,'2019-03-08 01:10:07'),(8554,1,'2019-03-08 01:15:07'),(8555,1,'2019-03-08 01:20:06'),(8556,1,'2019-03-08 01:25:06'),(8557,1,'2019-03-08 01:30:06'),(8558,1,'2019-03-08 01:35:07'),(8559,1,'2019-03-08 01:40:06'),(8560,1,'2019-03-08 01:45:07'),(8561,1,'2019-03-08 01:50:06'),(8562,1,'2019-03-08 01:55:07'),(8563,1,'2019-03-08 02:00:06'),(8564,1,'2019-03-08 02:05:07'),(8565,1,'2019-03-08 02:10:07'),(8566,1,'2019-03-08 02:15:06'),(8567,1,'2019-03-08 02:20:07'),(8568,1,'2019-03-08 02:25:07'),(8569,1,'2019-03-08 02:30:05'),(8570,1,'2019-03-08 02:35:05'),(8571,1,'2019-03-08 02:40:06'),(8572,1,'2019-03-08 02:45:06'),(8573,1,'2019-03-08 02:50:07'),(8574,1,'2019-03-08 02:55:06'),(8575,1,'2019-03-08 03:00:06'),(8576,1,'2019-03-08 03:05:06'),(8577,1,'2019-03-08 03:10:06'),(8578,1,'2019-03-08 03:15:06'),(8579,1,'2019-03-08 03:20:07'),(8580,1,'2019-03-08 03:25:07'),(8581,1,'2019-03-08 03:30:05'),(8582,1,'2019-03-08 03:35:07'),(8583,1,'2019-03-08 03:40:07'),(8584,1,'2019-03-08 03:45:06'),(8585,1,'2019-03-08 03:50:07'),(8586,1,'2019-03-08 03:55:06'),(8587,1,'2019-03-08 04:00:06'),(8588,1,'2019-03-08 04:05:07'),(8589,1,'2019-03-08 04:10:07'),(8590,1,'2019-03-08 04:15:06'),(8591,1,'2019-03-08 04:20:06'),(8592,1,'2019-03-08 04:25:07'),(8593,1,'2019-03-08 04:30:06'),(8594,1,'2019-03-08 04:35:07'),(8595,1,'2019-03-08 04:40:06'),(8596,1,'2019-03-08 04:45:07'),(8597,1,'2019-03-08 04:50:06'),(8598,1,'2019-03-08 04:55:07'),(8599,1,'2019-03-08 05:00:06'),(8600,1,'2019-03-08 05:05:07'),(8601,1,'2019-03-08 05:10:06'),(8602,1,'2019-03-08 05:15:07'),(8603,1,'2019-03-08 05:20:07'),(8604,1,'2019-03-08 05:25:07'),(8605,1,'2019-03-08 05:30:05'),(8606,1,'2019-03-08 05:35:07'),(8607,1,'2019-03-08 05:40:07'),(8608,1,'2019-03-08 05:45:07'),(8609,1,'2019-03-08 05:50:06'),(8610,1,'2019-03-08 05:55:07'),(8611,1,'2019-03-08 06:00:05'),(8612,1,'2019-03-08 06:05:07'),(8613,1,'2019-03-08 06:10:07'),(8614,1,'2019-03-08 06:15:07'),(8615,1,'2019-03-08 06:20:06'),(8616,1,'2019-03-08 06:25:05'),(8617,1,'2019-03-08 06:30:06'),(8618,1,'2019-03-08 06:35:06'),(8619,1,'2019-03-08 06:40:07'),(8620,1,'2019-03-08 06:45:06'),(8621,1,'2019-03-08 06:50:07'),(8622,1,'2019-03-08 06:55:06'),(8623,1,'2019-03-08 07:00:05'),(8624,1,'2019-03-08 07:05:07'),(8625,1,'2019-03-08 07:10:06'),(8626,1,'2019-03-08 07:15:06'),(8627,1,'2019-03-08 07:20:07'),(8628,1,'2019-03-08 07:25:06'),(8629,1,'2019-03-08 07:30:06'),(8630,1,'2019-03-08 07:35:06'),(8631,1,'2019-03-08 07:40:07'),(8632,1,'2019-03-08 07:45:06'),(8633,1,'2019-03-08 07:50:06'),(8634,1,'2019-03-08 07:55:07'),(8635,1,'2019-03-08 08:00:05'),(8636,1,'2019-03-08 08:05:07'),(8637,1,'2019-03-08 08:10:07'),(8638,1,'2019-03-08 08:15:06'),(8639,1,'2019-03-08 08:20:06'),(8640,1,'2019-03-08 08:25:07'),(8641,1,'2019-03-08 08:30:05'),(8642,1,'2019-03-08 08:35:06'),(8643,1,'2019-03-08 08:40:07'),(8644,1,'2019-03-08 08:45:06'),(8645,1,'2019-03-08 08:50:07'),(8646,1,'2019-03-08 08:55:07'),(8647,1,'2019-03-08 09:00:05'),(8648,1,'2019-03-08 09:05:06'),(8649,1,'2019-03-08 09:10:07'),(8650,1,'2019-03-08 09:15:07'),(8651,1,'2019-03-08 09:20:07'),(8652,1,'2019-03-08 09:25:07'),(8653,1,'2019-03-08 09:30:05'),(8654,1,'2019-03-08 09:35:07'),(8655,1,'2019-03-08 09:40:07'),(8656,1,'2019-03-08 09:45:07'),(8657,1,'2019-03-08 09:50:06'),(8658,1,'2019-03-08 09:55:07'),(8659,1,'2019-03-08 10:00:05'),(8660,1,'2019-03-08 10:05:06'),(8661,1,'2019-03-08 10:10:07'),(8662,1,'2019-03-08 10:15:06'),(8663,1,'2019-03-08 10:20:06'),(8664,1,'2019-03-08 10:25:07'),(8665,1,'2019-03-08 10:30:05'),(8666,1,'2019-03-08 10:35:06'),(8667,1,'2019-03-08 10:40:07'),(8668,1,'2019-03-08 10:45:06'),(8669,1,'2019-03-08 10:50:06'),(8670,1,'2019-03-08 10:55:07'),(8671,1,'2019-03-08 11:00:05'),(8672,1,'2019-03-08 11:05:07'),(8673,1,'2019-03-08 11:10:07'),(8674,1,'2019-03-08 11:15:06'),(8675,1,'2019-03-08 11:20:07'),(8676,1,'2019-03-08 11:25:07'),(8677,1,'2019-03-08 11:30:05'),(8678,1,'2019-03-08 11:35:07'),(8679,1,'2019-03-08 11:40:06'),(8680,1,'2019-03-08 11:45:07'),(8681,1,'2019-03-08 11:50:07'),(8682,1,'2019-03-08 11:55:06'),(8683,1,'2019-03-08 12:00:06'),(8684,1,'2019-03-08 12:05:06'),(8685,1,'2019-03-08 12:10:07'),(8686,1,'2019-03-08 12:15:06'),(8687,1,'2019-03-08 12:20:06'),(8688,1,'2019-03-08 12:25:07'),(8689,1,'2019-03-08 12:30:05'),(8690,1,'2019-03-08 12:35:07'),(8691,1,'2019-03-08 12:40:07'),(8692,1,'2019-03-08 12:45:07'),(8693,1,'2019-03-08 12:50:06'),(8694,1,'2019-03-08 12:55:07'),(8695,1,'2019-03-08 13:00:05'),(8696,1,'2019-03-08 13:05:07'),(8697,1,'2019-03-08 13:10:07'),(8698,1,'2019-03-08 13:15:07'),(8699,1,'2019-03-08 13:20:06'),(8700,1,'2019-03-08 13:25:07'),(8701,1,'2019-03-08 13:30:05'),(8702,1,'2019-03-08 13:35:07'),(8703,1,'2019-03-08 13:40:07'),(8704,1,'2019-03-08 13:45:06'),(8705,1,'2019-03-08 13:50:07'),(8706,1,'2019-03-08 13:55:06'),(8707,1,'2019-03-08 14:00:05'),(8708,1,'2019-03-08 14:05:07'),(8709,1,'2019-03-08 14:10:06'),(8710,1,'2019-03-08 14:15:07'),(8711,1,'2019-03-08 14:20:07'),(8712,1,'2019-03-08 14:25:06'),(8713,1,'2019-03-08 14:30:06'),(8714,1,'2019-03-08 14:35:06'),(8715,1,'2019-03-08 14:40:07'),(8716,1,'2019-03-08 14:45:07'),(8717,1,'2019-03-08 14:50:06'),(8718,1,'2019-03-08 14:55:07'),(8719,1,'2019-03-08 15:00:06'),(8720,1,'2019-03-08 15:05:07'),(8721,1,'2019-03-08 15:10:07'),(8722,1,'2019-03-08 15:15:06'),(8723,1,'2019-03-08 15:20:07'),(8724,1,'2019-03-08 15:25:06'),(8725,1,'2019-03-08 15:30:06'),(8726,1,'2019-03-08 15:35:07'),(8727,1,'2019-03-08 15:40:06'),(8728,1,'2019-03-08 15:45:06'),(8729,1,'2019-03-08 15:50:07'),(8730,1,'2019-03-08 15:55:07'),(8731,1,'2019-03-08 16:00:05'),(8732,1,'2019-03-08 16:05:06'),(8733,1,'2019-03-08 16:10:06'),(8734,1,'2019-03-08 16:15:06'),(8735,1,'2019-03-08 16:20:07'),(8736,1,'2019-03-08 16:25:06'),(8737,1,'2019-03-08 16:30:06'),(8738,1,'2019-03-08 16:35:07'),(8739,1,'2019-03-08 16:40:07'),(8740,1,'2019-03-08 16:45:06'),(8741,1,'2019-03-08 16:50:06'),(8742,1,'2019-03-08 16:55:07'),(8743,1,'2019-03-08 17:00:05'),(8744,1,'2019-03-08 17:05:07'),(8745,1,'2019-03-08 17:10:07'),(8746,1,'2019-03-08 17:15:06'),(8747,1,'2019-03-08 17:20:07'),(8748,1,'2019-03-08 17:25:07'),(8749,1,'2019-03-08 17:30:05'),(8750,1,'2019-03-08 17:35:06'),(8751,1,'2019-03-08 17:40:07'),(8752,1,'2019-03-08 17:45:07'),(8753,1,'2019-03-08 17:50:07'),(8754,1,'2019-03-08 17:55:06'),(8755,1,'2019-03-08 18:00:06'),(8756,1,'2019-03-08 18:05:07'),(8757,1,'2019-03-08 18:10:06'),(8758,1,'2019-03-08 18:15:07'),(8759,1,'2019-03-08 18:20:07'),(8760,1,'2019-03-08 18:25:06'),(8761,1,'2019-03-08 18:30:05'),(8762,1,'2019-03-08 18:35:07'),(8763,1,'2019-03-08 18:40:07'),(8764,1,'2019-03-08 18:45:06'),(8765,1,'2019-03-08 18:50:07'),(8766,1,'2019-03-08 18:55:07'),(8767,1,'2019-03-08 19:00:05'),(8768,1,'2019-03-08 19:05:06'),(8769,1,'2019-03-08 19:10:06'),(8770,1,'2019-03-08 19:15:07'),(8771,1,'2019-03-08 19:20:06'),(8772,1,'2019-03-08 19:25:07'),(8773,1,'2019-03-08 19:30:05'),(8774,1,'2019-03-08 19:35:06'),(8775,1,'2019-03-08 19:40:06'),(8776,1,'2019-03-08 19:45:06'),(8777,1,'2019-03-08 19:50:07'),(8778,1,'2019-03-08 19:55:07'),(8779,1,'2019-03-08 20:00:05'),(8780,1,'2019-03-08 20:05:07'),(8781,1,'2019-03-08 20:10:07'),(8782,1,'2019-03-08 20:15:07'),(8783,1,'2019-03-08 20:20:06'),(8784,1,'2019-03-08 20:25:07'),(8785,1,'2019-03-08 20:30:06'),(8786,1,'2019-03-08 20:35:06'),(8787,1,'2019-03-08 20:40:06'),(8788,1,'2019-03-08 20:45:06'),(8789,1,'2019-03-08 20:50:07'),(8790,1,'2019-03-08 20:55:06'),(8791,1,'2019-03-08 21:00:06'),(8792,1,'2019-03-08 21:05:06'),(8793,1,'2019-03-08 21:10:07'),(8794,1,'2019-03-08 21:15:06'),(8795,1,'2019-03-08 21:20:07'),(8796,1,'2019-03-08 21:25:07'),(8797,1,'2019-03-08 21:30:05'),(8798,1,'2019-03-08 21:35:06'),(8799,1,'2019-03-08 21:40:07'),(8800,1,'2019-03-08 21:45:07'),(8801,1,'2019-03-08 21:50:06'),(8802,1,'2019-03-08 21:55:07'),(8803,1,'2019-03-08 22:00:06'),(8804,1,'2019-03-08 22:05:07'),(8805,1,'2019-03-08 22:10:07'),(8806,1,'2019-03-08 22:15:06'),(8807,1,'2019-03-08 22:20:07'),(8808,1,'2019-03-08 22:25:07'),(8809,1,'2019-03-08 22:30:05'),(8810,1,'2019-03-08 22:35:07'),(8811,1,'2019-03-08 22:40:07'),(8812,1,'2019-03-08 22:45:07'),(8813,1,'2019-03-08 22:50:06'),(8814,1,'2019-03-08 22:55:06'),(8815,1,'2019-03-08 23:00:06'),(8816,1,'2019-03-08 23:05:07'),(8817,1,'2019-03-08 23:10:07'),(8818,1,'2019-03-08 23:15:06'),(8819,1,'2019-03-08 23:20:07'),(8820,1,'2019-03-08 23:25:07'),(8821,1,'2019-03-08 23:30:06'),(8822,1,'2019-03-08 23:35:07'),(8823,1,'2019-03-08 23:40:06'),(8824,1,'2019-03-08 23:45:07'),(8825,1,'2019-03-08 23:50:07'),(8826,1,'2019-03-08 23:55:07'),(8827,1,'2019-03-09 00:00:05'),(8828,1,'2019-03-09 00:05:07'),(8829,1,'2019-03-09 00:10:06'),(8830,1,'2019-03-09 00:15:07'),(8831,1,'2019-03-09 00:20:07'),(8832,1,'2019-03-09 00:25:06'),(8833,1,'2019-03-09 00:30:06'),(8834,1,'2019-03-09 00:35:06'),(8835,1,'2019-03-09 00:40:07'),(8836,1,'2019-03-09 00:45:07'),(8837,1,'2019-03-09 00:50:06'),(8838,1,'2019-03-09 00:55:07'),(8839,1,'2019-03-09 01:00:05'),(8840,1,'2019-03-09 01:05:07'),(8841,1,'2019-03-09 01:10:06'),(8842,1,'2019-03-09 01:15:07'),(8843,1,'2019-03-09 01:20:06'),(8844,1,'2019-03-09 01:25:07'),(8845,1,'2019-03-09 01:30:06'),(8846,1,'2019-03-09 01:35:06'),(8847,1,'2019-03-09 01:40:07'),(8848,1,'2019-03-09 01:45:07'),(8849,1,'2019-03-09 01:50:07'),(8850,1,'2019-03-09 01:55:06'),(8851,1,'2019-03-09 02:00:06'),(8852,1,'2019-03-09 02:05:07'),(8853,1,'2019-03-09 02:10:07'),(8854,1,'2019-03-09 02:15:05'),(8855,1,'2019-03-09 02:20:06'),(8856,1,'2019-03-09 02:25:07'),(8857,1,'2019-03-09 02:30:05'),(8858,1,'2019-03-09 02:35:07'),(8859,1,'2019-03-09 02:40:06'),(8860,1,'2019-03-09 02:45:07'),(8861,1,'2019-03-09 02:50:07'),(8862,1,'2019-03-09 02:55:06'),(8863,1,'2019-03-09 03:00:05'),(8864,1,'2019-03-09 03:05:07'),(8865,1,'2019-03-09 03:10:07'),(8866,1,'2019-03-09 03:15:07'),(8867,1,'2019-03-09 03:20:06'),(8868,1,'2019-03-09 03:25:06'),(8869,1,'2019-03-09 03:30:06'),(8870,1,'2019-03-09 03:35:07'),(8871,1,'2019-03-09 03:40:06'),(8872,1,'2019-03-09 03:45:06'),(8873,1,'2019-03-09 03:50:07'),(8874,1,'2019-03-09 03:55:07'),(8875,1,'2019-03-09 04:00:05'),(8876,1,'2019-03-09 04:05:06'),(8877,1,'2019-03-09 04:10:06'),(8878,1,'2019-03-09 04:15:07'),(8879,1,'2019-03-09 04:20:07'),(8880,1,'2019-03-09 04:25:06'),(8881,1,'2019-03-09 04:30:06'),(8882,1,'2019-03-09 04:35:07'),(8883,1,'2019-03-09 04:40:07'),(8884,1,'2019-03-09 04:45:06'),(8885,1,'2019-03-09 04:50:07'),(8886,1,'2019-03-09 04:55:06'),(8887,1,'2019-03-09 05:00:06'),(8888,1,'2019-03-09 05:05:07'),(8889,1,'2019-03-09 05:10:06'),(8890,1,'2019-03-09 05:15:06'),(8891,1,'2019-03-09 05:20:07'),(8892,1,'2019-03-09 05:25:06'),(8893,1,'2019-03-09 05:30:06'),(8894,1,'2019-03-09 05:35:06'),(8895,1,'2019-03-09 05:40:07'),(8896,1,'2019-03-09 05:45:06'),(8897,1,'2019-03-09 05:50:06'),(8898,1,'2019-03-09 05:55:07'),(8899,1,'2019-03-09 06:00:05'),(8900,1,'2019-03-09 06:05:07'),(8901,1,'2019-03-09 06:10:07'),(8902,1,'2019-03-09 06:15:06'),(8903,1,'2019-03-09 06:20:06'),(8904,1,'2019-03-09 06:25:05'),(8905,1,'2019-03-09 06:30:04'),(8906,1,'2019-03-09 06:35:07'),(8907,1,'2019-03-09 06:40:07'),(8908,1,'2019-03-09 06:45:06'),(8909,1,'2019-03-09 06:50:07'),(8910,1,'2019-03-09 06:55:07'),(8911,1,'2019-03-09 07:00:05'),(8912,1,'2019-03-09 07:05:07'),(8913,1,'2019-03-09 07:10:06'),(8914,1,'2019-03-09 07:15:07'),(8915,1,'2019-03-09 07:20:07'),(8916,1,'2019-03-09 07:25:06'),(8917,1,'2019-03-09 07:30:06'),(8918,1,'2019-03-09 07:35:06'),(8919,1,'2019-03-09 07:40:07'),(8920,1,'2019-03-09 07:45:07'),(8921,1,'2019-03-09 07:50:07'),(8922,1,'2019-03-09 07:55:06'),(8923,1,'2019-03-09 08:00:05'),(8924,1,'2019-03-09 08:05:06'),(8925,1,'2019-03-09 08:10:07'),(8926,1,'2019-03-09 08:15:06'),(8927,1,'2019-03-09 08:20:06'),(8928,1,'2019-03-09 08:25:07'),(8929,1,'2019-03-09 08:30:06'),(8930,1,'2019-03-09 08:35:07'),(8931,1,'2019-03-09 08:40:07'),(8932,1,'2019-03-09 08:45:06'),(8933,1,'2019-03-09 08:50:06'),(8934,1,'2019-03-09 08:55:07'),(8935,1,'2019-03-09 09:00:05'),(8936,1,'2019-03-09 09:05:07'),(8937,1,'2019-03-09 09:10:06'),(8938,1,'2019-03-09 09:15:07'),(8939,1,'2019-03-09 09:20:06'),(8940,1,'2019-03-09 09:25:07'),(8941,1,'2019-03-09 09:30:05'),(8942,1,'2019-03-09 09:35:07'),(8943,1,'2019-03-09 09:40:07'),(8944,1,'2019-03-09 09:45:06'),(8945,1,'2019-03-09 09:50:06'),(8946,1,'2019-03-09 09:55:07'),(8947,1,'2019-03-09 10:00:05'),(8948,1,'2019-03-09 10:05:06'),(8949,1,'2019-03-09 10:10:07'),(8950,1,'2019-03-09 10:15:07'),(8951,1,'2019-03-09 10:20:06'),(8952,1,'2019-03-09 10:25:07'),(8953,1,'2019-03-09 10:30:06'),(8954,1,'2019-03-09 10:35:07'),(8955,1,'2019-03-09 10:40:06'),(8956,1,'2019-03-09 10:45:07'),(8957,1,'2019-03-09 10:50:06'),(8958,1,'2019-03-09 10:55:06'),(8959,1,'2019-03-09 11:00:05'),(8960,1,'2019-03-09 11:05:06'),(8961,1,'2019-03-09 11:10:06'),(8962,1,'2019-03-09 11:15:07'),(8963,1,'2019-03-09 11:20:07'),(8964,1,'2019-03-09 11:25:06'),(8965,1,'2019-03-09 11:30:05'),(8966,1,'2019-03-09 11:35:07'),(8967,1,'2019-03-09 11:40:06'),(8968,1,'2019-03-09 11:45:07'),(8969,1,'2019-03-09 11:50:07'),(8970,1,'2019-03-09 11:55:07'),(8971,1,'2019-03-09 12:00:05'),(8972,1,'2019-03-09 12:05:07'),(8973,1,'2019-03-09 12:10:07'),(8974,1,'2019-03-09 12:15:06'),(8975,1,'2019-03-09 12:20:07'),(8976,1,'2019-03-09 12:25:07'),(8977,1,'2019-03-09 12:30:05'),(8978,1,'2019-03-09 12:35:07'),(8979,1,'2019-03-09 12:40:07'),(8980,1,'2019-03-09 12:45:07'),(8981,1,'2019-03-09 12:50:07'),(8982,1,'2019-03-09 12:55:06'),(8983,1,'2019-03-09 13:00:05'),(8984,1,'2019-03-09 13:05:06'),(8985,1,'2019-03-09 13:10:07'),(8986,1,'2019-03-09 13:15:06'),(8987,1,'2019-03-09 13:20:07'),(8988,1,'2019-03-09 13:25:07'),(8989,1,'2019-03-09 13:30:05'),(8990,1,'2019-03-09 13:35:07'),(8991,1,'2019-03-09 13:40:07'),(8992,1,'2019-03-09 13:45:07'),(8993,1,'2019-03-09 13:50:06'),(8994,1,'2019-03-09 13:55:07'),(8995,1,'2019-03-09 14:00:05'),(8996,1,'2019-03-09 14:05:07'),(8997,1,'2019-03-09 14:10:07'),(8998,1,'2019-03-09 14:15:06'),(8999,1,'2019-03-09 14:20:06'),(9000,1,'2019-03-09 14:25:07'),(9001,1,'2019-03-09 14:30:05'),(9002,1,'2019-03-09 14:35:07'),(9003,1,'2019-03-09 14:40:07'),(9004,1,'2019-03-09 14:45:07'),(9005,1,'2019-03-09 14:50:06'),(9006,1,'2019-03-09 14:55:07'),(9007,1,'2019-03-09 15:00:05'),(9008,1,'2019-03-09 15:05:07'),(9009,1,'2019-03-09 15:10:06'),(9010,1,'2019-03-09 15:15:07'),(9011,1,'2019-03-09 15:20:07'),(9012,1,'2019-03-09 15:25:06'),(9013,1,'2019-03-09 15:30:05'),(9014,1,'2019-03-09 15:35:06'),(9015,1,'2019-03-09 15:40:06'),(9016,1,'2019-03-09 15:45:07'),(9017,1,'2019-03-09 15:50:07'),(9018,1,'2019-03-09 15:55:07'),(9019,1,'2019-03-09 16:00:05'),(9020,1,'2019-03-09 16:05:07'),(9021,1,'2019-03-09 16:10:06'),(9022,1,'2019-03-09 16:15:07'),(9023,1,'2019-03-09 16:20:06'),(9024,1,'2019-03-09 16:25:07'),(9025,1,'2019-03-09 16:30:05'),(9026,1,'2019-03-09 16:35:07'),(9027,1,'2019-03-09 16:40:06'),(9028,1,'2019-03-09 16:45:06'),(9029,1,'2019-03-09 16:50:07'),(9030,1,'2019-03-09 16:55:06'),(9031,1,'2019-03-09 17:00:05'),(9032,1,'2019-03-09 17:05:06'),(9033,1,'2019-03-09 17:10:07'),(9034,1,'2019-03-09 17:15:07'),(9035,1,'2019-03-09 17:20:07'),(9036,1,'2019-03-09 17:25:07'),(9037,1,'2019-03-09 17:30:05'),(9038,1,'2019-03-09 17:35:07'),(9039,1,'2019-03-09 17:40:07'),(9040,1,'2019-03-09 17:45:06'),(9041,1,'2019-03-09 17:50:07'),(9042,1,'2019-03-09 17:55:07'),(9043,1,'2019-03-09 18:00:05'),(9044,1,'2019-03-09 18:05:06'),(9045,1,'2019-03-09 18:10:07'),(9046,1,'2019-03-09 18:15:06'),(9047,1,'2019-03-09 18:20:07'),(9048,1,'2019-03-09 18:25:07'),(9049,1,'2019-03-09 18:30:05'),(9050,1,'2019-03-09 18:35:06'),(9051,1,'2019-03-09 18:40:07'),(9052,1,'2019-03-09 18:45:07'),(9053,1,'2019-03-09 18:50:07'),(9054,1,'2019-03-09 18:55:06'),(9055,1,'2019-03-09 19:00:05'),(9056,1,'2019-03-09 19:05:07'),(9057,1,'2019-03-09 19:10:06'),(9058,1,'2019-03-09 19:15:07'),(9059,1,'2019-03-09 19:20:07'),(9060,1,'2019-03-09 19:25:06'),(9061,1,'2019-03-09 19:30:05'),(9062,1,'2019-03-09 19:35:06'),(9063,1,'2019-03-09 19:40:06'),(9064,1,'2019-03-09 19:45:07'),(9065,1,'2019-03-09 19:50:07'),(9066,1,'2019-03-09 19:55:07'),(9067,1,'2019-03-09 20:00:05'),(9068,1,'2019-03-09 20:05:07'),(9069,1,'2019-03-09 20:10:07'),(9070,1,'2019-03-09 20:15:07'),(9071,1,'2019-03-09 20:20:06'),(9072,1,'2019-03-09 20:25:06'),(9073,1,'2019-03-09 20:30:06'),(9074,1,'2019-03-09 20:35:07'),(9075,1,'2019-03-09 20:40:07'),(9076,1,'2019-03-09 20:45:07'),(9077,1,'2019-03-09 20:50:06'),(9078,1,'2019-03-09 20:55:07'),(9079,1,'2019-03-09 21:00:06'),(9080,1,'2019-03-09 21:05:07'),(9081,1,'2019-03-09 21:10:06'),(9082,1,'2019-03-09 21:15:07'),(9083,1,'2019-03-09 21:20:07'),(9084,1,'2019-03-09 21:25:07'),(9085,1,'2019-03-09 21:30:05'),(9086,1,'2019-03-09 21:35:07'),(9087,1,'2019-03-09 21:40:07'),(9088,1,'2019-03-09 21:45:06'),(9089,1,'2019-03-09 21:50:07'),(9090,1,'2019-03-09 21:55:06'),(9091,1,'2019-03-09 22:00:06'),(9092,1,'2019-03-09 22:05:07'),(9093,1,'2019-03-09 22:10:07'),(9094,1,'2019-03-09 22:15:06'),(9095,1,'2019-03-09 22:20:07'),(9096,1,'2019-03-09 22:25:06'),(9097,1,'2019-03-09 22:30:06'),(9098,1,'2019-03-09 22:35:06'),(9099,1,'2019-03-09 22:40:07'),(9100,1,'2019-03-09 22:45:07'),(9101,1,'2019-03-09 22:50:06'),(9102,1,'2019-03-09 22:55:07'),(9103,1,'2019-03-09 23:00:05'),(9104,1,'2019-03-09 23:05:06'),(9105,1,'2019-03-09 23:10:06'),(9106,1,'2019-03-09 23:15:07'),(9107,1,'2019-03-09 23:20:07'),(9108,1,'2019-03-09 23:25:07'),(9109,1,'2019-03-09 23:30:05'),(9110,1,'2019-03-09 23:35:07'),(9111,1,'2019-03-09 23:40:05'),(9112,1,'2019-03-09 23:45:07'),(9113,1,'2019-03-09 23:50:07'),(9114,1,'2019-03-09 23:55:07'),(9115,1,'2019-03-10 00:00:05'),(9116,1,'2019-03-10 00:05:07'),(9117,1,'2019-03-10 00:10:07'),(9118,1,'2019-03-10 00:15:06'),(9119,1,'2019-03-10 00:20:07'),(9120,1,'2019-03-10 00:25:06'),(9121,1,'2019-03-10 00:30:06'),(9122,1,'2019-03-10 00:35:06'),(9123,1,'2019-03-10 00:40:07'),(9124,1,'2019-03-10 00:45:06'),(9125,1,'2019-03-10 00:50:07'),(9126,1,'2019-03-10 00:55:06'),(9127,1,'2019-03-10 01:00:05'),(9128,1,'2019-03-10 01:05:07'),(9129,1,'2019-03-10 01:10:06'),(9130,1,'2019-03-10 01:15:07'),(9131,1,'2019-03-10 01:20:07'),(9132,1,'2019-03-10 01:25:07'),(9133,1,'2019-03-10 01:30:06'),(9134,1,'2019-03-10 01:35:07'),(9135,1,'2019-03-10 01:40:07'),(9136,1,'2019-03-10 01:45:07'),(9137,1,'2019-03-10 01:50:06'),(9138,1,'2019-03-10 01:55:07'),(9139,1,'2019-03-10 02:00:06'),(9140,1,'2019-03-10 02:05:07'),(9141,1,'2019-03-10 02:10:07'),(9142,1,'2019-03-10 02:15:06'),(9143,1,'2019-03-10 02:20:07'),(9144,1,'2019-03-10 02:25:07'),(9145,1,'2019-03-10 02:30:05'),(9146,1,'2019-03-10 02:35:07'),(9147,1,'2019-03-10 02:40:07'),(9148,1,'2019-03-10 02:45:06'),(9149,1,'2019-03-10 02:50:07'),(9150,1,'2019-03-10 02:55:06'),(9151,1,'2019-03-10 03:00:05'),(9152,1,'2019-03-10 03:05:07'),(9153,1,'2019-03-10 03:10:07'),(9154,1,'2019-03-10 03:15:06'),(9155,1,'2019-03-10 03:20:07'),(9156,1,'2019-03-10 03:25:06'),(9157,1,'2019-03-10 03:30:06'),(9158,1,'2019-03-10 03:35:06'),(9159,1,'2019-03-10 03:40:07'),(9160,1,'2019-03-10 03:45:07'),(9161,1,'2019-03-10 03:50:07'),(9162,1,'2019-03-10 03:55:07'),(9163,1,'2019-03-10 04:00:05'),(9164,1,'2019-03-10 04:05:07'),(9165,1,'2019-03-10 04:10:06'),(9166,1,'2019-03-10 04:15:07'),(9167,1,'2019-03-10 04:20:06'),(9168,1,'2019-03-10 04:25:07'),(9169,1,'2019-03-10 04:30:06'),(9170,1,'2019-03-10 04:35:06'),(9171,1,'2019-03-10 04:40:06'),(9172,1,'2019-03-10 04:45:07'),(9173,1,'2019-03-10 04:50:07'),(9174,1,'2019-03-10 04:55:07'),(9175,1,'2019-03-10 05:00:05'),(9176,1,'2019-03-10 05:05:06'),(9177,1,'2019-03-10 05:10:06'),(9178,1,'2019-03-10 05:15:07'),(9179,1,'2019-03-10 05:20:07'),(9180,1,'2019-03-10 05:25:07'),(9181,1,'2019-03-10 05:30:05'),(9182,1,'2019-03-10 05:35:06'),(9183,1,'2019-03-10 05:40:06'),(9184,1,'2019-03-10 05:45:07'),(9185,1,'2019-03-10 05:50:07'),(9186,1,'2019-03-10 05:55:06'),(9187,1,'2019-03-10 06:00:05'),(9188,1,'2019-03-10 06:05:07'),(9189,1,'2019-03-10 06:10:07'),(9190,1,'2019-03-10 06:15:06'),(9191,1,'2019-03-10 06:20:07'),(9192,1,'2019-03-10 06:25:05'),(9193,1,'2019-03-10 06:30:06'),(9194,1,'2019-03-10 06:35:07'),(9195,1,'2019-03-10 06:40:06'),(9196,1,'2019-03-10 06:45:06'),(9197,1,'2019-03-10 06:50:06'),(9198,1,'2019-03-10 06:55:07'),(9199,1,'2019-03-10 07:00:05'),(9200,1,'2019-03-10 07:05:07'),(9201,1,'2019-03-10 07:10:06'),(9202,1,'2019-03-10 07:15:07'),(9203,1,'2019-03-10 07:20:06'),(9204,1,'2019-03-10 07:25:06'),(9205,1,'2019-03-10 07:30:05'),(9206,1,'2019-03-10 07:35:06'),(9207,1,'2019-03-10 07:40:07'),(9208,1,'2019-03-10 07:45:06'),(9209,1,'2019-03-10 07:50:07'),(9210,1,'2019-03-10 07:55:07'),(9211,1,'2019-03-10 08:00:05'),(9212,1,'2019-03-10 08:05:06'),(9213,1,'2019-03-10 08:10:07'),(9214,1,'2019-03-10 08:15:07'),(9215,1,'2019-03-10 08:20:06'),(9216,1,'2019-03-10 08:25:07'),(9217,1,'2019-03-10 08:30:05'),(9218,1,'2019-03-10 08:35:06'),(9219,1,'2019-03-10 08:40:06'),(9220,1,'2019-03-10 08:45:07'),(9221,1,'2019-03-10 08:50:06'),(9222,1,'2019-03-10 08:55:07'),(9223,1,'2019-03-10 09:00:06'),(9224,1,'2019-03-10 09:05:07'),(9225,1,'2019-03-10 09:10:07'),(9226,1,'2019-03-10 09:15:06'),(9227,1,'2019-03-10 09:20:07'),(9228,1,'2019-03-10 09:25:07'),(9229,1,'2019-03-10 09:30:05'),(9230,1,'2019-03-10 09:35:07'),(9231,1,'2019-03-10 09:40:07'),(9232,1,'2019-03-10 09:45:06'),(9233,1,'2019-03-10 09:50:06'),(9234,1,'2019-03-10 09:55:07'),(9235,1,'2019-03-10 10:00:05'),(9236,1,'2019-03-10 10:05:07'),(9237,1,'2019-03-10 10:10:06'),(9238,1,'2019-03-10 10:15:07'),(9239,1,'2019-03-10 10:20:07'),(9240,1,'2019-03-10 10:25:06'),(9241,1,'2019-03-10 10:30:05'),(9242,1,'2019-03-10 10:35:06'),(9243,1,'2019-03-10 10:40:06'),(9244,1,'2019-03-10 10:45:07'),(9245,1,'2019-03-10 10:50:07'),(9246,1,'2019-03-10 10:55:06'),(9247,1,'2019-03-10 11:00:05'),(9248,1,'2019-03-10 11:05:07'),(9249,1,'2019-03-10 11:10:07'),(9250,1,'2019-03-10 11:15:07'),(9251,1,'2019-03-10 11:20:06'),(9252,1,'2019-03-10 11:25:07'),(9253,1,'2019-03-10 11:30:06'),(9254,1,'2019-03-10 11:35:06'),(9255,1,'2019-03-10 11:40:06'),(9256,1,'2019-03-10 11:45:07'),(9257,1,'2019-03-10 11:50:07'),(9258,1,'2019-03-10 11:55:06'),(9259,1,'2019-03-10 12:00:05'),(9260,1,'2019-03-10 12:05:06'),(9261,1,'2019-03-10 12:10:07'),(9262,1,'2019-03-10 12:15:07'),(9263,1,'2019-03-10 12:20:07'),(9264,1,'2019-03-10 12:25:06'),(9265,1,'2019-03-10 12:30:06'),(9266,1,'2019-03-10 12:35:07'),(9267,1,'2019-03-10 12:40:07'),(9268,1,'2019-03-10 12:45:06'),(9269,1,'2019-03-10 12:50:06'),(9270,1,'2019-03-10 12:55:07'),(9271,1,'2019-03-10 13:00:05'),(9272,1,'2019-03-10 13:05:07'),(9273,1,'2019-03-10 13:10:07'),(9274,1,'2019-03-10 13:15:07'),(9275,1,'2019-03-10 13:20:06'),(9276,1,'2019-03-10 13:25:07'),(9277,1,'2019-03-10 13:30:06'),(9278,1,'2019-03-10 13:35:07'),(9279,1,'2019-03-10 13:40:06'),(9280,1,'2019-03-10 13:45:06'),(9281,1,'2019-03-10 13:50:07'),(9282,1,'2019-03-10 13:55:07'),(9283,1,'2019-03-10 14:00:05'),(9284,1,'2019-03-10 14:05:06'),(9285,1,'2019-03-10 14:10:07'),(9286,1,'2019-03-10 14:15:07'),(9287,1,'2019-03-10 14:20:07'),(9288,1,'2019-03-10 14:25:06'),(9289,1,'2019-03-10 14:30:05'),(9290,1,'2019-03-10 14:35:06'),(9291,1,'2019-03-10 14:40:07'),(9292,1,'2019-03-10 14:45:07'),(9293,1,'2019-03-10 14:50:06'),(9294,1,'2019-03-10 14:55:07'),(9295,1,'2019-03-10 15:00:06'),(9296,1,'2019-03-10 15:05:07'),(9297,1,'2019-03-10 15:10:07'),(9298,1,'2019-03-10 15:15:07'),(9299,1,'2019-03-10 15:20:07'),(9300,1,'2019-03-10 15:25:06'),(9301,1,'2019-03-10 15:30:05'),(9302,1,'2019-03-10 15:35:06'),(9303,1,'2019-03-10 15:40:06'),(9304,1,'2019-03-10 15:45:06'),(9305,1,'2019-03-10 15:50:06'),(9306,1,'2019-03-10 15:55:07'),(9307,1,'2019-03-10 16:00:05'),(9308,1,'2019-03-10 16:05:07'),(9309,1,'2019-03-10 16:10:07'),(9310,1,'2019-03-10 16:15:07'),(9311,1,'2019-03-10 16:20:07'),(9312,1,'2019-03-10 16:25:06'),(9313,1,'2019-03-10 16:30:06'),(9314,1,'2019-03-10 16:35:06'),(9315,1,'2019-03-10 16:40:07'),(9316,1,'2019-03-10 16:45:07'),(9317,1,'2019-03-10 16:50:07'),(9318,1,'2019-03-10 16:55:06'),(9319,1,'2019-03-10 17:00:05'),(9320,1,'2019-03-10 17:05:07'),(9321,1,'2019-03-10 17:10:07'),(9322,1,'2019-03-10 17:15:07'),(9323,1,'2019-03-10 17:20:06'),(9324,1,'2019-03-10 17:25:07'),(9325,1,'2019-03-10 17:30:05'),(9326,1,'2019-03-10 17:35:07'),(9327,1,'2019-03-10 17:40:06'),(9328,1,'2019-03-10 17:45:07'),(9329,1,'2019-03-10 17:50:07'),(9330,1,'2019-03-10 17:55:06'),(9331,1,'2019-03-10 18:00:05'),(9332,1,'2019-03-10 18:05:07'),(9333,1,'2019-03-10 18:10:06'),(9334,1,'2019-03-10 18:15:07'),(9335,1,'2019-03-10 18:20:07'),(9336,1,'2019-03-10 18:25:07'),(9337,1,'2019-03-10 18:30:05'),(9338,1,'2019-03-10 18:35:07'),(9339,1,'2019-03-10 18:40:06'),(9340,1,'2019-03-10 18:45:07'),(9341,1,'2019-03-10 18:50:07'),(9342,1,'2019-03-10 18:55:07'),(9343,1,'2019-03-10 19:00:05'),(9344,1,'2019-03-10 19:05:07'),(9345,1,'2019-03-10 19:10:06'),(9346,1,'2019-03-10 19:15:07'),(9347,1,'2019-03-10 19:20:07'),(9348,1,'2019-03-10 19:25:06'),(9349,1,'2019-03-10 19:30:06'),(9350,1,'2019-03-10 19:35:06'),(9351,1,'2019-03-10 19:40:07'),(9352,1,'2019-03-10 19:45:07'),(9353,1,'2019-03-10 19:50:07'),(9354,1,'2019-03-10 19:55:06'),(9355,1,'2019-03-10 20:00:06'),(9356,1,'2019-03-10 20:05:06'),(9357,1,'2019-03-10 20:10:07'),(9358,1,'2019-03-10 20:15:06'),(9359,1,'2019-03-10 20:20:07'),(9360,1,'2019-03-10 20:25:07'),(9361,1,'2019-03-10 20:30:05'),(9362,1,'2019-03-10 20:35:06'),(9363,1,'2019-03-10 20:40:07'),(9364,1,'2019-03-10 20:45:07'),(9365,1,'2019-03-10 20:50:07'),(9366,1,'2019-03-10 20:55:06'),(9367,1,'2019-03-10 21:00:06'),(9368,1,'2019-03-10 21:05:06'),(9369,1,'2019-03-10 21:10:07'),(9370,1,'2019-03-10 21:15:07'),(9371,1,'2019-03-10 21:20:06'),(9372,1,'2019-03-10 21:25:07'),(9373,1,'2019-03-10 21:30:05'),(9374,1,'2019-03-10 21:35:06'),(9375,1,'2019-03-10 21:40:07'),(9376,1,'2019-03-10 21:45:06'),(9377,1,'2019-03-10 21:50:07'),(9378,1,'2019-03-10 21:55:06'),(9379,1,'2019-03-10 22:00:05'),(9380,1,'2019-03-10 22:05:07'),(9381,1,'2019-03-10 22:10:07'),(9382,1,'2019-03-10 22:15:07'),(9383,1,'2019-03-10 22:20:06'),(9384,1,'2019-03-10 22:25:07'),(9385,1,'2019-03-10 22:30:05'),(9386,1,'2019-03-10 22:35:07'),(9387,1,'2019-03-10 22:40:06'),(9388,1,'2019-03-10 22:45:07'),(9389,1,'2019-03-10 22:50:06'),(9390,1,'2019-03-10 22:55:07'),(9391,1,'2019-03-10 23:00:05'),(9392,1,'2019-03-10 23:05:06'),(9393,1,'2019-03-10 23:10:07'),(9394,1,'2019-03-10 23:15:07'),(9395,1,'2019-03-10 23:20:07'),(9396,1,'2019-03-10 23:25:06'),(9397,1,'2019-03-10 23:30:06'),(9398,1,'2019-03-10 23:35:06'),(9399,1,'2019-03-10 23:40:06'),(9400,1,'2019-03-10 23:45:07'),(9401,1,'2019-03-10 23:50:06'),(9402,1,'2019-03-10 23:55:07'),(9403,1,'2019-03-11 00:00:05'),(9404,1,'2019-03-11 00:05:06'),(9405,1,'2019-03-11 00:10:07'),(9406,1,'2019-03-11 00:15:06'),(9407,1,'2019-03-11 00:20:06'),(9408,1,'2019-03-11 00:25:07'),(9409,1,'2019-03-11 00:30:05'),(9410,1,'2019-03-11 00:35:07'),(9411,1,'2019-03-11 00:40:06'),(9412,1,'2019-03-11 00:45:07'),(9413,1,'2019-03-11 00:50:07'),(9414,1,'2019-03-11 00:55:07'),(9415,1,'2019-03-11 01:00:05'),(9416,1,'2019-03-11 01:05:07'),(9417,1,'2019-03-11 01:10:07'),(9418,1,'2019-03-11 01:15:06'),(9419,1,'2019-03-11 01:20:07'),(9420,1,'2019-03-11 01:25:06'),(9421,1,'2019-03-11 01:30:06'),(9422,1,'2019-03-11 01:35:07'),(9423,1,'2019-03-11 01:40:06'),(9424,1,'2019-03-11 01:45:07'),(9425,1,'2019-03-11 01:50:07'),(9426,1,'2019-03-11 01:55:07'),(9427,1,'2019-03-11 02:00:05'),(9428,1,'2019-03-11 02:05:07'),(9429,1,'2019-03-11 02:10:06'),(9430,1,'2019-03-11 02:15:07'),(9431,1,'2019-03-11 02:20:07'),(9432,1,'2019-03-11 02:25:07'),(9433,1,'2019-03-11 02:30:05'),(9434,1,'2019-03-11 02:35:07'),(9435,1,'2019-03-11 02:40:06'),(9436,1,'2019-03-11 02:45:07'),(9437,1,'2019-03-11 02:50:06'),(9438,1,'2019-03-11 02:55:07'),(9439,1,'2019-03-11 03:00:06'),(9440,1,'2019-03-11 03:05:07'),(9441,1,'2019-03-11 03:10:07'),(9442,1,'2019-03-11 03:15:07'),(9443,1,'2019-03-11 03:20:06'),(9444,1,'2019-03-11 03:25:06'),(9445,1,'2019-03-11 03:30:05'),(9446,1,'2019-03-11 03:35:07'),(9447,1,'2019-03-11 03:40:07'),(9448,1,'2019-03-11 03:45:06'),(9449,1,'2019-03-11 03:50:07'),(9450,1,'2019-03-11 03:55:07'),(9451,1,'2019-03-11 04:00:05'),(9452,1,'2019-03-11 04:05:07'),(9453,1,'2019-03-11 04:10:07'),(9454,1,'2019-03-11 04:15:06'),(9455,1,'2019-03-11 04:20:07'),(9456,1,'2019-03-11 04:25:07'),(9457,1,'2019-03-11 04:30:05'),(9458,1,'2019-03-11 04:35:06'),(9459,1,'2019-03-11 04:40:07'),(9460,1,'2019-03-11 04:45:07'),(9461,1,'2019-03-11 04:50:07'),(9462,1,'2019-03-11 04:55:06'),(9463,1,'2019-03-11 05:00:05'),(9464,1,'2019-03-11 05:05:06'),(9465,1,'2019-03-11 05:10:06'),(9466,1,'2019-03-11 05:15:07'),(9467,1,'2019-03-11 05:20:07'),(9468,1,'2019-03-11 05:25:06'),(9469,1,'2019-03-11 05:30:05'),(9470,1,'2019-03-11 05:35:06'),(9471,1,'2019-03-11 05:40:06'),(9472,1,'2019-03-11 05:45:06'),(9473,1,'2019-03-11 05:50:06'),(9474,1,'2019-03-11 05:55:07'),(9475,1,'2019-03-11 06:00:05'),(9476,1,'2019-03-11 06:05:07'),(9477,1,'2019-03-11 06:10:07'),(9478,1,'2019-03-11 06:15:06'),(9479,1,'2019-03-11 06:20:07'),(9480,1,'2019-03-11 06:25:05'),(9481,1,'2019-03-11 06:30:06'),(9482,1,'2019-03-11 06:35:06'),(9483,1,'2019-03-11 06:40:07'),(9484,1,'2019-03-11 06:45:07'),(9485,1,'2019-03-11 06:50:07'),(9486,1,'2019-03-11 06:55:06'),(9487,1,'2019-03-11 07:00:05'),(9488,1,'2019-03-11 07:05:07'),(9489,1,'2019-03-11 07:10:07'),(9490,1,'2019-03-11 07:15:07'),(9491,1,'2019-03-11 07:20:06'),(9492,1,'2019-03-11 07:25:07'),(9493,1,'2019-03-11 07:30:05'),(9494,1,'2019-03-11 07:35:06'),(9495,1,'2019-03-11 07:40:07'),(9496,1,'2019-03-11 07:45:07'),(9497,1,'2019-03-11 07:50:06'),(9498,1,'2019-03-11 07:55:07'),(9499,1,'2019-03-11 08:00:05'),(9500,1,'2019-03-11 08:05:07'),(9501,1,'2019-03-11 08:10:06'),(9502,1,'2019-03-11 08:15:06'),(9503,1,'2019-03-11 08:20:07'),(9504,1,'2019-03-11 08:25:06'),(9505,1,'2019-03-11 08:30:06'),(9506,1,'2019-03-11 08:35:06'),(9507,1,'2019-03-11 08:40:07'),(9508,1,'2019-03-11 08:45:07'),(9509,1,'2019-03-11 08:50:07'),(9510,1,'2019-03-11 08:55:07'),(9511,1,'2019-03-11 09:00:05'),(9512,1,'2019-03-11 09:05:07'),(9513,1,'2019-03-11 09:10:06'),(9514,1,'2019-03-11 09:15:07'),(9515,1,'2019-03-11 09:20:06'),(9516,1,'2019-03-11 09:25:06'),(9517,1,'2019-03-11 09:30:05'),(9518,1,'2019-03-11 09:35:07'),(9519,1,'2019-03-11 09:40:07'),(9520,1,'2019-03-11 09:45:06'),(9521,1,'2019-03-11 09:50:07'),(9522,1,'2019-03-11 09:55:07'),(9523,1,'2019-03-11 10:00:05'),(9524,1,'2019-03-11 10:05:06'),(9525,1,'2019-03-11 10:10:07'),(9526,1,'2019-03-11 10:15:07'),(9527,1,'2019-03-11 10:20:07'),(9528,1,'2019-03-11 10:25:06'),(9529,1,'2019-03-11 10:30:06'),(9530,1,'2019-03-11 10:35:07'),(9531,1,'2019-03-11 10:40:06'),(9532,1,'2019-03-11 10:45:06'),(9533,1,'2019-03-11 10:50:07'),(9534,1,'2019-03-11 10:55:06'),(9535,1,'2019-03-11 11:00:05'),(9536,1,'2019-03-11 11:05:07'),(9537,1,'2019-03-11 11:10:06'),(9538,1,'2019-03-11 11:15:07'),(9539,1,'2019-03-11 11:20:07'),(9540,1,'2019-03-11 11:25:07'),(9541,1,'2019-03-11 11:30:05'),(9542,1,'2019-03-11 11:35:07'),(9543,1,'2019-03-11 11:40:07'),(9544,1,'2019-03-11 11:45:07'),(9545,1,'2019-03-11 11:50:07'),(9546,1,'2019-03-11 11:55:06'),(9547,1,'2019-03-11 12:00:06'),(9548,1,'2019-03-11 12:05:07'),(9549,1,'2019-03-11 12:10:06'),(9550,1,'2019-03-11 12:15:06'),(9551,1,'2019-03-11 12:20:06'),(9552,1,'2019-03-11 12:25:06'),(9553,1,'2019-03-11 12:30:05'),(9554,1,'2019-03-11 12:35:07'),(9555,1,'2019-03-11 12:40:07'),(9556,1,'2019-03-11 12:45:06'),(9557,1,'2019-03-11 12:50:07'),(9558,1,'2019-03-11 12:55:07'),(9559,1,'2019-03-11 13:00:05'),(9560,1,'2019-03-11 13:05:07'),(9561,1,'2019-03-11 13:10:07'),(9562,1,'2019-03-11 13:15:06'),(9563,1,'2019-03-11 13:20:07'),(9564,1,'2019-03-11 13:25:07'),(9565,1,'2019-03-11 13:30:05'),(9566,1,'2019-03-11 13:35:07'),(9567,1,'2019-03-11 13:40:07'),(9568,1,'2019-03-11 13:45:06'),(9569,1,'2019-03-11 13:50:07'),(9570,1,'2019-03-11 13:55:07'),(9571,1,'2019-03-11 14:00:05'),(9572,1,'2019-03-11 14:05:07'),(9573,1,'2019-03-11 14:10:07'),(9574,1,'2019-03-11 14:15:06'),(9575,1,'2019-03-11 14:20:06'),(9576,1,'2019-03-11 14:25:07'),(9577,1,'2019-03-11 14:30:05'),(9578,1,'2019-03-11 14:35:06'),(9579,1,'2019-03-11 14:40:06'),(9580,1,'2019-03-11 14:45:07'),(9581,1,'2019-03-11 14:50:07'),(9582,1,'2019-03-11 14:55:06'),(9583,1,'2019-03-11 15:00:06'),(9584,1,'2019-03-11 15:05:06'),(9585,1,'2019-03-11 15:10:07'),(9586,1,'2019-03-11 15:15:06'),(9587,1,'2019-03-11 15:20:07'),(9588,1,'2019-03-11 15:25:07'),(9589,1,'2019-03-11 15:30:05'),(9590,1,'2019-03-11 15:35:07'),(9591,1,'2019-03-11 15:40:06'),(9592,1,'2019-03-11 15:45:06'),(9593,1,'2019-03-11 15:50:07'),(9594,1,'2019-03-11 15:55:07'),(9595,1,'2019-03-11 16:00:05'),(9596,1,'2019-03-11 16:05:06'),(9597,1,'2019-03-11 16:10:07'),(9598,1,'2019-03-11 16:15:07'),(9599,1,'2019-03-11 16:20:06'),(9600,1,'2019-03-11 16:25:08'),(9601,1,'2019-03-11 16:30:05'),(9602,1,'2019-03-11 16:35:07'),(9603,1,'2019-03-11 16:40:07'),(9604,1,'2019-03-11 16:45:07'),(9605,1,'2019-03-11 16:50:06'),(9606,1,'2019-03-11 16:55:07'),(9607,1,'2019-03-11 17:00:05'),(9608,1,'2019-03-11 17:05:06'),(9609,1,'2019-03-11 17:10:07'),(9610,1,'2019-03-11 17:15:06'),(9611,1,'2019-03-11 17:20:06'),(9612,1,'2019-03-11 17:25:07'),(9613,1,'2019-03-11 17:30:05'),(9614,1,'2019-03-11 17:35:07'),(9615,1,'2019-03-11 17:40:06'),(9616,1,'2019-03-11 17:45:07'),(9617,1,'2019-03-11 17:50:06'),(9618,1,'2019-03-11 17:55:07'),(9619,1,'2019-03-11 18:00:05'),(9620,1,'2019-03-11 18:05:07'),(9621,1,'2019-03-11 18:10:06'),(9622,1,'2019-03-11 18:15:07'),(9623,1,'2019-03-11 18:20:07'),(9624,1,'2019-03-11 18:25:07'),(9625,1,'2019-03-11 18:30:05'),(9626,1,'2019-03-11 18:35:07'),(9627,1,'2019-03-11 18:40:07'),(9628,1,'2019-03-11 18:45:07'),(9629,1,'2019-03-11 18:50:06'),(9630,1,'2019-03-11 18:55:07'),(9631,1,'2019-03-11 19:00:05'),(9632,1,'2019-03-11 19:05:07'),(9633,1,'2019-03-11 19:10:07'),(9634,1,'2019-03-11 19:15:06'),(9635,1,'2019-03-11 19:20:07'),(9636,1,'2019-03-11 19:25:06'),(9637,1,'2019-03-11 19:30:06'),(9638,1,'2019-03-11 19:35:07'),(9639,1,'2019-03-11 19:40:07'),(9640,1,'2019-03-11 19:45:06'),(9641,1,'2019-03-11 19:50:07'),(9642,1,'2019-03-11 19:55:06'),(9643,1,'2019-03-11 20:00:06'),(9644,1,'2019-03-11 20:05:06'),(9645,1,'2019-03-11 20:10:07'),(9646,1,'2019-03-11 20:15:07'),(9647,1,'2019-03-11 20:20:07'),(9648,1,'2019-03-11 20:25:06'),(9649,1,'2019-03-11 20:30:05'),(9650,1,'2019-03-11 20:35:06'),(9651,1,'2019-03-11 20:40:05'),(9652,1,'2019-03-11 20:45:07'),(9653,1,'2019-03-11 20:50:06'),(9654,1,'2019-03-11 20:55:07'),(9655,1,'2019-03-11 21:00:06'),(9656,1,'2019-03-11 21:05:06'),(9657,1,'2019-03-11 21:10:07'),(9658,1,'2019-03-11 21:15:07'),(9659,1,'2019-03-11 21:20:06'),(9660,1,'2019-03-11 21:25:06'),(9661,1,'2019-03-11 21:30:06'),(9662,1,'2019-03-11 21:35:06'),(9663,1,'2019-03-11 21:40:07'),(9664,1,'2019-03-11 21:45:07'),(9665,1,'2019-03-11 21:50:07'),(9666,1,'2019-03-11 21:55:06'),(9667,1,'2019-03-11 22:00:05'),(9668,1,'2019-03-11 22:05:06'),(9669,1,'2019-03-11 22:10:07'),(9670,1,'2019-03-11 22:15:07'),(9671,1,'2019-03-11 22:20:06'),(9672,1,'2019-03-11 22:25:06'),(9673,1,'2019-03-11 22:30:06'),(9674,1,'2019-03-11 22:35:07'),(9675,1,'2019-03-11 22:40:07'),(9676,1,'2019-03-11 22:45:07'),(9677,1,'2019-03-11 22:50:06'),(9678,1,'2019-03-11 22:55:06'),(9679,1,'2019-03-11 23:00:05'),(9680,1,'2019-03-11 23:05:07'),(9681,1,'2019-03-11 23:10:07'),(9682,1,'2019-03-11 23:15:06'),(9683,1,'2019-03-11 23:20:07'),(9684,1,'2019-03-11 23:25:07'),(9685,1,'2019-03-11 23:30:05'),(9686,1,'2019-03-11 23:35:06'),(9687,1,'2019-03-11 23:40:07'),(9688,1,'2019-03-11 23:45:06'),(9689,1,'2019-03-11 23:50:07'),(9690,1,'2019-03-11 23:55:07'),(9691,1,'2019-03-12 00:00:05'),(9692,1,'2019-03-12 00:05:06'),(9693,1,'2019-03-12 00:10:06'),(9694,1,'2019-03-12 00:15:06'),(9695,1,'2019-03-12 00:20:07'),(9696,1,'2019-03-12 00:25:07'),(9697,1,'2019-03-12 00:30:05'),(9698,1,'2019-03-12 00:35:07'),(9699,1,'2019-03-12 00:40:07'),(9700,1,'2019-03-12 00:45:06'),(9701,1,'2019-03-12 00:50:07'),(9702,1,'2019-03-12 00:55:06'),(9703,1,'2019-03-12 01:00:06'),(9704,1,'2019-03-12 01:05:07'),(9705,1,'2019-03-12 01:10:07'),(9706,1,'2019-03-12 01:15:06'),(9707,1,'2019-03-12 01:20:07'),(9708,1,'2019-03-12 01:25:07'),(9709,1,'2019-03-12 01:30:05'),(9710,1,'2019-03-12 01:35:07'),(9711,1,'2019-03-12 01:40:07'),(9712,1,'2019-03-12 01:45:06'),(9713,1,'2019-03-12 01:50:07'),(9714,1,'2019-03-12 01:55:07'),(9715,1,'2019-03-12 02:00:05'),(9716,1,'2019-03-12 02:05:06'),(9717,1,'2019-03-12 02:10:07'),(9718,1,'2019-03-12 02:15:07'),(9719,1,'2019-03-12 02:20:07'),(9720,1,'2019-03-12 02:25:07'),(9721,1,'2019-03-12 02:30:05'),(9722,1,'2019-03-12 02:35:07'),(9723,1,'2019-03-12 02:40:07'),(9724,1,'2019-03-12 02:45:06'),(9725,1,'2019-03-12 02:50:06'),(9726,1,'2019-03-12 02:55:07'),(9727,1,'2019-03-12 03:00:05'),(9728,1,'2019-03-12 03:05:07'),(9729,1,'2019-03-12 03:10:07'),(9730,1,'2019-03-12 03:15:07'),(9731,1,'2019-03-12 03:20:06'),(9732,1,'2019-03-12 03:25:07'),(9733,1,'2019-03-12 03:30:06'),(9734,1,'2019-03-12 03:35:07'),(9735,1,'2019-03-12 03:40:06'),(9736,1,'2019-03-12 03:45:07'),(9737,1,'2019-03-12 03:50:07'),(9738,1,'2019-03-12 03:55:07'),(9739,1,'2019-03-12 04:00:05'),(9740,1,'2019-03-12 04:05:07'),(9741,1,'2019-03-12 04:10:06'),(9742,1,'2019-03-12 04:15:07'),(9743,1,'2019-03-12 04:20:07'),(9744,1,'2019-03-12 04:25:07'),(9745,1,'2019-03-12 04:30:05'),(9746,1,'2019-03-12 04:35:07'),(9747,1,'2019-03-12 04:40:06'),(9748,1,'2019-03-12 04:45:06'),(9749,1,'2019-03-12 04:50:07'),(9750,1,'2019-03-12 04:55:07'),(9751,1,'2019-03-12 05:00:05'),(9752,1,'2019-03-12 05:05:06'),(9753,1,'2019-03-12 05:10:07'),(9754,1,'2019-03-12 05:15:07'),(9755,1,'2019-03-12 05:20:06'),(9756,1,'2019-03-12 05:25:06'),(9757,1,'2019-03-12 05:30:06'),(9758,1,'2019-03-12 05:35:07'),(9759,1,'2019-03-12 05:40:06'),(9760,1,'2019-03-12 05:45:07'),(9761,1,'2019-03-12 05:50:06'),(9762,1,'2019-03-12 05:55:07'),(9763,1,'2019-03-12 06:00:06'),(9764,1,'2019-03-12 06:05:07'),(9765,1,'2019-03-12 06:10:07'),(9766,1,'2019-03-12 06:15:06'),(9767,1,'2019-03-12 06:20:06'),(9768,1,'2019-03-12 06:25:05'),(9769,1,'2019-03-12 06:30:05'),(9770,1,'2019-03-12 06:35:07'),(9771,1,'2019-03-12 06:40:07'),(9772,1,'2019-03-12 06:45:07'),(9773,1,'2019-03-12 06:50:06'),(9774,1,'2019-03-12 06:55:06'),(9775,1,'2019-03-12 07:00:05'),(9776,1,'2019-03-12 07:05:07'),(9777,1,'2019-03-12 07:10:06'),(9778,1,'2019-03-12 07:15:06'),(9779,1,'2019-03-12 07:20:07'),(9780,1,'2019-03-12 07:25:07'),(9781,1,'2019-03-12 07:30:05'),(9782,1,'2019-03-12 07:35:06'),(9783,1,'2019-03-12 07:40:07'),(9784,1,'2019-03-12 07:45:06'),(9785,1,'2019-03-12 07:50:07'),(9786,1,'2019-03-12 07:55:07'),(9787,1,'2019-03-12 08:00:05'),(9788,1,'2019-03-12 08:05:06'),(9789,1,'2019-03-12 08:10:07'),(9790,1,'2019-03-12 08:15:06'),(9791,1,'2019-03-12 08:20:07'),(9792,1,'2019-03-12 08:25:07'),(9793,1,'2019-03-12 08:30:05'),(9794,1,'2019-03-12 08:35:07'),(9795,1,'2019-03-12 08:40:06'),(9796,1,'2019-03-12 08:45:06'),(9797,1,'2019-03-12 08:50:07'),(9798,1,'2019-03-12 08:55:06'),(9799,1,'2019-03-12 09:00:06'),(9800,1,'2019-03-12 09:05:07'),(9801,1,'2019-03-12 09:10:06'),(9802,1,'2019-03-12 09:15:06'),(9803,1,'2019-03-12 09:20:07'),(9804,1,'2019-03-12 09:25:07'),(9805,1,'2019-03-12 09:30:05'),(9806,1,'2019-03-12 09:35:07'),(9807,1,'2019-03-12 09:40:06'),(9808,1,'2019-03-12 09:45:07'),(9809,1,'2019-03-12 09:50:07'),(9810,1,'2019-03-12 09:55:06'),(9811,1,'2019-03-12 10:00:06'),(9812,1,'2019-03-12 10:05:07'),(9813,1,'2019-03-12 10:10:07'),(9814,1,'2019-03-12 10:15:06'),(9815,1,'2019-03-12 10:20:06'),(9816,1,'2019-03-12 10:25:07'),(9817,1,'2019-03-12 10:30:05'),(9818,1,'2019-03-12 10:35:06'),(9819,1,'2019-03-12 10:40:07'),(9820,1,'2019-03-12 10:45:07'),(9821,1,'2019-03-12 10:50:06'),(9822,1,'2019-03-12 10:55:07'),(9823,1,'2019-03-12 11:00:06'),(9824,1,'2019-03-12 11:05:07'),(9825,1,'2019-03-12 11:10:07'),(9826,1,'2019-03-12 11:15:07'),(9827,1,'2019-03-12 11:20:06'),(9828,1,'2019-03-12 11:25:07'),(9829,1,'2019-03-12 11:30:05'),(9830,1,'2019-03-12 11:35:07'),(9831,1,'2019-03-12 11:40:06'),(9832,1,'2019-03-12 11:45:07'),(9833,1,'2019-03-12 11:50:07'),(9834,1,'2019-03-12 11:55:06'),(9835,1,'2019-03-12 12:00:05'),(9836,1,'2019-03-12 12:05:07'),(9837,1,'2019-03-12 12:10:07'),(9838,1,'2019-03-12 12:15:06'),(9839,1,'2019-03-12 12:20:07'),(9840,1,'2019-03-12 12:25:06'),(9841,1,'2019-03-12 12:30:06'),(9842,1,'2019-03-12 12:35:06'),(9843,1,'2019-03-12 12:40:07'),(9844,1,'2019-03-12 12:45:07'),(9845,1,'2019-03-12 12:50:06'),(9846,1,'2019-03-12 12:55:07'),(9847,1,'2019-03-12 13:00:05'),(9848,1,'2019-03-12 13:05:06'),(9849,1,'2019-03-12 13:10:07'),(9850,1,'2019-03-12 13:15:06'),(9851,1,'2019-03-12 13:20:06'),(9852,1,'2019-03-12 13:25:06'),(9853,1,'2019-03-12 13:30:06'),(9854,1,'2019-03-12 13:35:06'),(9855,1,'2019-03-12 13:40:07'),(9856,1,'2019-03-12 13:45:07'),(9857,1,'2019-03-12 13:50:06'),(9858,1,'2019-03-12 13:55:07'),(9859,1,'2019-03-12 14:00:05'),(9860,1,'2019-03-12 14:05:06'),(9861,1,'2019-03-12 14:10:07'),(9862,1,'2019-03-12 14:15:07'),(9863,1,'2019-03-12 14:20:06'),(9864,1,'2019-03-12 14:25:07'),(9865,1,'2019-03-12 14:30:06'),(9866,1,'2019-03-12 14:35:06'),(9867,1,'2019-03-12 14:40:07'),(9868,1,'2019-03-12 14:45:06'),(9869,1,'2019-03-12 14:50:07'),(9870,1,'2019-03-12 14:55:07'),(9871,1,'2019-03-12 15:00:05'),(9872,1,'2019-03-12 15:05:06'),(9873,1,'2019-03-12 15:10:07'),(9874,1,'2019-03-12 15:15:07'),(9875,1,'2019-03-12 15:20:07'),(9876,1,'2019-03-12 15:25:07'),(9877,1,'2019-03-12 15:30:05'),(9878,1,'2019-03-12 15:35:07'),(9879,1,'2019-03-12 15:40:06'),(9880,1,'2019-03-12 15:45:07'),(9881,1,'2019-03-12 15:50:06'),(9882,1,'2019-03-12 15:55:07'),(9883,1,'2019-03-12 16:00:06'),(9884,1,'2019-03-12 16:05:07'),(9885,1,'2019-03-12 16:10:06'),(9886,1,'2019-03-12 16:15:07'),(9887,1,'2019-03-12 16:20:06'),(9888,1,'2019-03-12 16:25:07'),(9889,1,'2019-03-12 16:30:05'),(9890,1,'2019-03-12 16:35:06'),(9891,1,'2019-03-12 16:40:07'),(9892,1,'2019-03-12 16:45:07'),(9893,1,'2019-03-12 16:50:06'),(9894,1,'2019-03-12 16:55:06'),(9895,1,'2019-03-12 17:00:05'),(9896,1,'2019-03-12 17:05:06'),(9897,1,'2019-03-12 17:10:06'),(9898,1,'2019-03-12 17:15:07'),(9899,1,'2019-03-12 17:20:07'),(9900,1,'2019-03-12 17:25:07'),(9901,1,'2019-03-12 17:30:05'),(9902,1,'2019-03-12 17:35:07'),(9903,1,'2019-03-12 17:40:06'),(9904,1,'2019-03-12 17:45:06'),(9905,1,'2019-03-12 17:50:07'),(9906,1,'2019-03-12 17:55:06'),(9907,1,'2019-03-12 18:00:06'),(9908,1,'2019-03-12 18:05:06'),(9909,1,'2019-03-12 18:10:06'),(9910,1,'2019-03-12 18:15:07'),(9911,1,'2019-03-12 18:20:07'),(9912,1,'2019-03-12 18:25:06'),(9913,1,'2019-03-12 18:30:06'),(9914,1,'2019-03-12 18:35:06'),(9915,1,'2019-03-12 18:40:07'),(9916,1,'2019-03-12 18:45:06'),(9917,1,'2019-03-12 18:50:07'),(9918,1,'2019-03-12 18:55:07'),(9919,1,'2019-03-12 19:00:05'),(9920,1,'2019-03-12 19:05:06'),(9921,1,'2019-03-12 19:10:07'),(9922,1,'2019-03-12 19:15:07'),(9923,1,'2019-03-12 19:20:07'),(9924,1,'2019-03-12 19:25:06'),(9925,1,'2019-03-12 19:30:05'),(9926,1,'2019-03-12 19:35:07'),(9927,1,'2019-03-12 19:40:07'),(9928,1,'2019-03-12 19:45:06'),(9929,1,'2019-03-12 19:50:07'),(9930,1,'2019-03-12 19:55:06'),(9931,1,'2019-03-12 20:00:05'),(9932,1,'2019-03-12 20:05:07'),(9933,1,'2019-03-12 20:10:07'),(9934,1,'2019-03-12 20:15:06'),(9935,1,'2019-04-01 20:15:06'),(9936,1,'2019-04-01 20:20:07'),(9937,1,'2019-04-01 20:25:06'),(9938,1,'2019-04-01 20:30:05'),(9939,1,'2019-04-01 20:35:07'),(9940,1,'2019-04-01 20:40:06'),(9941,1,'2019-04-01 20:45:06'),(9942,1,'2019-04-01 20:50:06'),(9943,1,'2019-04-01 20:55:06'),(9944,1,'2019-04-01 21:00:05'),(9945,1,'2019-04-01 21:05:06'),(9946,1,'2019-04-01 21:10:07'),(9947,1,'2019-04-01 21:15:06'),(9948,1,'2019-04-01 21:20:07'),(9949,1,'2019-04-01 21:25:06'),(9950,1,'2019-04-01 21:30:06'),(9951,1,'2019-04-01 21:35:07'),(9952,1,'2019-04-01 21:40:07'),(9953,1,'2019-04-01 21:45:05'),(9954,1,'2019-04-01 21:50:07'),(9955,1,'2019-04-01 21:55:07'),(9956,1,'2019-04-01 22:00:05'),(9957,1,'2019-04-01 22:05:06'),(9958,1,'2019-04-01 22:10:07'),(9959,1,'2019-04-01 22:15:07'),(9960,1,'2019-04-01 22:20:06'),(9961,1,'2019-04-01 22:25:07'),(9962,1,'2019-04-01 22:30:06'),(9963,1,'2019-04-01 22:35:07'),(9964,1,'2019-04-01 22:40:06'),(9965,1,'2019-04-01 22:45:06'),(9966,1,'2019-04-01 22:50:06'),(9967,1,'2019-04-01 22:55:07'),(9968,1,'2019-04-01 23:00:06'),(9969,1,'2019-04-01 23:05:06'),(9970,1,'2019-04-01 23:10:07'),(9971,1,'2019-04-01 23:15:06'),(9972,1,'2019-04-01 23:20:06'),(9973,1,'2019-04-01 23:25:07'),(9974,1,'2019-04-01 23:30:05'),(9975,1,'2019-04-01 23:35:06'),(9976,1,'2019-04-01 23:40:06'),(9977,1,'2019-04-01 23:45:07'),(9978,1,'2019-04-01 23:50:07'),(9979,1,'2019-04-01 23:55:06'); /*!40000 ALTER TABLE `tension_history` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2019-04-02 21:09:20
DROP DATABASE IF EXISTS moviePlanner_db; CREATE DATABASE moviePlanner_db; USE moviePlanner_db; CREATE TABLE movies ( id INT AUTO_INCREMENT NOT NULL, movie VARCHAR(100) NOT NULL, PRIMARY KEY (id) ); INSERT INTO movies (movie) VALUES ("Superbad"), ("Hercules"), ("Titanic");
<gh_stars>0 USE [master]; GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO IF EXISTS (SELECT * FROM sys.databases WHERE name = 'School') DROP DATABASE School; GO -- Create the School database. CREATE DATABASE School; GO -- Specify a simple recovery model -- to keep the log growth to a minimum. ALTER DATABASE School SET RECOVERY SIMPLE; GO USE School; GO -- Create the Departments table. IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Department]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[Departments]( [DepartmentID] [int] NOT NULL, [Name] [nvarchar](50) NOT NULL, [Budget] [money] NOT NULL, [CreatedDate] [datetime] NOT NULL CONSTRAINT [PK_Department] PRIMARY KEY CLUSTERED ( [DepartmentID] ASC )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] END GO -- Create the Students table. IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Students]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[Students]( [StudentID] [int] IDENTITY(1,1) NOT NULL, [FirstName] [nvarchar](50) NOT NULL, [LastName] [nvarchar](50) NOT NULL, [EnrollmentDate] [datetime] NULL, CONSTRAINT [PK_School.Students] PRIMARY KEY CLUSTERED ( [StudentID] ASC )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] END GO -- Create the Instructors table. IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Instructors]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[Instructors]( [InstructorID] [int] IDENTITY(1,1) NOT NULL, [FirstName] [nvarchar](50) NOT NULL, [LastName] [nvarchar](50) NOT NULL, [HireDate] [datetime] NULL, [Terminated] [bit] NOT NULL, CONSTRAINT [PK_School.Instructors] PRIMARY KEY CLUSTERED ( [InstructorID] ASC )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] END GO -- Create the CourseInstructors table. IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[CourseInstructors]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[CourseInstructors]( [CourseID] [int] NOT NULL, [InstructorID] [int] NOT NULL, CONSTRAINT [PK_CourseInstructor] PRIMARY KEY CLUSTERED ( [CourseID] ASC, [InstructorID] ASC )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] END GO -- Create the Courses table. IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Courses]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[Courses]( [CourseID] [int] NOT NULL IDENTITY(5001, 1), [Name] [nvarchar](100) NOT NULL, [Credits] [int] NOT NULL, [DepartmentID] [int] NOT NULL, CONSTRAINT [PK_School.Course] PRIMARY KEY CLUSTERED ( [CourseID] ASC )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] END GO --Create the StudentCourses table. IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[StudentCourses]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[StudentCourses]( [StudentID] [int] NOT NULL, [CourseID] [int] NOT NULL, [Grade] decimal(18,2) NOT NULL, [EnrolledYear] [int] NOT NULL, [EnrolledSemester] NVARCHAR(10) NOT NULL, [Completed] [bit] NOT NULL, [Dropped] [bit] NOT NULL, [DroppedTime] [DateTime] NULL, CONSTRAINT [PK_School.StudentCourses] PRIMARY KEY CLUSTERED ( [StudentID] ASC, [CourseID] ASC, [EnrolledYear] ASC, [EnrolledSemester] ASC )WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] END GO IF NOT EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_Students_StudentCourses]') AND parent_object_id = OBJECT_ID(N'[dbo].[StudentCourses]')) ALTER TABLE [dbo].[StudentCourses] WITH CHECK ADD CONSTRAINT [FK_Students_StudentCourses] FOREIGN KEY([StudentID]) REFERENCES [dbo].[Students] ([StudentID]) GO ALTER TABLE [dbo].[StudentCourses] CHECK CONSTRAINT [FK_Students_StudentCourses] GO IF NOT EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_Courses_StudentCourses]') AND parent_object_id = OBJECT_ID(N'[dbo].[StudentCourses]')) ALTER TABLE [dbo].[StudentCourses] WITH CHECK ADD CONSTRAINT [FK_Courses_StudentCourses] FOREIGN KEY([CourseID]) REFERENCES [dbo].[Courses] ([CourseID]) GO ALTER TABLE [dbo].[StudentCourses] CHECK CONSTRAINT [FK_Courses_StudentCourses] GO IF NOT EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_Courses_Departments]') AND parent_object_id = OBJECT_ID(N'[dbo].[Courses]')) ALTER TABLE [dbo].[Courses] WITH CHECK ADD CONSTRAINT [FK_Courses_Departments] FOREIGN KEY([DepartmentID]) REFERENCES [dbo].[Departments] ([DepartmentID]) GO ALTER TABLE [dbo].[Courses] CHECK CONSTRAINT [FK_Courses_Departments] GO IF NOT EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_Courses_CourseInstructors]') AND parent_object_id = OBJECT_ID(N'[dbo].[CourseInstructors]')) ALTER TABLE [dbo].[CourseInstructors] WITH CHECK ADD CONSTRAINT [FK_Courses_CourseInstructors] FOREIGN KEY([CourseID]) REFERENCES [dbo].[Courses] ([CourseID]) GO ALTER TABLE [dbo].[CourseInstructors] CHECK CONSTRAINT [FK_Courses_CourseInstructors] GO IF NOT EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'[dbo].[FK_Instructors_CourseInstructors]') AND parent_object_id = OBJECT_ID(N'[dbo].[CourseInstructors]')) ALTER TABLE [dbo].[CourseInstructors] WITH CHECK ADD CONSTRAINT [FK_Instructors_CourseInstructors] FOREIGN KEY([InstructorID]) REFERENCES [dbo].[Instructors] ([InstructorID]) GO ALTER TABLE [dbo].[CourseInstructors] CHECK CONSTRAINT [FK_Instructors_CourseInstructors] GO -- Insert data into the Person table. USE School GO --TODO: generate test data. DELETE FROM dbo.StudentCourses; DELETE FROM dbo.CourseInstructors; DELETE FROM dbo.Courses; DELETE FROM dbo.Students; DELETE FROM dbo.Instructors; DELETE FROM dbo.Departments; INSERT INTO [dbo].[Departments] ([DepartmentID] ,[Name] ,[Budget] ,[CreatedDate]) VALUES (1001, 'Business', 1500000, '1950-01-01'); INSERT INTO [dbo].[Departments] ([DepartmentID] ,[Name] ,[Budget] ,[CreatedDate]) VALUES (1002, 'Engineering', 3000000, '1972-01-01'); INSERT INTO [dbo].[Departments] ([DepartmentID] ,[Name] ,[Budget] ,[CreatedDate]) VALUES (1003, 'Human Sciences', 4200000, '1950-01-01'); INSERT INTO [dbo].[Departments] ([DepartmentID] ,[Name] ,[Budget] ,[CreatedDate]) VALUES (1004, 'Design', 150000, '1988-01-01'); INSERT INTO [dbo].[Departments] ([DepartmentID] ,[Name] ,[Budget] ,[CreatedDate]) VALUES (1005, 'Medicine', 5000000, '1949-01-01'); INSERT INTO [dbo].[Instructors] ([FirstName],[LastName] ,[HireDate] ,[Terminated]) VALUES ('James', 'Daunting', '2004-08-14', 0); INSERT INTO [dbo].[Instructors] ([FirstName],[LastName] ,[HireDate] ,[Terminated]) VALUES ('Amanda', 'Charbonneau', '1963-06-27', 1); INSERT INTO [dbo].[Instructors] ([FirstName],[LastName] ,[HireDate] ,[Terminated]) VALUES ('Lewis', 'Bell', '1996-12-28', 0); INSERT INTO [dbo].[Instructors] ([FirstName],[LastName] ,[HireDate] ,[Terminated]) VALUES ('Barbara', 'Rasmussen', '2019-01-02', 0); INSERT INTO [dbo].[Instructors] ([FirstName],[LastName] ,[HireDate] ,[Terminated]) VALUES ('Laurel', 'Harris', '2015-06-27', 0); INSERT INTO [dbo].[Students] ([FirstName] ,[LastName] ,[EnrollmentDate]) VALUES ('Jane', 'Rapp', '2018-01-06'); INSERT INTO [dbo].[Students] ([FirstName] ,[LastName] ,[EnrollmentDate]) VALUES ('Donald', 'Reed', '2018-01-06'); INSERT INTO [dbo].[Students] ([FirstName] ,[LastName] ,[EnrollmentDate]) VALUES ('Anton', 'Walsh', '2018-01-06'); INSERT INTO [dbo].[Students] ([FirstName] ,[LastName] ,[EnrollmentDate]) VALUES ('Angel', 'Breazeale', '2018-01-06'); INSERT INTO [dbo].[Students] ([FirstName] ,[LastName] ,[EnrollmentDate]) VALUES ('Raymundo', 'Criner', '2017-01-06'); INSERT INTO [dbo].[Students] ([FirstName] ,[LastName] ,[EnrollmentDate]) VALUES ('Roseann', 'Scott', '2017-01-06'); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Intro to Math', 3, 1002); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Intro to Chem', 3, 1005); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Intro to Bio', 3, 1005); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Advanced Engineering', 3, 1002); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Historical Singers', 2, 1004); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Intro to Planking', 1, 1002); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Advanced Diagnosises', 5, 1005); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Macroeconomics', 3, 1001); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Accounting 302', 3, 1001); INSERT INTO [dbo].[Courses] ([Name] ,[Credits] ,[DepartmentID]) VALUES ('Advanced Sciences', 4, 1003); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5001, 1); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5006, 1); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5002, 2); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5003, 2); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5007, 2); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5010, 3); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5007, 4); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5005, 4); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5008, 5); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5009, 5); INSERT INTO [dbo].[CourseInstructors] ([CourseID] ,[InstructorID]) VALUES (5005, 5); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (1 ,5001 ,3.5 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (1 ,5002 ,2.9 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (1 ,5003 ,3.2 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (1 ,5006 ,4.0 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (2 ,5010 ,3.5 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (2 ,5008 ,2.9 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (2 ,5009 ,3.2 ,2018 , 'Fall',1, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (2 ,5002 ,3.95 ,2018 , 'Fall',1, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (3 ,5001 ,3.5 ,2019 , 'Fall',0, 1, '2018-08-24'); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (3 ,5002 ,2.9 ,2019 , 'Fall',0, 1, '2018-08-24'); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (3 ,5001 ,3.2 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (3 ,5002 ,4.0 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (4 ,5001 ,2.0 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (4 ,5002 ,2.1 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (4 ,5003 ,2.5 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (4 ,5005 ,4.0 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (5 ,5010 ,3.5 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (5 ,5007 ,2.9 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (5 ,5004 ,3.2 ,2019 , 'Winter',0, 0, NULL); INSERT INTO [dbo].[StudentCourses] ([StudentID] ,[CourseID] ,[Grade] ,[EnrolledYear] ,[EnrolledSemester] ,[Completed] ,[Dropped] ,[DroppedTime]) VALUES (5 ,5001 ,4.0 ,2018 , 'Fall',1, 0, NULL); GO
-- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Waktu pembuatan: 17 Jun 2021 pada 06.36 -- Versi server: 10.4.11-MariaDB -- Versi PHP: 7.2.27 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `sip_db` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `do` -- CREATE TABLE `do` ( `id` int(11) NOT NULL, `no_do` varchar(12) NOT NULL, `outlet_id` int(1) NOT NULL, `status_id` int(1) NOT NULL, `date_created` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `do` -- INSERT INTO `do` (`id`, `no_do`, `outlet_id`, `status_id`, `date_created`) VALUES (1, 'D01-00011220', 2, 3, '2020-12-28 17:07:18'), (2, 'D02-00021220', 3, 2, '2020-12-28 17:08:02'), (3, 'D03-00030621', 4, 1, '2021-06-07 09:14:07'); -- -------------------------------------------------------- -- -- Struktur dari tabel `do_detail` -- CREATE TABLE `do_detail` ( `id` int(11) NOT NULL, `do_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `qty` int(11) NOT NULL, `total_price` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `do_detail` -- INSERT INTO `do_detail` (`id`, `do_id`, `product_id`, `qty`, `total_price`) VALUES (1, 1, 8, 5, 37500), (2, 1, 10, 2, 22000), (3, 1, 11, 4, 44000), (4, 2, 8, 4, 30000), (5, 2, 11, 3, 33000), (6, 3, 8, 6, 45000), (7, 3, 9, 3, 18000), (8, 3, 10, 4, 44000), (9, 3, 11, 6, 66000); -- -------------------------------------------------------- -- -- Struktur dari tabel `faktur` -- CREATE TABLE `faktur` ( `id` int(11) NOT NULL, `no_faktur` varchar(12) NOT NULL, `outlet_id` int(11) NOT NULL, `status_id` int(1) NOT NULL DEFAULT 1, `date_created` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `faktur` -- INSERT INTO `faktur` (`id`, `no_faktur`, `outlet_id`, `status_id`, `date_created`) VALUES (9, 'F03-00010820', 4, 3, '2020-08-20 19:40:16'), (10, 'F02-00020821', 3, 2, '2020-08-21 19:43:51'), (11, 'F01-00030621', 2, 2, '2021-06-07 16:05:27'), (12, 'F03-00040621', 4, 1, '2021-06-07 16:11:19'), (13, 'F001-0005062', 2, 1, '2021-06-07 16:47:45'); -- -------------------------------------------------------- -- -- Struktur dari tabel `faktur_detail` -- CREATE TABLE `faktur_detail` ( `id` int(11) NOT NULL, `faktur_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `qty` int(11) NOT NULL, `total_price` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `faktur_detail` -- INSERT INTO `faktur_detail` (`id`, `faktur_id`, `product_id`, `qty`, `total_price`) VALUES (18, 9, 6, 3, 18000), (19, 10, 2, 2, 14000), (20, 10, 1, 2, 16000), (21, 10, 4, 1, 5000), (22, 10, 3, 3, 21000), (23, 10, 5, 1, 5500), (24, 11, 1, 5, 40000), (25, 11, 2, 5, 35000), (26, 11, 3, 5, 35000), (27, 11, 4, 4, 20000), (28, 11, 5, 2, 11000), (29, 12, 6, 3, 18000), (30, 12, 5, 2, 11000), (31, 13, 1, 8, 64000), (32, 13, 2, 10, 70000); -- -------------------------------------------------------- -- -- Struktur dari tabel `outlet` -- CREATE TABLE `outlet` ( `id` int(11) NOT NULL, `outlet` varchar(128) NOT NULL, `address` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `outlet` -- INSERT INTO `outlet` (`id`, `outlet`, `address`) VALUES (1, 'Kantor Pusat', 'Jl. <NAME>g. Koni No. 35 A Cinangka Sawangan Depok'), (2, 'RSUD Kota Bogor', 'Jl. DR. Semeru No. 120 Menteng, Kec. Bogor Barat Kota Bogor, Jawa Barat 16112'), (3, 'RS Koja', 'Jl. Deli No. 4 RT 11 RW 7 Kec. Koja Kota Jakarta Utara, DKI Jakarta 14220'), (4, 'RSIA Buah Hati Pamulang', 'Jl. Siliwangi No. 189 Benda Baru Kec. Pamulang Kota Tangerang Selatan, Banten 15416'); -- -------------------------------------------------------- -- -- Struktur dari tabel `product` -- CREATE TABLE `product` ( `id` int(11) NOT NULL, `product` varchar(128) NOT NULL, `price` int(11) NOT NULL, `type_id` int(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `product` -- INSERT INTO `product` (`id`, `product`, `price`, `type_id`) VALUES (1, 'Brownies Keju/Pandan', 8000, 1), (2, 'Brownies Coklat', 7000, 1), (3, 'Brownies Almond', 7000, 1), (4, 'Ciffon Coklat Slice', 5000, 1), (5, 'Ciffon Pandan/Strawberry', 5500, 1), (6, 'Ciffon Abon/Bananaca', 6000, 1), (8, 'Aqua 1500 ml', 7500, 2), (9, 'Aqua 600 ml', 6000, 2), (10, 'Lemon Water', 11000, 2), (11, 'Orange Water', 11000, 2); -- -------------------------------------------------------- -- -- Struktur dari tabel `product_type` -- CREATE TABLE `product_type` ( `id` int(11) NOT NULL, `type` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `product_type` -- INSERT INTO `product_type` (`id`, `type`) VALUES (1, 'faktur penjualan'), (2, 'delivery order'); -- -------------------------------------------------------- -- -- Struktur dari tabel `status` -- CREATE TABLE `status` ( `id` int(11) NOT NULL, `status` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `status` -- INSERT INTO `status` (`id`, `status`) VALUES (1, 'requested'), (2, 'approved'), (3, 'delivered'); -- -------------------------------------------------------- -- -- Struktur dari tabel `user` -- CREATE TABLE `user` ( `id` int(11) NOT NULL, `username` varchar(128) NOT NULL, `name` varchar(128) NOT NULL, `image` varchar(128) NOT NULL, `password` varchar(256) NOT NULL, `role_id` int(11) NOT NULL, `outlet_id` int(11) NOT NULL, `date_created` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user` -- INSERT INTO `user` (`id`, `username`, `name`, `image`, `password`, `role_id`, `outlet_id`, `date_created`) VALUES (1, 'admin1', '<NAME>', 'default.jpg', '$2y$10$YiFQmEAbOVNB/CsWSLkzmuP9zN.sEOHrD6h9T5EQcOnA5a5HSP9rO', 1, 1, '2020-08-01 14:22:56'), (2, 'heny', '<NAME>', 'default.jpg', '$2y$10$hfCawCLfzSDk2a3Q/vAM5e0nCrhAh.0PjFc4quOJZmI8klrSHgv42', 2, 2, '2020-08-04 14:23:11'), (3, 'sandysuy', '<NAME>', 'default.jpg', '$2y$10$WMI3sb7UPf7/FEFGdoXnYOO0cPsDqXljmeylBQ71dqSdCblwf59ta', 2, 3, '2020-08-04 14:23:26'), (4, 'nuri', '<NAME>', 'default.jpg', '$2y$10$xkL8e9y3WQ/9o9OFU07cR.a.sF9ZqjEdZLNBskHEV.GMbl7aamTMC', 2, 4, '2020-08-13 14:24:20'); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_access_menu` -- CREATE TABLE `user_access_menu` ( `id` int(11) NOT NULL, `role_id` int(11) NOT NULL, `menu_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user_access_menu` -- INSERT INTO `user_access_menu` (`id`, `role_id`, `menu_id`) VALUES (1, 1, 1), (2, 1, 2), (3, 1, 3), (4, 2, 1), (5, 2, 3); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_menu` -- CREATE TABLE `user_menu` ( `id` int(11) NOT NULL, `menu` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user_menu` -- INSERT INTO `user_menu` (`id`, `menu`) VALUES (1, 'Document'), (2, 'Management'), (3, 'Report'); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_role` -- CREATE TABLE `user_role` ( `id` int(11) NOT NULL, `role` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user_role` -- INSERT INTO `user_role` (`id`, `role`) VALUES (1, 'Admin Penjualan'), (2, 'Sales Promotion Girl'); -- -------------------------------------------------------- -- -- Struktur dari tabel `user_sub_menu` -- CREATE TABLE `user_sub_menu` ( `id` int(11) NOT NULL, `menu_id` int(11) NOT NULL, `title` varchar(128) NOT NULL, `url` varchar(128) NOT NULL, `icon` varchar(128) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user_sub_menu` -- INSERT INTO `user_sub_menu` (`id`, `menu_id`, `title`, `url`, `icon`) VALUES (1, 1, 'Faktur Penjualan', 'document', 'fas fa-fw fa-folder'), (2, 1, 'Delivery Order', 'document/delivery', 'fas fa-fw fa-wallet'), (3, 2, 'User Account', 'management', 'fas fa-fw fa-user-cog'), (4, 2, 'Product', 'management/product', 'fas fa-fw fa-cookie'), (5, 2, 'Outlet', 'management/outlet', 'fas fa-fw fa-hospital'), (6, 3, 'Sales Report', 'report', 'fas fa-fw fa-chart-line'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `do` -- ALTER TABLE `do` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `do_detail` -- ALTER TABLE `do_detail` ADD PRIMARY KEY (`id`), ADD KEY `do_id` (`do_id`); -- -- Indeks untuk tabel `faktur` -- ALTER TABLE `faktur` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `faktur_detail` -- ALTER TABLE `faktur_detail` ADD PRIMARY KEY (`id`), ADD KEY `faktur_id` (`faktur_id`); -- -- Indeks untuk tabel `outlet` -- ALTER TABLE `outlet` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `product` -- ALTER TABLE `product` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `product_type` -- ALTER TABLE `product_type` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `status` -- ALTER TABLE `status` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user_access_menu` -- ALTER TABLE `user_access_menu` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user_menu` -- ALTER TABLE `user_menu` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user_role` -- ALTER TABLE `user_role` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `user_sub_menu` -- ALTER TABLE `user_sub_menu` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `do` -- ALTER TABLE `do` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `do_detail` -- ALTER TABLE `do_detail` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT untuk tabel `faktur` -- ALTER TABLE `faktur` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT untuk tabel `faktur_detail` -- ALTER TABLE `faktur_detail` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33; -- -- AUTO_INCREMENT untuk tabel `outlet` -- ALTER TABLE `outlet` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT untuk tabel `product` -- ALTER TABLE `product` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT untuk tabel `product_type` -- ALTER TABLE `product_type` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `status` -- ALTER TABLE `status` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT untuk tabel `user_access_menu` -- ALTER TABLE `user_access_menu` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT untuk tabel `user_menu` -- ALTER TABLE `user_menu` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `user_role` -- ALTER TABLE `user_role` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT untuk tabel `user_sub_menu` -- ALTER TABLE `user_sub_menu` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `do_detail` -- ALTER TABLE `do_detail` ADD CONSTRAINT `do_detail_ibfk_1` FOREIGN KEY (`do_id`) REFERENCES `do` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Ketidakleluasaan untuk tabel `faktur_detail` -- ALTER TABLE `faktur_detail` ADD CONSTRAINT `faktur_detail_ibfk_1` FOREIGN KEY (`faktur_id`) REFERENCES `faktur` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>precog-iiitd/Signals_Matter_TheWebConf_2019 SELECT id, creation_date, last_access_date, up_votes, down_votes, reputation, views FROM [bigquery-public-data:stackoverflow.users]
<reponame>manureta/segmentacion /* titulo: finciones.sql descripción: funciones pra operar sobre manzanas y circuitos autor: -h fecha: 2019-04-28 Do */ create or replace function manzana( frac integer, radio integer, mza integer) -- obtiene subllistado con solo la manzana del listado -- solo el lado, hn, hp y id returns table ( id integer, lado integer, hn integer, hp integer) as $$ select id, clado, hn, hp from comuna11 where frac_comun = $1 and radio_comu = $2 and mza_comuna = $3 order by id $$ language sql ; create or replace function max_lado( frac integer, radio integer, mza integer) -- obtiene el numero del lado masgrnd (sume secuencial) returns integer as $$ select max(clado) from comuna11 where frac_comun = $1 and radio_comu = $2 and mza_comuna = $3 $$ language sql ; create or replace function iniciar_manzana_en_lado( frac integer, radio integer, mza integer, lado integer) -- obtiene subllistado con solo la manzana del listado -- solo el lado, hn, hp y id returns table ( id integer, lado integer, hn integer, hp integer) as $$ select id, clado, hn, hp from comuna11 where frac_comun = $1 and radio_comu = $2 and mza_comuna = $3 order by case when clado < $4 then max_lado($1, $2, $3) + clado -- menor del pedido van despues del maximo else clado end, id $$ language sql ; drop function opciones_para_lado; create or replace function opciones_para_lado( frac integer, radio integer, mza integer, lado integer) -- obtiene subllistado con el circuito de 2 manzanas -- resultado de cruzar a la manzana 2 luego de recorrer la manzana 1 -- en manzanas de 4 ejemplo dddvddd si esto es posible <= existe v -- TODO: ver si es exhaustivo de todos los circuitos posibles de 2 mzas returns table ( lado_id integer, frac integer, radio integer, mza integer, lado integer, ady_id integer, mza_ady integer, lado_ady integer, tipo_ady text ) as $$ select lado_id, substr(l.mza,9,2)::integer as frac, substr(l.mza,11,2)::integer as radio, substr(l.mza,13,3)::integer as mza, l.lado::integer, g.lado_ady as ady_id, substr(a.mza,13,3)::integer as mza_ady, a.lado::integer as lado_ady, tipo_ady from lados_de_manzana l join grafo_adyacencias_lados g on l.id::integer = g.lado_id and substr(l.mza,9,2)::integer = $1 and substr(l.mza,11,2)::integer = $2 and substr(l.mza,13,3)::integer = $3 and l.lado = $4 join lados_de_manzana a on a.id = g.lado_ady $$ language sql ; /* select * from opciones_para_lado(1,1,1,1); lado_id | frac | radio | mza | lado | ady_id | mza_ady | lado_ady | tipo_ady ---------+------+-------+-----+------+--------+---------+----------+---------- 1 | 1 | 1 | 1 | 1 | 2 | 1 | 2 | doblar 1 | 1 | 1 | 1 | 1 | 7 | 3 | 1 | cruzar (2 filas) */
<filename>db/users.sql CREATE USER `capture_shoe_boxes`@'localhost' IDENTIFIED BY '<PASSWORD>'; CREATE USER `diff_shoe_boxes`@'localhost' IDENTIFIED BY '<PASSWORD>'; CREATE USER `is_exist_researcher_api`@'localhost' IDENTIFIED BY '<PASSWORD>'; GRANT INSERT ON is_exist_researcher.capture TO `capture_shoe_boxes`@'localhost'; GRANT SELECT ON is_exist_researcher.capture TO `diff_shoe_boxes`@'localhost'; GRANT INSERT ON is_exist_researcher.shoe_box TO `diff_shoe_boxes`@'localhost'; GRANT SELECT ON is_exist_researcher.shoe_box TO `is_exist_researcher_api`@'localhost';
<filename>Revising the select query II.sql SELECT CITY.name FROM CITY WHERE POPULATION >120000 AND COUNTRYCODE = "USA";
<gh_stars>1-10 ALTER TABLE users ADD COLUMN last_billing_ts TIMESTAMPTZ NOT NULL DEFAULT NOW();
INSERT INTO books (title) VALUES ("Les Fleurs Du Mal"), ("Livro do Desassossego"), ("Leaves of Grass"); INSERT INTO books (title,devoured) VALUES ("Castelos de Raiva", true), ("Mensagem", true), ("Mrs. Dalloway", true)
CREATE TABLE IF NOT EXISTS user ( user_id INTEGER PRIMARY KEY, user_name TEXT, descrip TEXT, cookies INTEGER ); CREATE TABLE IF NOT EXISTS guild ( guild_id INTEGER PRIMARY KEY, guild_name TEXT, prefix TEXT, mod_mail INTEGER, log_channel INTEGER );
WITH startbuffer AS ( SELECT System.Timestamp() AS timestamp, MIN(grocery_items) AS GroceryItems, COUNT(*) AS count FROM deviceinput WHERE grocery_items < 4 GROUP BY TUMBLINGWINDOW(s, 10) ), startbase AS ( SELECT timestamp, GroceryItems FROM startbuffer WHERE ISFIRST(s, 30) OVER (WHEN count > 2) = 1 ), endbuffer AS ( SELECT System.Timestamp() AS timestamp, MAX(grocery_items) AS GroceryItems, COUNT(*) AS count FROM deviceinput GROUP BY TUMBLINGWINDOW(s, 10) ), endbase AS ( SELECT timestamp, GroceryItems, count FROM endbuffer WHERE GroceryItems >= 4 AND LAG(GroceryItems) OVER (LIMIT DURATION(second, 60)) < 4 ) SELECT 'alert' AS message_type, 'start' AS event_type, timestamp, GroceryItems AS count INTO alertstart FROM startbase SELECT 'alert' AS message_type, 'end' AS event_type, timestamp, GroceryItems AS count INTO alertend FROM endbase
<gh_stars>1-10 /* 1635. Hopper Company Queries I Hard SQL Schema Table: Drivers +-------------+---------+ | Column Name | Type | +-------------+---------+ | driver_id | int | | join_date | date | +-------------+---------+ driver_id is the primary key for this table. Each row of this table contains the driver's ID and the date they joined the Hopper company. Table: Rides +--------------+---------+ | Column Name | Type | +--------------+---------+ | ride_id | int | | user_id | int | | requested_at | date | +--------------+---------+ ride_id is the primary key for this table. Each row of this table contains the ID of a ride, the user's ID that requested it, and the day they requested it. There may be some ride requests in this table that were not accepted. Table: AcceptedRides +---------------+---------+ | Column Name | Type | +---------------+---------+ | ride_id | int | | driver_id | int | | ride_distance | int | | ride_duration | int | +---------------+---------+ ride_id is the primary key for this table. Each row of this table contains some information about an accepted ride. It is guaranteed that each accepted ride exists in the Rides table. Write an SQL query to report the following statistics for each month of 2020: The number of drivers currently with the Hopper company by the end of the month (active_drivers). The number of accepted rides in that month (accepted_rides). Return the result table ordered by month in ascending order, where month is the month's number (January is 1, February is 2, etc.). The query result format is in the following example. Drivers table: +-----------+------------+ | driver_id | join_date | +-----------+------------+ | 10 | 2019-12-10 | | 8 | 2020-1-13 | | 5 | 2020-2-16 | | 7 | 2020-3-8 | | 4 | 2020-5-17 | | 1 | 2020-10-24 | | 6 | 2021-1-5 | +-----------+------------+ Rides table: +---------+---------+--------------+ | ride_id | user_id | requested_at | +---------+---------+--------------+ | 6 | 75 | 2019-12-9 | | 1 | 54 | 2020-2-9 | | 10 | 63 | 2020-3-4 | | 19 | 39 | 2020-4-6 | | 3 | 41 | 2020-6-3 | | 13 | 52 | 2020-6-22 | | 7 | 69 | 2020-7-16 | | 17 | 70 | 2020-8-25 | | 20 | 81 | 2020-11-2 | | 5 | 57 | 2020-11-9 | | 2 | 42 | 2020-12-9 | | 11 | 68 | 2021-1-11 | | 15 | 32 | 2021-1-17 | | 12 | 11 | 2021-1-19 | | 14 | 18 | 2021-1-27 | +---------+---------+--------------+ AcceptedRides table: +---------+-----------+---------------+---------------+ | ride_id | driver_id | ride_distance | ride_duration | +---------+-----------+---------------+---------------+ | 10 | 10 | 63 | 38 | | 13 | 10 | 73 | 96 | | 7 | 8 | 100 | 28 | | 17 | 7 | 119 | 68 | | 20 | 1 | 121 | 92 | | 5 | 7 | 42 | 101 | | 2 | 4 | 6 | 38 | | 11 | 8 | 37 | 43 | | 15 | 8 | 108 | 82 | | 12 | 8 | 38 | 34 | | 14 | 1 | 90 | 74 | +---------+-----------+---------------+---------------+ Result table: +-------+----------------+----------------+ | month | active_drivers | accepted_rides | +-------+----------------+----------------+ | 1 | 2 | 0 | | 2 | 3 | 0 | | 3 | 4 | 1 | | 4 | 4 | 0 | | 5 | 5 | 0 | | 6 | 5 | 1 | | 7 | 5 | 1 | | 8 | 5 | 1 | | 9 | 5 | 0 | | 10 | 6 | 0 | | 11 | 6 | 2 | | 12 | 6 | 1 | +-------+----------------+----------------+ By the end of January --> two active drivers (10, 8) and no accepted rides. By the end of February --> three active drivers (10, 8, 5) and no accepted rides. By the end of March --> four active drivers (10, 8, 5, 7) and one accepted ride (10). By the end of April --> four active drivers (10, 8, 5, 7) and no accepted rides. By the end of May --> five active drivers (10, 8, 5, 7, 4) and no accepted rides. By the end of June --> five active drivers (10, 8, 5, 7, 4) and one accepted ride (13). By the end of July --> five active drivers (10, 8, 5, 7, 4) and one accepted ride (7). By the end of August --> five active drivers (10, 8, 5, 7, 4) and one accepted ride (17). By the end of Septemeber --> five active drivers (10, 8, 5, 7, 4) and no accepted rides. By the end of October --> six active drivers (10, 8, 5, 7, 4, 1) and no accepted rides. By the end of November --> six active drivers (10, 8, 5, 7, 4, 1) and two accepted rides (20, 5). By the end of December --> six active drivers (10, 8, 5, 7, 4, 1) and one accepted ride (2). */ select t.month, count(distinct driver_id) active_drivers, count(distinct rides.ride_id) accepted_rides from ( (select 1 as month) union (select 2 as month) union (select 3 as month) union (select 4 as month) union (select 5 as month) union (select 6 as month) union (select 7 as month) union (select 8 as month) union (select 9 as month) union (select 10 as month) union (select 11 as month) union (select 12 as month) ) t # join driver table left join ( select driver_id, (case when year(join_date)=2019 then '1' else month(join_date) end) `month` from Drivers where year(join_date)<=2020 ) d on d.month <= t.month # join accepted ride table left join ( select month(requested_at) as `month`, a.ride_id from AcceptedRides a join Rides r on r.ride_id = a.ride_id where year(requested_at)=2020 ) rides on t.month = rides.month group by t.month order by t.month
/*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; /*Table structure for table `listreq` */ DROP TABLE IF EXISTS `listreq`; CREATE TABLE `listreq` ( `req` int(2) DEFAULT NULL COMMENT 'req1-r13' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `listreq` */ insert into `listreq`(`req`) values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13); /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
<filename>packages/acs-templating/sql/oracle/template-demo-notes-sample.sql declare security_context_root acs_objects.object_id%TYPE; default_context acs_objects.object_id%TYPE; registered_users acs_objects.object_id%TYPE; unregistered_visitor acs_objects.object_id%TYPE; owning_party acs_objects.object_id%TYPE; context acs_objects.object_id%TYPE; dummy_var acs_objects.object_id%TYPE; begin security_context_root := acs.magic_object_id('security_context_root'); default_context := acs.magic_object_id('default_context'); registered_users := acs.magic_object_id('registered_users'); unregistered_visitor := acs.magic_object_id('unregistered_visitor'); context := default_context; owning_party := unregistered_visitor; dummy_var := template_demo_note.new ( NULL, 'title01', 'body01', 'red', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title02', 'body02', 'blue', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title03', 'body03', 'green', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title04', 'body04', 'orange', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title05', 'body05', 'purple', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title06', 'body06', 'red', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title07', 'body07', 'blue', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title08', 'body08', 'green', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title09', 'body09', 'orange', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title10', 'body10', 'purple', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title11', 'body11', 'red', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title12', 'body12', 'blue', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title13', 'body13', 'green', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title14', 'body14', 'orange', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title15', 'body15', 'purple', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title16', 'body16', 'red', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title17', 'body17', 'blue', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title18', 'body18', 'green', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title19', 'body19', 'orange', 'template_demo_note', sysdate, owning_party, NULL, context ); dummy_var := template_demo_note.new ( NULL, 'title20', 'body20', 'purple', 'template_demo_note', sysdate, owning_party, NULL, context ); -- return context; end; / show errors;
/************************************************/ /* Database cleanup script */ /************************************************/ -- ============================================= -- Delete all content from database -- ============================================= delete from membership.Actions delete from membership.Modules delete from membership.Areas delete from membership.UsersOrganizations delete from membership.OrganizationsUsersRoles delete from membership.Organizations delete from membership.Users delete from membership.Permissions delete from membership.Roles delete from membership.RolesActions delete from membership.UsersActionsLog
<filename>src/db/add_image.sql -- name: add-image! INSERT INTO Image(Id, Origin, Filter) VALUES (:uuid, :origin, :filter);
#getByRemarkId SELECT rem_id, rde_description, rde_order FROM {schema}.remark_description rem_desc WHERE rem_desc.rem_id=? ORDER BY rem_desc.rde_order ASC;
-- MODULE XTS735 -- SQL Test Suite, V6.0, Interactive SQL, xts735.sql -- 59-byte ID -- TEd Version # -- AUTHORIZATION CTS1 SELECT USER FROM HU.ECCO; -- RERUN if USER value does not match preceding AUTHORIZATION comment ROLLBACK WORK; -- date_time print -- TEST:7035 INSERT National character literal in NCHAR column! CREATE TABLE TAB735 (C1 NUMERIC(5) UNIQUE, C2 NCHAR(12)); -- PASS:7035 If table created successfully? COMMIT WORK; INSERT INTO TAB735 VALUES(1,NULL); -- PASS:7035 If 1 row inserted successfully? INSERT INTO TAB735 VALUES(2, N'!'); -- PASS:7035 If 1 row inserted successfully? INSERT INTO TAB735 VALUES(3, N' !'); -- PASS:7035 If 1 row inserted successfully? COMMIT WORK; SELECT C1,C2 FROM CTS1.TAB735 ORDER BY C1; -- PASS:7035 If 3 rows are selected with the following order? -- c1 c2 -- ---- ---- -- PASS:7035 If 1 NULL? -- PASS:7035 If 2 ! ? -- PASS:7035 If 3 ! ? ROLLBACK WORK; DROP TABLE TAB735 CASCADE; -- PASS:7035 If table dropped successfully? COMMIT WORK; -- END TEST >>> 7035 <<< END TEST -- ********************************************* -- *************************************************////END-OF-MODULE
-- @testpoint:opengauss关键字passing(非保留),作为数据库名 --关键字不带引号-成功 drop database if exists passing; create database passing; drop database passing; --关键字带双引号-成功 drop database if exists "passing"; create database "passing"; drop database "passing"; --关键字带单引号-合理报错 drop database if exists 'passing'; create database 'passing'; --关键字带反引号-合理报错 drop database if exists `passing`; create database `passing`;
create schema shipping_schema; set current_schema='shipping_schema'; create node group ship_ng0 with (datanode1); create table shipping_test_row (a int, b int, c text, d integer[]); create table shipping_test_col (a int, b int, c text)with (orientation = column); create table shipping_test_replicalte (a int, b int, c text, d integer[]) distribute by replication; create table t1(a timestamp,acct_id char(10))distribute by hash(acct_id); create table t2(a timestamp,b char(8),acct_id char(10))distribute by hash(acct_id); create table t3(a timestamp,acct_id char(10))distribute by hash(acct_id); create table t4(a int, b int, c text); create table t5(a int, b int, c text); insert into t5 select v%5,v%7,v%2 from generate_series(1,16) as v; insert into t4 select v%5,v%3,v%4 from generate_series(1,8) as v; create table t6(a timestamp, b timestamptz, c interval, d int, e text); create table t7(a timestamp, b timestamptz, c interval, d int, e text); insert into t6 values ('1849-10-1','1889-10-1+08','1 year', 1, 'a'); insert into t6 values ('1859-10-1','1899-10-1+08','10 year', 2, 'b'); insert into t6 values ('1869-10-1','1909-10-1+08','30 year', 3, 'c'); insert into t7 values ('1849-10-1','1889-10-1+08','1 year', 1, 'a'); insert into t7 values ('1859-10-1','1899-10-1+08','10 year', 2, 'b'); insert into t7 values ('1869-10-1','1909-10-1+08','30 year', 3, 'c'); create table t8 (a float4, b float8, c int , d text)distribute by hash(c); create table t9 (a float4, b float8, c int , d text)distribute by hash(c); insert into t8 values(777.1,8888888.111111111,1,'a'),(666.82,33333.111111111,2,'b'); insert into t9 values(777.1,8888888.111111111,1,'a'),(666.87,33333.111111111,2,'b'); create table t10 (a text, b int, c timetz); insert into t10 values('12-sep-2014', 1, '01:00:00+08'),('12-sep-2015', 2,'02:00:00+09'),('12-sep-2016', 3,'03:00:00 +10'); create view view_t10 as select a from t10; CREATE TABLE t11 (f0 int, f1 text, f2 float8); insert into t11 values(1,'cat1',1.21),(2,'cat1',1.24),(3,'cat1',1.18),(4,'cat1',1.26), (5,'cat1',1.15),(6,'cat2',1.15),(7,'cat2',1.26),(8,'cat2',1.32),(9,'cat2',1.30); create table t12 (f0 int, f1 text, f2 float8) with (orientation = column); insert into t12 select * from t11; create table t13 (f0 int, f1 text, f2 float8); insert into t13 select * from t11; create index index_ship_t13 on t13(f0); create table t14 (f0 int, f1 text, f2 float8) with (orientation = column) to group ship_ng0; insert into t14 select * from t11; create table t15 (f0 int, f1 text, f2 float8); insert into t15 select * from t11; create index index_ship_t15 on t15(f0); create table ship_t1(a1 int, b1 int, c1 int, d1 int) with (orientation = column) distribute by hash(a1, b1); create table ship_t2(a2 int, b2 int, c2 int, d2 int) with (orientation = column) distribute by hash(a2, b2); create table ship_t4(a4 int, b4 int, c4 int, d4 int) with (orientation = column) distribute by hash(a4) to group ship_ng0; create table ship_t5(a5 int, b5 int, c5 int, d5 int) distribute by replication to group ship_ng0; create data source ecshipping options (dsn 'ecshipping'); create sequence seq1 ; create table seq_t1(a int default nextval('seq1'), b int, c bigint default nextval('seq1')); create table seq_t2(a int, b int , c bigint); create table seq_t3(a int, b int , c bigint default nextval('seq1') primary key);
insert into teacher values (1, '<EMAIL>'); insert into teacher values (2, '<EMAIL>'); insert into student values (1, '<EMAIL>', 0); insert into student values (2, '<EMAIL>', 0); insert into student values (3, '<EMAIL>', 0); insert into student values (4, '<EMAIL>', 1); insert into student values (5, '<EMAIL>', 0); insert into teacher_student values (null, 1,1), (null, 1,3), (null, 2,2),(null, 2,3), (null, 2,4),(null, 1,5);
-- phpMyAdmin SQL Dump -- version 4.8.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: May 02, 2020 at 05:26 PM -- Server version: 10.1.37-MariaDB -- PHP Version: 7.3.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `booking` -- -- -------------------------------------------------------- -- -- Table structure for table `blocked_booking_dates` -- CREATE TABLE `blocked_booking_dates` ( `id` bigint(20) UNSIGNED NOT NULL, `venue_id` int(10) UNSIGNED DEFAULT NULL, `date` date DEFAULT NULL, `start_time` time DEFAULT NULL, `end_time` time DEFAULT NULL, `background_color` varchar(7) COLLATE utf8_unicode_ci DEFAULT NULL, `text_color` varchar(7) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `company_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `interested_in` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `message` text COLLATE utf8_unicode_ci, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customers` -- CREATE TABLE `customers` ( `id` bigint(20) UNSIGNED NOT NULL, `number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `login_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `company_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `address` text COLLATE utf8_unicode_ci, `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'NULL', `contact_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'NULL', `photo` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'NULL', `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `verification_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `access_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_bookings` -- CREATE TABLE `customer_bookings` ( `id` bigint(20) UNSIGNED NOT NULL, `invoice_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `customer_id` int(10) UNSIGNED DEFAULT NULL, `venue_id` int(10) UNSIGNED DEFAULT NULL, `arrival_date_time` datetime DEFAULT NULL, `starting_date_time` datetime DEFAULT NULL, `ending_date_time` datetime DEFAULT NULL, `number_of_children` int(10) UNSIGNED DEFAULT NULL, `number_of_adult` int(10) UNSIGNED DEFAULT NULL, `price_per_hour` double UNSIGNED DEFAULT NULL, `total_hour` double UNSIGNED DEFAULT NULL, `cleaning_fee` double UNSIGNED DEFAULT NULL, `city_fee` double UNSIGNED DEFAULT NULL, `security_deposit_amount` double UNSIGNED DEFAULT NULL, `security_deposit_status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `result` text COLLATE utf8_unicode_ci, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_menus` -- CREATE TABLE `customer_menus` ( `id` bigint(20) UNSIGNED NOT NULL, `root_id` tinyint(3) UNSIGNED DEFAULT NULL, `menu` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `route_group` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `route` text COLLATE utf8_unicode_ci, `controller` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `action` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `operation_list` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `accessibilities` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `accessibility_count` tinyint(3) UNSIGNED DEFAULT NULL, `sequence` double UNSIGNED DEFAULT NULL, `status` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `customer_menus` -- INSERT INTO `customer_menus` (`id`, `root_id`, `menu`, `route_group`, `method`, `route`, `controller`, `action`, `operation_list`, `accessibilities`, `accessibility_count`, `sequence`, `status`, `narrative`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES (1, 0, 'Dashboard', 'Customer', 'get', 'customer/dashboard/{id}', 'DashboardController', 'index', NULL, NULL, NULL, 1, 'Active', '---', 1, NULL, '2019-04-02 09:13:39', '2019-04-23 07:34:58'), (2, 0, 'Profile', 'Customer', 'get', 'customer/profile/{id}', 'ProfileController', 'index', NULL, NULL, NULL, 4, 'Active', '---', 1, NULL, '2019-03-31 18:00:00', '2019-04-23 01:34:59'); -- -------------------------------------------------------- -- -- Table structure for table `menus` -- CREATE TABLE `menus` ( `id` bigint(20) UNSIGNED NOT NULL, `root_id` tinyint(3) UNSIGNED DEFAULT NULL, `menu` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `route_group` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `route` text COLLATE utf8_unicode_ci, `controller` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `action` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `operation_list` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `accessibilities` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `accessibility_count` tinyint(3) UNSIGNED DEFAULT NULL, `sequence` double UNSIGNED DEFAULT NULL, `status` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `menus` -- INSERT INTO `menus` (`id`, `root_id`, `menu`, `route_group`, `method`, `route`, `controller`, `action`, `operation_list`, `accessibilities`, `accessibility_count`, `sequence`, `status`, `narrative`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES (1, 0, 'Dashboard', 'Admin', 'get', 'admin/dashboard/{id}', 'DashboardController', 'index', NULL, NULL, NULL, 1, 'Active', '---', 1, NULL, '2019-04-01 01:13:39', '2019-04-21 23:34:58'), (2, 0, 'Operation', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, 'Active', '', 1, NULL, '2019-04-01 01:13:39', '2019-04-21 23:34:58'), (3, 2, 'Customer', 'Admin\\Operation', 'get,get,get,post,post,post,get,post,get,post', 'admin/operation/customer/{id},admin/operation/customer/gets/{search_string}/{record_per_page},admin/operation/customer/get/{id},admin/operation/customer/save,admin/operation/customer/apply/bulk/operation,admin/operation/customer/change/status,admin/operation/customer/get/bookings/by/customer/id,admin/operation/customer/delete,admin/operation/customer/get/access/code,admin/operation/customer/save/access/code', 'CustomerController', 'index,gets,get,save,applyBulkOperation,changeStatus,getBookings,delete,getAccessCode,saveAccessCode', 'activeMenuValue:Operation,activeSubMenuValue:Customer,activeMenuId:2,activeSubMenuId:3,recordPerPage:10', NULL, NULL, 3, 'Active', '---', 1, NULL, '2019-03-30 10:00:00', '2019-04-21 17:34:59'), (4, 2, 'Booking and Reservation', 'Admin\\Operation', 'get,get,get,post,post,post', 'admin/operation/booking/and/reservation/{id},admin/operation/booking/and/reservation/gets/{date_from}/{date_to}/{start_date}/{end_date}/{status}/{venue_id}/{customer_id}/{record_per_page},admin/operation/booking/and/reservation/get/{id},admin/operation/booking/and/reservation/save,admin/operation/booking/and/reservation/apply/bulk/operation,admin/operation/booking/and/reservation/delete', 'BookingAndReservationController', 'index,gets,get,save,applyBulkOperation,delete', 'activeMenuValue:Operation,activeSubMenuValue:Booking and Reservation,activeMenuId:2,activeSubMenuId:4,recordPerPage:10', NULL, NULL, 3, 'Active', '---', 1, NULL, '2019-03-30 10:00:00', '2019-04-21 17:34:59'), (5, 2, 'Blocked Booking Date', 'Admin\\Operation', 'get,get,get,post,post,post,post', 'admin/operation/blocked/booking/date/{id},admin/operation/blocked/booking/date/gets/{search_string}/{record_per_page},admin/operation/blocked/booking/date/get/{id},admin/operation/blocked/booking/date/single/save,admin/operation/blocked/booking/date/bulk/save,admin/operation/blocked/booking/date/apply/bulk/operation,admin/operation/blocked/booking/date/delete', 'BlockedBookingDateController', 'index,gets,get,saveSingle,saveBulk,applyBulkOperation,delete', 'activeMenuValue:Operation,activeSubMenuValue:Blocked Booking Date,activeMenuId:2,activeSubMenuId:5,recordPerPage:10', NULL, NULL, 4, 'Active', '---', 1, NULL, '2020-01-01 22:00:00', NULL), (6, 0, 'Configuration', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 5, 'Active', '', 1, NULL, '2019-04-01 01:13:39', '2019-04-21 23:34:58'), (7, 6, 'Venue', 'Admin\\Configuration', 'get,get,get,post,post,post', 'admin/configuration/venue/{id},admin/configuration/venue/gets/{search_string}/{record_per_page},admin/configuration/venue/get/{id},admin/configuration/venue/save,admin/configuration/venue/apply/bulk/operation,admin/configuration/venue/delete/image', 'VenueController', 'index,gets,get,save,applyBulkOperation,deleteImage', 'activeMenuValue:Configuration,activeSubMenuValue:Venue,activeMenuId:6,activeSubMenuId:7,recordPerPage:10', NULL, NULL, 6, 'Active', '---', 1, NULL, '2019-03-30 16:00:00', '2019-04-21 23:34:59'), (8, 0, 'Report', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 7, 'Active', '', 1, NULL, '2019-03-30 19:48:44', '2019-04-21 23:34:59'), (9, 8, 'Booking and Reservation', 'Admin\\Report', 'get,get,get', 'admin/report/booking/and/reservation/{id},admin/report/booking/and/reservation/gets/{date_from}/{date_to}/{start_date}/{end_date}/{status}/{venue_id}/{customer_id},admin/report/booking/and/reservation/generate/report', 'BookingAndReservationController', 'index,gets,generateReport', 'activeMenuValue:Report,activeSubMenuValue:Booking and Reservation,activeMenuId:8,activeSubMenuId:9,recordPerPage:10', NULL, NULL, 8, 'Active', '---', 1, NULL, '2019-03-30 10:00:00', '2019-04-21 17:34:59'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `login_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `contact_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `photo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `login_id`, `name`, `email`, `contact_number`, `photo`, `password`, `status`, `narrative`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES (1, 'admin', 'admin', '---', '---', '---', '<PASSWORD>', 'Active', '---', 1, 1, '2019-10-26 18:00:00', '2019-10-26 18:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `venues` -- CREATE TABLE `venues` ( `id` int(10) UNSIGNED NOT NULL, `venue` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `price_per_hour` double UNSIGNED DEFAULT NULL, `security_deposit_amount` double UNSIGNED DEFAULT NULL, `number_of_rooms` int(10) UNSIGNED DEFAULT NULL, `number_of_seats` int(10) UNSIGNED DEFAULT NULL, `number_of_guests` int(10) UNSIGNED DEFAULT NULL, `is_party_allowed` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, `is_pet_allowed` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, `are_children_allowed` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, `is_smoking_allowed` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, `is_additional_guest_allowed` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL, `refund_policy` text COLLATE utf8_unicode_ci, `cleaning_fee` double UNSIGNED DEFAULT NULL, `city_fee` double UNSIGNED DEFAULT NULL, `image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `background_color` varchar(7) COLLATE utf8_unicode_ci DEFAULT NULL, `text_color` varchar(7) COLLATE utf8_unicode_ci DEFAULT NULL, `sequence` double UNSIGNED DEFAULT NULL, `status` varchar(25) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `venues` -- INSERT INTO `venues` (`id`, `venue`, `type`, `number`, `price_per_hour`, `security_deposit_amount`, `number_of_rooms`, `number_of_seats`, `number_of_guests`, `is_party_allowed`, `is_pet_allowed`, `are_children_allowed`, `is_smoking_allowed`, `is_additional_guest_allowed`, `refund_policy`, `cleaning_fee`, `city_fee`, `image`, `background_color`, `text_color`, `sequence`, `status`, `narrative`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES (1, 'Regular Hirer UNITY HALL and DOROTHY ROCKWOOD HALL (Both halls )', 'Regular', '5063', 1, 0, 1, 100, 100, 'No', 'Yes', 'Yes', 'No', 'Yes', '---', 0, 0, 'venue/1_1_1579633801.jpg,venue/1_2_1579633801.jpg,venue/1_3_1579633801.jpg', '#a52a2a', '#f0fff0', NULL, 'Active', '---', NULL, NULL, '2019-12-10 13:34:56', '2020-02-20 16:23:41'), (2, 'Casual Hirer DOROTHY ROCKWOOD HALL', 'Casual', '5054', 48, 500, 1, 100, 100, 'No', 'Yes', 'No', 'No', 'No', '---', 50, 20, 'venue/2_1_1579633824.jpeg,venue/2_2_1579633824.jpeg', '#6495ed', '#f5fffa', NULL, 'Active', '---', NULL, NULL, '2019-12-10 17:58:44', '2020-02-02 14:07:50'), (3, 'Regular Hirer DOROTHY ROCKWOOD HALL wider community (weekends booking)', 'Regular', '5055', 53, 500, 1, 140, 140, 'No', 'Yes', 'Yes', 'No', 'No', '---', 50, 20, 'venue/3_1_1579633843.jpg,venue/3_2_1579633843.jpg,venue/3_3_1579633843.jpg', '#dc143c', '#0000ff', NULL, 'Active', '---', NULL, NULL, '2019-12-11 04:03:22', '2020-02-02 14:08:58'), (4, 'Regular Hirer DOROTHY ROCKWOOD HALL', 'Regular', '5056', 37, 500, 1, 140, 140, 'No', 'No', 'Yes', 'No', 'No', '---', 50, 20, 'venue/4_1_1579633864.jpeg,venue/4_2_1579633864.jpeg', '#00008b', '#dc143c', NULL, 'Active', '---', NULL, NULL, '2019-12-11 04:31:59', '2020-02-02 14:10:11'), (5, 'Casual Hire UNITY HALL', 'Casual', '5057', 37, 350, 1, 80, 80, 'No', 'Yes', 'Yes', 'No', 'No', '---', 50, 20, 'venue/5_1_1579633902.jpg,venue/5_2_1579633902.jpg', '#006400', '#00ffff', NULL, 'Active', '---', NULL, NULL, '2019-12-11 04:38:05', '2020-02-02 14:11:48'), (6, 'Regular Hirer wider community UNITY HALL (weekend booking)', 'Regular', '5061', 32, 350, 1, 100, 100, 'No', 'Yes', 'Yes', 'No', 'No', '---', 50, 20, 'venue/6_1_1579634150.jpg,venue/6_2_1579634150.jpg,venue/6_3_1579634150.jpg,venue/6_4_1579634150.jpg,venue/6_5_1579634150.jpg', '#8b008b', '#80ffff', NULL, 'Active', '---', NULL, NULL, '2019-12-11 04:41:23', '2020-02-18 01:36:35'), (7, 'Regular Hirer Unity Hall', 'Regular', '5059', 27, 350, 1, 100, 100, 'No', 'Yes', 'Yes', 'No', 'No', '---', 50, 20, 'venue/7_1_1579633973.jpg,venue/7_2_1579633973.jpg', '#20b2aa', '#0000cd', NULL, 'Active', '---', NULL, NULL, '2019-12-11 04:42:46', '2020-02-02 14:14:28'), (8, 'Assembly Room', 'Assembly', '5060', 25, 250, 1, 15, 15, 'No', 'No', 'Yes', 'No', 'No', '---', 80, 0, 'venue/8_1_1579633998.jpeg', '#ff4500', '#00ffff', NULL, 'Active', 'For Bahá’ís only', NULL, NULL, '2019-12-25 21:15:30', '2020-02-02 14:15:51'); -- -------------------------------------------------------- -- -- Table structure for table `venue_opening_hours` -- CREATE TABLE `venue_opening_hours` ( `id` bigint(20) UNSIGNED NOT NULL, `venue_id` int(10) UNSIGNED DEFAULT NULL, `name_of_day` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `opening_time` time DEFAULT NULL, `closing_time` time DEFAULT NULL, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `narrative` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_by` int(10) UNSIGNED DEFAULT NULL, `updated_by` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `venue_opening_hours` -- INSERT INTO `venue_opening_hours` (`id`, `venue_id`, `name_of_day`, `opening_time`, `closing_time`, `status`, `narrative`, `created_by`, `updated_by`, `created_at`, `updated_at`) VALUES (26, 1, 'Monday to Friday', '08:00:00', '17:00:00', 'Active', '---', 11, NULL, '2020-02-20 16:23:41', '2020-02-20 16:23:41'), (27, 1, 'Saturday', '08:00:00', '17:00:00', 'Active', '---', 11, NULL, '2020-02-20 16:23:41', '2020-02-20 16:23:41'), (28, 1, 'Sunday', '08:00:00', '17:00:00', 'Active', '---', 11, NULL, '2020-02-20 16:23:41', '2020-02-20 16:23:41'); -- -- Indexes for dumped tables -- -- -- Indexes for table `blocked_booking_dates` -- ALTER TABLE `blocked_booking_dates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customers` -- ALTER TABLE `customers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_bookings` -- ALTER TABLE `customer_bookings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_menus` -- ALTER TABLE `customer_menus` ADD PRIMARY KEY (`id`); -- -- Indexes for table `menus` -- ALTER TABLE `menus` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `venues` -- ALTER TABLE `venues` ADD PRIMARY KEY (`id`); -- -- Indexes for table `venue_opening_hours` -- ALTER TABLE `venue_opening_hours` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `blocked_booking_dates` -- ALTER TABLE `blocked_booking_dates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customers` -- ALTER TABLE `customers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_bookings` -- ALTER TABLE `customer_bookings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_menus` -- ALTER TABLE `customer_menus` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `menus` -- ALTER TABLE `menus` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `venues` -- ALTER TABLE `venues` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `venue_opening_hours` -- ALTER TABLE `venue_opening_hours` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<gh_stars>0 set search_path to raw, stage, working, campaign_finance; show search_path; select * from working.pacs; -- Per Walter via email 2020.10.02 insert into working.pacs (keep, pac_name, validated) values (True, 'Fair Fight', True), (True, 'Fair Fight Inc', True), (True, 'Fair Fight, Inc.', True); select * from working.pacs where pac_name ilike '%Fair%Fight%'; -- Too many variations for Fair Fight...change to this and added it to -- process_data.sql update campaign_finance.fact_contributions set donation_type = 'Political Action Committee (PAC)' where lastname ilike '%Fair%Fight%'; select * from campaign_finance.fact_contributions where lastname ilike '%Fair%Fight%';
DROP DATABASE `votes_db`; CREATE DATABASE IF NOT EXISTS `votes_db`; USE `votes_db`; CREATE TABLE IF NOT EXISTS `youth_vote` ( `id` INT PRIMARY KEY AUTO_INCREMENT, `vote_counts` INT NOT NULL DEFAULT 0, `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP(), `updated` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP() ); CREATE TABLE IF NOT EXISTS `teens_vote` ( `id` INT PRIMARY KEY AUTO_INCREMENT, `vote_counts` INT NOT NULL DEFAULT 0, `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP(), `updated` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP() ); CREATE TABLE IF NOT EXISTS `youth_connection` ( `id` INT PRIMARY KEY AUTO_INCREMENT, `presenter_id` INT NOT NULL DEFAULT -1, `ip_address` TEXT NOT NULL DEFAULT '', `user_agent` TEXT NOT NULL DEFAULT '', `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP(), `updated` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP() ); CREATE TABLE IF NOT EXISTS `teens_connection` ( `id` INT PRIMARY KEY AUTO_INCREMENT, `presenter_id` INT NOT NULL DEFAULT -1, `ip_address` TEXT NOT NULL DEFAULT '', `user_agent` TEXT NOT NULL DEFAULT '', `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP(), `updated` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP() ); CREATE TABLE IF NOT EXISTS `youth_presenter` ( `id` INT PRIMARY KEY AUTO_INCREMENT, `presenter_name` TEXT NOT NULL DEFAULT '' ); CREATE TABLE IF NOT EXISTS `teens_presenter` ( `id` INT PRIMARY KEY AUTO_INCREMENT, `presenter_name` TEXT NOT NULL DEFAULT '' ); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_vote` (`id`) VALUES (DEFAULT); INSERT INTO `teens_vote` (`id`) VALUES (DEFAULT); INSERT INTO `teens_vote` (`id`) VALUES (DEFAULT); INSERT INTO `teens_vote` (`id`) VALUES (DEFAULT); INSERT INTO `teens_vote` (`id`) VALUES (DEFAULT); INSERT INTO `teens_vote` (`id`) VALUES (DEFAULT); INSERT INTO `teens_vote` (`id`) VALUES (DEFAULT); INSERT INTO `teens_vote` (`id`) VALUES (DEFAULT); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '大友希野'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '遠藤友香'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '舟橋彰馬'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '東郷泰暉'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '小野村華楠'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '五十嵐大修'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '齋藤柱導'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '熊谷有未'); INSERT INTO `youth_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '本田裕明'); INSERT INTO `teens_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '菅俣登子'); INSERT INTO `teens_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '山川莉実花'); INSERT INTO `teens_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '小貫朝心'); INSERT INTO `teens_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '水沼千乃'); INSERT INTO `teens_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '田井理蓮'); INSERT INTO `teens_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '佐藤彩乃'); INSERT INTO `teens_presenter` (`id`, `presenter_name`) VALUES (DEFAULT, '川見菜緒');
SET DEFINE OFF; create or replace package afw_01_destn_evenm_notfb_pkg authid current_user is type gty_destn is record ( nom_formt varchar2 (200) ,adres_destn varchar2 (500) ,numr_telph_destn varchar2 (16) ); type gta_destn is table of gty_destn; function resdr (pnu_seqnc_destn_confg in number ,pnu_seqnc_struc_aplic in number) return afw_01_destn_evenm_notfb_pkg.gta_destn; end afw_01_destn_evenm_notfb_pkg; /
<reponame>lindsay-stevens/openclinica_sqldatamart CREATE OR REPLACE FUNCTION openclinica_fdw.fdw_setup( IN foreign_server_host_name TEXT, IN foreign_server_host_address TEXT, IN foreign_server_port TEXT, IN foreign_server_database TEXT, IN foreign_server_user_name TEXT, IN foreign_server_user_password TEXT, IN datamart_admin_role_name TEXT DEFAULT $$dm_admin$$, IN foreign_server_openclinica_schema_name TEXT DEFAULT $$public$$, IN foreign_server_data_wrapper_kwargs TEXT DEFAULT $$$$ ) RETURNS VOID AS $b$ DECLARE fdw_dbname CONSTANT TEXT := $s$openclinica_fdw_db$s$; fdw_schema CONSTANT TEXT := $s$openclinica_fdw$s$; fdw_server CONSTANT TEXT := $s$openclinica_fdw_server$s$; BEGIN /* revoke execution privilege from public on the dm functions */ REVOKE EXECUTE ON ALL FUNCTIONS IN SCHEMA openclinica_fdw FROM "public"; /* Create datamart administration role with necessary privileges. */ EXECUTE format( $f$CREATE ROLE %1$I INHERIT NOSUPERUSER NOCREATEDB NOCREATEROLE NOREPLICATION NOLOGIN;$f$, datamart_admin_role_name); EXECUTE format( $f$ALTER DATABASE %1$I OWNER TO %2$I;$f$, fdw_dbname, datamart_admin_role_name); EXECUTE format( $f$GRANT ALL ON DATABASE %1$I TO %2$I;$f$, fdw_dbname, datamart_admin_role_name); EXECUTE format( $f$GRANT ALL ON SCHEMA %1$I TO %2$I;$f$, fdw_schema, datamart_admin_role_name); EXECUTE format( $f$GRANT EXECUTE ON ALL FUNCTIONS IN SCHEMA %1$I TO %2$I;$f$, fdw_schema, datamart_admin_role_name); /* add postgres to dm_admin, but for now don't impersonate */ --GRANT datamart_admin_role_name TO postgres; /* Add schema for central dm queries. */ CREATE SCHEMA dm; EXECUTE format( $f$GRANT ALL ON SCHEMA dm TO %1$I;$f$, datamart_admin_role_name); /* Add foreign server. */ EXECUTE format( $f$CREATE SERVER %1$I FOREIGN DATA WRAPPER postgres_fdw OPTIONS (host %2$L, hostaddr %3$L, port %4$L, dbname %5$L %6$s);$f$, fdw_server, foreign_server_host_name, foreign_server_host_address, foreign_server_port, foreign_server_database, foreign_server_data_wrapper_kwargs); /* Temporarily turn off logging so FDW credentials aren't logged. */ SET log_statement TO 'none'; EXECUTE format( $f$CREATE USER MAPPING FOR %1$I SERVER %2$I OPTIONS (user %3$L, password %4$L);$f$, datamart_admin_role_name, fdw_server, foreign_server_user_name, foreign_server_user_password); SET log_statement TO 'all'; /* So dm_admin can access and refresh foreign objects */ EXECUTE format( $f$GRANT USAGE ON FOREIGN SERVER %1$I TO %2$I;$f$, fdw_server, datamart_admin_role_name); /* Import schema as dm_admin so that it owns the created objects. */ EXECUTE format($f$SET ROLE %1$I;$f$, datamart_admin_role_name); EXECUTE format( $f$IMPORT FOREIGN SCHEMA %1$I FROM SERVER %2$I INTO %3$I$f$, foreign_server_openclinica_schema_name, fdw_server, fdw_schema); END; $b$ LANGUAGE plpgsql VOLATILE;
drop table if exists gen_water; drop sequence if exists gen_water_seq; create sequence gen_water_seq; create table gen_water as select nextval('gen_water_seq') AS id ,0 AS way_area ,10 AS res ,ST_CollectionExtract(unnest(ST_ClusterWithin(way, 10)), 3)::geometry(MultiPolygon, 3857) as way from planet_osm_polygon where "natural" = 'water' or landuse = 'reservoir'; delete from gen_water where st_area(st_buffer(way, -10)) < 10 and res = 10; update gen_water set way = st_multi(st_simplifypreservetopology(st_buffer(st_buffer(way, 10, 'quad_segs=1'), -10, 'quad_segs=1'), 10)) where res = 10; update gen_water set way_area = st_area(way) where res = 10; insert into gen_water select nextval('gen_water_seq') AS id, 0, 150, ST_CollectionExtract(unnest(ST_ClusterWithin(way, 100)), 3)::geometry(MultiPolygon, 3857) from gen_water where res = 10; delete from gen_water where st_area(st_buffer(way, -50)) < 150 and res = 150; update gen_water set way = st_multi(st_simplifypreservetopology(st_buffer(st_buffer(st_buffer(way, 50, 'quad_segs=1'), -100, 'quad_segs=1'), 50, 'quad_segs=1'), 100)) where res = 150; update gen_water set way_area = st_area(way) where res = 150; insert into gen_water select nextval('gen_water_seq') AS id, 0, 600, ST_CollectionExtract(unnest(ST_ClusterWithin(way, 295)), 3)::geometry(MultiPolygon, 3857) from gen_water where res = 150; delete from gen_water where st_area(st_buffer(way, -295)) < 590 and res = 600; update gen_water set way = st_multi(st_simplifypreservetopology(st_buffer(st_buffer(way, 295, 'quad_segs=1'), -295, 'quad_segs=1'), 295)) where res = 600; update gen_water set way_area = st_area(way) where res = 600; create index gen_water_10_gix ON gen_water using gist (way) where res = 10; create index gen_water_150_gix ON gen_water using gist (way) where res = 150; create index gen_water_600_gix ON gen_water using gist (way) where res = 600;
<reponame>maquinon1612/BD<filename>EvaluableGrupoA/2019/06plsqlEjEvaluableGrupoA2019-answers.sql<gh_stars>1-10 -- ------------------------------------------------------------- -- EJERCICIO EVALUABLE PLSQL+triggers GRUPO A. 19.12.2019. SOLUCION -- ------------------------------------------------------------- -- Alumno 1: <NAME> -- ------------------------------------------------------------- -- Ejecuta este script para crear la base de datos del ejercicio. -- Esta base de datos contiene información de prescripción de -- medicamentos a pacientes y alergias a tipos de medicamentos. -- Contesta a las preguntas que se detallan al final de este fichero -- mediante sentencias SQL a continuación de cada bloque de -- comentarios. SET SERVEROUTPUT ON; alter session set nls_date_format = 'DD/MM/YYYY'; SET LINESIZE 500; SET PAGESIZE 500; drop table ej_estadisticas cascade constraints; drop table ej_prescripcion cascade constraints; drop table ej_alergia cascade constraints; drop table ej_paciente cascade constraints; drop table ej_medicamento cascade constraints; drop table ej_tipoMed cascade constraints; -- Tipos de medicamentos. CREATE TABLE ej_tipoMed( IdTipo varchar2(20) PRIMARY KEY, descripcion varchar2(100) NOT NULL ); CREATE TABLE ej_medicamento( IdMed INTEGER PRIMARY KEY, denominacion varchar2(100) NOT NULL, tipoMed varchar2(20) NOT NULL REFERENCES ej_tipoMed, precioDosis NUMBER(9,2) NOT NULL -- precio por cada dosis del medicamento ); CREATE TABLE ej_paciente( IdPaciente INTEGER PRIMARY KEY, nombre varchar2(100) NOT NULL, fecNacim DATE, descuento NUMBER(5,2) ); -- Prescripción de medicamentos a pacientes. CREATE TABLE ej_prescripcion( IdPres INTEGER PRIMARY KEY, IdPaciente INTEGER NOT NULL REFERENCES ej_paciente, IdMed INTEGER NOT NULL REFERENCES ej_medicamento, NumDosis INTEGER NOT NULL, -- numero de dosis prescritas del medicamento al paciente alertaAlergia INTEGER ); -- Alergias diagnosticadas de tipos de medicamento a pacientes. CREATE TABLE ej_alergia( IdPaciente INTEGER NOT NULL REFERENCES ej_paciente, tipoMed varchar2(20) NOT NULL REFERENCES ej_tipoMed, PRIMARY KEY (IdPaciente, tipoMed) ); -- Informacion estadistica sobre medicamentos: numero de pacientes alergicos. CREATE TABLE ej_estadisticas( IdMed INTEGER NOT NULL REFERENCES ej_medicamento, numPacientes INTEGER -- numero de pacientes alergicos. ); INSERT INTO ej_tipoMed VALUES ('penicilinas', 'Antibioticos derivados de la penicilina'); INSERT INTO ej_tipoMed VALUES ('anticonvulsivos', 'Medicamentos anticonvulsivos y derivados'); INSERT INTO ej_tipoMed VALUES ('insulinas', 'Insulinas animales'); INSERT INTO ej_tipoMed VALUES ('yodos', 'Medicamentos para contraste basados en yodo'); INSERT INTO ej_tipoMed VALUES ('sulfas', 'Medicamentos basados en sulfamidas antibacterianas'); INSERT INTO ej_tipoMed VALUES ('otros', 'Resto de medicamentos'); INSERT INTO ej_medicamento VALUES (1, 'sulfametoxazol', 'sulfas', 3.45); INSERT INTO ej_medicamento VALUES (2, 'sulfadiazina', 'sulfas', 2.10); INSERT INTO ej_medicamento VALUES (3, 'meticilina', 'penicilinas', 0.87); INSERT INTO ej_medicamento VALUES (4, 'amoxicilina', 'penicilinas', 0.22); INSERT INTO ej_medicamento VALUES (5, 'insulina de accion ultrarrapida', 'insulinas', 0.82); INSERT INTO ej_medicamento VALUES (6, 'insulina de accion rapida', 'insulinas', 0.55); INSERT INTO ej_medicamento VALUES (7, 'yoduro potasico', 'yodos', 0.30); INSERT INTO ej_medicamento VALUES (8, 'acido acetilsalicilico', 'otros', 0.05); INSERT INTO ej_medicamento VALUES (9, 'cloxacilina', 'penicilinas', 0.99); insert into ej_paciente values (101,'<NAME>', TO_DATE('17/02/2001'), 0.0); insert into ej_paciente values (102,'<NAME>', TO_DATE('24/09/1985'), 35.0); insert into ej_paciente values (103,'<NAME>', TO_DATE('28/02/1951'), 60.0); insert into ej_paciente values (104,'<NAME>', TO_DATE('5/12/2005'), 15.0); insert into ej_paciente values (105,'<NAME>', TO_DATE('22/01/1951'), 60.0); insert into ej_paciente values (106,'<NAME>', TO_DATE('14/12/1977'), 20.0); INSERT INTO ej_prescripcion VALUES (201,101,1,12, 0); INSERT INTO ej_prescripcion VALUES (202,101,3,24, 0); INSERT INTO ej_prescripcion VALUES (203,101,4,48, 0); INSERT INTO ej_prescripcion VALUES (204,101,7,8, 0); INSERT INTO ej_prescripcion VALUES (205,102,4,14, 0); INSERT INTO ej_prescripcion VALUES (206,103,3,24, 0); INSERT INTO ej_prescripcion VALUES (208,103,7,14, 0); INSERT INTO ej_prescripcion VALUES (209,104,7,8, 0); INSERT INTO ej_prescripcion VALUES (210,106,7,12, 0); INSERT INTO ej_alergia VALUES (101, 'penicilinas'); INSERT INTO ej_alergia VALUES (104, 'yodos'); INSERT INTO ej_alergia VALUES (105, 'penicilinas'); INSERT INTO ej_alergia VALUES (106, 'penicilinas'); INSERT INTO ej_alergia VALUES (103, 'penicilinas'); INSERT INTO ej_estadisticas SELECT IdMed, 0 FROM ej_medicamento; COMMIT; -- ----------------------------------------------------------------- -- 1. Escribe un procedimiento almacenado llamado mostrarMedicamentos -- que reciba como parámetro un tipo de medicamento y muestre por la -- consola todos los medicamentos de ese tipo (id, descripción y gasto -- total de ese medicamento --coste de todas las dosis prescritas -- de ese medicamento, sin aplicar descuentos). -- -- Si el tipo de medicamento no existe en la base de datos debe -- mostrar un mensaje de error y terminar. -- -- Por cada medicamento, debe mostrar la lista de pacientes a los que -- se ha prescrito ese medicamento (id, nombre, edad, gasto total -- antes y después de aplicar descuento). Para calcular la edad puedes -- utilizar alguna de las funciones de fecha que hemos visto en clase -- (por ejemplo, ADD_MONTHS o MONTHS_BETWEEN). Si un medicamento no -- ha sido prescrito a ningún paciente, debe mostrar el mensaje 'No -- prescrito'. -- -- Por cada medicamento mostrado, el procedimiento debe actualizar la -- estadística de pacientes alérgicos en la base de datos -- (ej_estadisticas), actualizando la columna numPacientes con el -- número de pacientes alérgicos a ese medicamento. CREATE OR REPLACE PROCEDURE mostrarMedicamentos (p_tipo ej_tipoMed.IdTipo%TYPE) IS v_med ej_medicamento.IdMed%TYPE; v_Destipo ej_tipoMed.descripcion%TYPE; v_numPacientes INTEGER; CURSOR cr_med IS SELECT m.IdMed, m.denominacion, NVL(SUM(m.precioDosis * r.numDosis),0) gastoTotal FROM ej_medicamento m LEFT JOIN ej_prescripcion r ON m.IdMed = r.IdMed WHERE m.tipoMed = p_tipo GROUP BY m.IdMed, m.denominacion ORDER BY m.IdMed; CURSOR cr_paciente IS SELECT p.IdPaciente, p.nombre, TRUNC(MONTHS_BETWEEN(SYSDATE,p.fecNacim)/12,0) edad, m.precioDosis*r.numDosis gasto, m.precioDosis*r.numDosis*(100-p.descuento)/100 dto FROM ej_paciente p JOIN ej_prescripcion r ON r.IdPaciente = p.IdPaciente JOIN ej_medicamento m ON r.IdMed = m.IdMed WHERE r.IdMed = v_med; BEGIN SELECT descripcion INTO v_Destipo FROM ej_tipoMed WHERE IdTipo = p_tipo; FOR r_med IN cr_med LOOP DBMS_OUTPUT.PUT_LINE('=========================================================='); DBMS_OUTPUT.PUT_LINE('Medicamento: ' || r_med.IdMed || ' - ' || r_med.denominacion); DBMS_OUTPUT.PUT_LINE('Gasto total: ' || TO_CHAR(r_med.gastoTotal, '99G999G990D99') || ' euros.'); DBMS_OUTPUT.PUT_LINE('----------------------------------------------------------'); v_numPacientes := 0; v_med := r_med.IdMed; FOR r_paciente IN cr_paciente LOOP IF v_numPacientes = 0 THEN DBMS_OUTPUT.PUT_LINE(' Paciente Edad Gasto Dto. '); DBMS_OUTPUT.PUT_LINE('----------------------------------------------------------'); END IF; DBMS_OUTPUT.PUT_LINE(TO_CHAR(r_paciente.IdPaciente,'9999') || ' ' || RPAD(r_paciente.nombre,30) || TO_CHAR(r_paciente.edad,'9999') || ' ' || TO_CHAR(r_paciente.gasto,'990D99') || TO_CHAR(r_paciente.dto,'990D99')); v_numPacientes := v_numPacientes + 1; END LOOP; IF v_numPacientes = 0 THEN DBMS_OUTPUT.PUT_LINE('No prescrito'); END IF; UPDATE ej_estadisticas SET numPacientes = (SELECT COUNT(DISTINCT r.IdPaciente) FROM ej_prescripcion r JOIN ej_medicamento m ON r.IdMed = m.IdMed JOIN ej_alergia a ON m.tipoMed = a.tipoMed AND r.IdPaciente = a.IdPaciente WHERE r.IdMed = v_med) WHERE IdMed = v_med; -- Esta sentencia UPDATE incluye una subconsulta en la cláusula SET. -- Tenemos que estar seguros de que la subconsulta produce una sola fila -- para que no se produzca un error. -- También se puede programar como una sentencia SELECT INTO -- separada y una sentencia UPDATE sin subconsulta. END LOOP; DBMS_OUTPUT.PUT_LINE('=========================================================='); EXCEPTION WHEN NO_DATA_FOUND THEN DBMS_OUTPUT.PUT_LINE('ERROR: Tipo de medicamento no encontrado'); END; / -- Prueba del procedimiento almacenado. SET SERVEROUTPUT ON; BEGIN mostrarMedicamentos('penicilinas'); END; / SELECT * FROM ej_estadisticas; -- ----------------------------------------------------------------- -- 2. Añade una columna importeTotalDescuentos a la tabla ex_medicamento -- con la siguiente sentencia DDL: -- -- ALTER TABLE ej_medicamento ADD importeTotalDescuentos NUMBER(9,2) DEFAULT 0; -- -- Esta columna debe contener el importe total de los descuentos -- aplicados por cada paciente (precioDosis * numDosis * descuento / 100) -- -- Escribe un disparador que mantenga actualizada la columna -- importeTotalDescuentos ante cualquier cambio en la prescripcion de -- medicaciones de un paciente. Además, si el paciente es alérgico al -- medicamento prescrito, debe asignar un 1 en la columna -- alertaAlergia. -- -- Podemos suponer que el total de dosis prescritas es consistente con -- la información de la base de datos antes del cambio que lanza el -- disparador. ALTER TABLE ej_medicamento ADD importeTotalDescuentos NUMBER(9,2) DEFAULT 0; CREATE OR REPLACE TRIGGER actualizaTotalDescuentos BEFORE INSERT OR UPDATE OR DELETE ON ej_prescripcion FOR EACH ROW DECLARE v_importe NUMBER(9,2); v_alergia INTEGER; BEGIN IF INSERTING OR UPDATING THEN SELECT precioDosis * :NEW.numDosis * descuento / 100 INTO v_importe FROM ej_medicamento, ej_paciente WHERE IdMed = :NEW.IdMed AND IdPaciente = :NEW.IdPaciente; UPDATE ej_medicamento SET importeTotalDescuentos = importeTotalDescuentos + v_importe WHERE IdMed = :NEW.IdMed; END IF; IF DELETING OR UPDATING THEN SELECT precioDosis * :OLD.numDosis * descuento / 100 INTO v_importe FROM ej_medicamento, ej_paciente WHERE IdMed = :OLD.IdMed AND IdPaciente = :OLD.IdPaciente; UPDATE ej_medicamento SET importeTotalDescuentos = importeTotalDescuentos - v_importe WHERE IdMed = :OLD.IdMed; END IF; IF INSERTING OR UPDATING THEN SELECT COUNT(*) INTO v_alergia FROM ej_alergia a JOIN ej_medicamento m ON a.tipoMed = m.tipoMed WHERE IdPaciente = :NEW.IdPaciente AND IdMed = :NEW.IdMed; IF v_alergia > 0 THEN :NEW.alertaAlergia := 1; ELSE :NEW.alertaAlergia := 0; END IF; END IF; END; / -- Pruebas del disparador: select * from ej_medicamento; INSERT INTO ej_prescripcion VALUES (299,103,3,24, 0); select * from ej_prescripcion; select * from ej_medicamento; UPDATE ej_prescripcion SET IdPaciente = 102 WHERE IdPres = 299; select * from ej_prescripcion; select * from ej_medicamento; DELETE FROM ej_prescripcion WHERE IdPres = 299; select * from ej_prescripcion; select * from ej_medicamento;
<reponame>Rejanio/analises ---- Query usada para importar os dados via Big Query em https://basedosdados.org/dataset/br-tse-eleicoes/resource/7c47f0e4-c8ef-46fe-a61d-9179e5adab64 SELECT * FROM `basedosdados.br_tse_eleicoes.resultados_candidato_municipio` AS r LEFT JOIN ( SELECT * FROM `basedosdados.br_tse_eleicoes.candidatos` WHERE ( ano = 2020 OR ano = 2016 ) AND id_municipio_tse = 35157 ) AS c ON r.numero_candidato = c.numero_candidato AND r.ano = c.ano WHERE ( r.ano = 2020 OR r.ano = 2016 ) AND r.id_municipio_tse = 35157 AND r.cargo = 'vereador'
-- rowid.test -- -- execsql { -- DELETE FROM t2 WHERE a!=2; -- INSERT INTO t2(b) VALUES(111); -- SELECT * FROM t2; -- } DELETE FROM t2 WHERE a!=2; INSERT INTO t2(b) VALUES(111); SELECT * FROM t2;
with invoice_lines as ( select *, jsonb_array_elements(lines_data) as lines from {{ref('invoices')}} as i ), invoice_lines2 as ( select il.customer_id, il.invoice_id, il.created_on, lines ->> 'id' as line_id, -- this is the subscription_id if it is a subscription item lines -> 'plan' ->> 'billing_scheme' as billing_scheme, lines -> 'plan' ->> 'id' as plan_id, (lines -> 'plan' ->> 'amount')::integer as plan_amount, lines -> 'plan' ->> 'interval' as plan_interval, lines ->> 'amount' as invoice_amount, (lines ->> 'quantity')::int as quantity, (lines ->> 'proration')::bool as proration, lines -> 'plan' ->> 'tiers' as plan_tiers from invoice_lines as il ) select i.* from invoice_lines2 as i -- order by i.created_on desc
create view "postgres"._airbyte_test_normalization."nested_stream_with_c__column___with__quotes_ab2__dbt_tmp" as ( -- SQL model to cast each column to its adequate SQL type converted from the JSON schema type select _airbyte_partition_hashid, cast(currency as varchar ) as currency, _airbyte_emitted_at from "postgres"._airbyte_test_normalization."nested_stream_with_c__column___with__quotes_ab1" -- column___with__quotes at nested_stream_with_complex_columns_resulting_into_long_names/partition/column`_'with"_quotes );
-- 2019-12-06T05:54:10.569Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process (AccessLevel,AD_Client_ID,AD_Org_ID,AD_Process_ID,AllowProcessReRun,Classname,CopyFromProcess,Created,CreatedBy,EntityType,IsActive,IsApplySecuritySettings,IsBetaFunctionality,IsDirectPrint,IsOneInstanceOnly,IsReport,IsServerProcess,IsTranslateExcelHeaders,IsUseBPartnerLanguage,LockWaitTimeout,Name,RefreshAllAfterExecution,ShowHelp,Type,Updated,UpdatedBy,Value) VALUES ('3',0,0,541219,'Y','de.metas.ui.web.payment_allocation.process.PaymentsView_AllocateAndWriteOff','N',TO_TIMESTAMP('2019-12-06 07:54:10','YYYY-MM-DD HH24:MI:SS'),100,'de.metas.payment','Y','N','N','N','N','N','N','Y','Y',0,'Zahlung-Zuordnung + Abschreiben','N','N','Java',TO_TIMESTAMP('2019-12-06 07:54:10','YYYY-MM-DD HH24:MI:SS'),100,'PaymentsView_AllocateAndWriteOff') ; -- 2019-12-06T05:54:10.588Z -- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator INSERT INTO AD_Process_Trl (AD_Language,AD_Process_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language, t.AD_Process_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Process t WHERE l.IsActive='Y'AND (l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N') AND t.AD_Process_ID=541219 AND NOT EXISTS (SELECT 1 FROM AD_Process_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Process_ID=t.AD_Process_ID) ;
<filename>scripts/create_test_db.sql CREATE DATABASE "gratipay-test" WITH OWNER = gratipay;
<filename>recipes/tables/item.sql # item.sql DROP TABLE IF EXISTS item; #@ _CREATE_TABLE_ CREATE TABLE item ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, name CHAR(20), colors ENUM('chartreuse','mauve','lime green','puce') DEFAULT 'puce', PRIMARY KEY (id) ); #@ _CREATE_TABLE_
CREATE DATABASE `matthew_eilar` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */; CREATE TABLE `clients` ( `ClientId` int NOT NULL AUTO_INCREMENT, `StylistId` int DEFAULT NULL, `Name` varchar(255) DEFAULT NULL, PRIMARY KEY (`ClientId`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; CREATE TABLE `stylists` ( `StylistId` int NOT NULL AUTO_INCREMENT, `Name` varchar(255) DEFAULT NULL, `Details` varchar(255) DEFAULT NULL, PRIMARY KEY (`StylistId`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U000', 'Y', null, '0', null, null, 0, '运管顶级菜单', '1', null); insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U008', 'Y', 'fa fa-sun-o', '1', 'U000', null, 8, '系统管理', '1', null); insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U00802', 'N', null, '2', 'U008', '/pubParam/list', 1, '参数管理', '1', null); insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U00803', 'N', null, '2', 'U008', '/pubMenu/list', 2, '菜单管理', '1', null); insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U00805', 'N', null, '2', 'U008', '/pubUser/list', 4, '用户管理', '1', null); insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U00806', 'N', null, '2', 'U008', '/pubRole/list', 5, '角色管理', '1', null); insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U00808', 'N', null, '2', 'U008', '/pubLoginLog/list', 7, '登录日志', '1', null); insert into PUB_MENU (ID, HAS_CHILD, ICON, NODE, PARENT_ID, PATH, SORT, TITLE, IS_SHOW, REMARK) values ('U00809', 'N', null, '2', 'U008', '/pubOperationLog/list', 8, '操作日志', '1', null);
-- SelectCommand -- 2015/04/14 Sandeep SELECT [CommandId] FROM [AsyncProcessingServiceStatusManagementTable] WHERE [Id] = @P1
CREATE OR REPLACE FUNCTION prom_api.matcher(labels jsonb) RETURNS prom_api.matcher_positive AS $func$ SELECT ARRAY( SELECT coalesce(l.id, -1) -- -1 indicates no such label FROM label_jsonb_each_text(labels-'__name__') e LEFT JOIN _prom_catalog.label l ON (l.key = e.key AND l.value = e.value) )::prom_api.matcher_positive $func$ LANGUAGE SQL STABLE PARALLEL SAFE; COMMENT ON FUNCTION prom_api.matcher(jsonb) IS 'returns a matcher for the JSONB, __name__ is ignored. The matcher can be used to match against a label array using @> or ? operators'; GRANT EXECUTE ON FUNCTION prom_api.matcher(jsonb) TO prom_reader; ---------------- eq functions ------------------ CREATE OR REPLACE FUNCTION prom_api.eq(labels1 prom_api.label_array, labels2 prom_api.label_array) RETURNS BOOLEAN AS $func$ --assumes labels have metric name in position 1 and have no duplicate entries SELECT array_length(labels1, 1) = array_length(labels2, 1) AND labels1 @> labels2[2:] $func$ LANGUAGE SQL IMMUTABLE PARALLEL SAFE; COMMENT ON FUNCTION prom_api.eq(prom_api.label_array, prom_api.label_array) IS 'returns true if two label arrays are equal, ignoring the metric name'; GRANT EXECUTE ON FUNCTION prom_api.eq(prom_api.label_array, prom_api.label_array) TO prom_reader; CREATE OR REPLACE FUNCTION prom_api.eq(labels1 prom_api.label_array, matchers prom_api.matcher_positive) RETURNS BOOLEAN AS $func$ --assumes no duplicate entries SELECT array_length(labels1, 1) = (array_length(matchers, 1) + 1) AND labels1 @> matchers $func$ LANGUAGE SQL IMMUTABLE PARALLEL SAFE; COMMENT ON FUNCTION prom_api.eq(prom_api.label_array, prom_api.matcher_positive) IS 'returns true if the label array and matchers are equal, there should not be a matcher for the metric name'; GRANT EXECUTE ON FUNCTION prom_api.eq(prom_api.label_array, prom_api.matcher_positive) TO prom_reader; CREATE OR REPLACE FUNCTION prom_api.eq(labels prom_api.label_array, json_labels jsonb) RETURNS BOOLEAN AS $func$ --assumes no duplicate entries --do not call eq(label_array, matchers) to allow inlining SELECT array_length(labels, 1) = (_prom_catalog.count_jsonb_keys(json_labels-'__name__') + 1) AND labels @> prom_api.matcher(json_labels) $func$ LANGUAGE SQL STABLE PARALLEL SAFE; COMMENT ON FUNCTION prom_api.eq(prom_api.label_array, jsonb) IS 'returns true if the labels and jsonb are equal, ignoring the metric name'; GRANT EXECUTE ON FUNCTION prom_api.eq(prom_api.label_array, jsonb) TO prom_reader; --------------------- op @> ------------------------ CREATE OR REPLACE FUNCTION _prom_catalog.label_contains(labels prom_api.label_array, json_labels jsonb) RETURNS BOOLEAN AS $func$ SELECT labels @> prom_api.matcher(json_labels) $func$ LANGUAGE SQL STABLE PARALLEL SAFE; GRANT EXECUTE ON FUNCTION _prom_catalog.label_contains(prom_api.label_array, jsonb) TO prom_reader; --------------------- op ? ------------------------ CREATE OR REPLACE FUNCTION _prom_catalog.label_match(labels prom_api.label_array, matchers prom_api.matcher_positive) RETURNS BOOLEAN AS $func$ SELECT labels && matchers $func$ LANGUAGE SQL IMMUTABLE PARALLEL SAFE; GRANT EXECUTE ON FUNCTION _prom_catalog.label_match(prom_api.label_array, prom_api.matcher_positive) TO prom_reader; CREATE OR REPLACE FUNCTION _prom_catalog.label_match(labels prom_api.label_array, matchers prom_api.matcher_negative) RETURNS BOOLEAN AS $func$ SELECT NOT (labels && matchers) $func$ LANGUAGE SQL IMMUTABLE PARALLEL SAFE; GRANT EXECUTE ON FUNCTION _prom_catalog.label_match(prom_api.label_array, prom_api.matcher_negative) TO prom_reader; --------------------- op == !== ==~ !=~ ------------------------ CREATE OR REPLACE FUNCTION _prom_catalog.label_find_key_equal(key_to_match prom_api.label_key, pat prom_api.pattern) RETURNS prom_api.matcher_positive AS $func$ SELECT COALESCE(array_agg(l.id), array[]::int[])::prom_api.matcher_positive FROM _prom_catalog.label l WHERE l.key = key_to_match and l.value = pat $func$ LANGUAGE SQL STABLE PARALLEL SAFE; GRANT EXECUTE ON FUNCTION _prom_catalog.label_find_key_equal(prom_api.label_key, prom_api.pattern) TO prom_reader; CREATE OR REPLACE FUNCTION _prom_catalog.label_find_key_not_equal(key_to_match prom_api.label_key, pat prom_api.pattern) RETURNS prom_api.matcher_negative AS $func$ SELECT COALESCE(array_agg(l.id), array[]::int[])::prom_api.matcher_negative FROM _prom_catalog.label l WHERE l.key = key_to_match and l.value = pat $func$ LANGUAGE SQL STABLE PARALLEL SAFE; GRANT EXECUTE ON FUNCTION _prom_catalog.label_find_key_not_equal(prom_api.label_key, prom_api.pattern) TO prom_reader; CREATE OR REPLACE FUNCTION _prom_catalog.label_find_key_regex(key_to_match prom_api.label_key, pat prom_api.pattern) RETURNS prom_api.matcher_positive AS $func$ SELECT COALESCE(array_agg(l.id), array[]::int[])::prom_api.matcher_positive FROM _prom_catalog.label l WHERE l.key = key_to_match and l.value ~ pat $func$ LANGUAGE SQL STABLE PARALLEL SAFE; GRANT EXECUTE ON FUNCTION _prom_catalog.label_find_key_regex(prom_api.label_key, prom_api.pattern) TO prom_reader; CREATE OR REPLACE FUNCTION _prom_catalog.label_find_key_not_regex(key_to_match prom_api.label_key, pat prom_api.pattern) RETURNS prom_api.matcher_negative AS $func$ SELECT COALESCE(array_agg(l.id), array[]::int[])::prom_api.matcher_negative FROM _prom_catalog.label l WHERE l.key = key_to_match and l.value ~ pat $func$ LANGUAGE SQL STABLE PARALLEL SAFE; GRANT EXECUTE ON FUNCTION _prom_catalog.label_find_key_not_regex(prom_api.label_key, prom_api.pattern) TO prom_reader; --------------------- op == !== ==~ !=~ ------------------------ CREATE OR REPLACE FUNCTION _prom_catalog.match_equals(labels prom_api.label_array, _op ps_tag.tag_op_equals) RETURNS boolean AS $func$ SELECT labels && label_find_key_equal(_op.tag_key, (_op.value#>>'{}'))::int[] $func$ LANGUAGE SQL STABLE PARALLEL SAFE; -- do not make strict. it disables function inlining GRANT EXECUTE ON FUNCTION _prom_catalog.match_equals(prom_api.label_array, ps_tag.tag_op_equals) TO prom_reader; CREATE OR REPLACE FUNCTION _prom_catalog.match_not_equals(labels prom_api.label_array, _op ps_tag.tag_op_not_equals) RETURNS boolean AS $func$ SELECT NOT (labels && label_find_key_not_equal(_op.tag_key, (_op.value#>>'{}'))::int[]) $func$ LANGUAGE SQL STABLE PARALLEL SAFE; -- do not make strict. it disables function inlining GRANT EXECUTE ON FUNCTION _prom_catalog.match_not_equals(prom_api.label_array, ps_tag.tag_op_not_equals) TO prom_reader; CREATE OR REPLACE FUNCTION _prom_catalog.match_regexp_matches(labels prom_api.label_array, _op ps_tag.tag_op_regexp_matches) RETURNS boolean AS $func$ SELECT labels && label_find_key_regex(_op.tag_key, _op.value)::int[] $func$ LANGUAGE SQL STABLE PARALLEL SAFE; -- do not make strict. it disables function inlining GRANT EXECUTE ON FUNCTION _prom_catalog.match_regexp_matches(prom_api.label_array, ps_tag.tag_op_regexp_matches) TO prom_reader; CREATE OR REPLACE FUNCTION _prom_catalog.match_regexp_not_matches(labels prom_api.label_array, _op ps_tag.tag_op_regexp_not_matches) RETURNS boolean AS $func$ SELECT NOT (labels && label_find_key_not_regex(_op.tag_key, _op.value)::int[]) $func$ LANGUAGE SQL STABLE PARALLEL SAFE; -- do not make strict. it disables function inlining GRANT EXECUTE ON FUNCTION _prom_catalog.match_regexp_not_matches(prom_api.label_array, ps_tag.tag_op_regexp_not_matches) TO prom_reader;
{% snapshot snap_0 %} {{ config( target_database=database, target_schema=schema, unique_key='iso3', strategy='timestamp', updated_at='snap_0_updated_at', ) }} select *, current_timestamp as snap_0_updated_at from {{ ref('model_0') }} {% endsnapshot %}
<filename>src/main/resources/db_scripts/postgres-rutherford-functions.sql -- -- Merge and Delete Users -- -- Authors: <NAME>, <NAME> -- Last Modified: 2020-08-12 -- CREATE OR REPLACE FUNCTION mergeuser(targetuseridtokeep bigint, targetuseridtodelete bigint) RETURNS boolean LANGUAGE plpgsql AS $$ BEGIN UPDATE assignments SET owner_user_id = targetUserIdToKeep WHERE owner_user_id = targetUserIdToDelete; BEGIN UPDATE event_bookings SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; UPDATE gameboards SET owner_user_id = targetUserIdToKeep WHERE owner_user_id = targetUserIdToDelete; BEGIN UPDATE group_additional_managers SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; BEGIN UPDATE group_memberships SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; UPDATE groups SET owner_id = targetUserIdToKeep WHERE owner_id = targetUserIdToDelete; BEGIN UPDATE linked_accounts SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; UPDATE logged_events SET user_id = targetUserIdToKeep::varchar(255) WHERE user_id = targetUserIdToDelete::varchar(255); UPDATE question_attempts SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; UPDATE user_alerts SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; BEGIN UPDATE user_associations SET user_id_granting_permission = targetUserIdToKeep WHERE user_id_granting_permission = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; BEGIN UPDATE user_associations SET user_id_receiving_permission = targetUserIdToKeep WHERE user_id_receiving_permission = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; UPDATE user_associations_tokens SET owner_user_id = targetUserIdToKeep WHERE owner_user_id = targetUserIdToDelete; BEGIN UPDATE user_gameboards SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; BEGIN UPDATE user_notifications SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; BEGIN UPDATE user_preferences SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; BEGIN UPDATE user_streak_freezes SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; BEGIN UPDATE user_streak_targets SET user_id = targetUserIdToKeep WHERE user_id = targetUserIdToDelete; EXCEPTION WHEN unique_violation THEN -- Ignore duplicate inserts. END; DELETE FROM users WHERE id = targetUserIdToDelete; RETURN true; END $$; ALTER FUNCTION mergeuser(targetuseridtokeep bigint, targetuseridtodelete bigint) OWNER TO rutherford; -- -- Calculate User Streaks -- -- Authors: <NAME> -- Last Modified: 2018-04-20 -- CREATE OR REPLACE FUNCTION user_streaks(useridofinterest BIGINT, defaultquestionsperday INTEGER DEFAULT 3) RETURNS TABLE(streaklength BIGINT, startdate DATE, enddate DATE, totaldays BIGINT) AS $BODY$ BEGIN RETURN QUERY ----- ----- WITH -- Filter only users first correct attempts at questions: first_correct_attempts AS ( SELECT question_id, MIN(timestamp) AS timestamp FROM question_attempts WHERE correct AND user_id=useridofinterest GROUP BY question_id ), -- Count how many of these first correct attempts per day: daily_counts AS ( SELECT timestamp::DATE AS date, COUNT(DISTINCT question_id) AS count FROM first_correct_attempts GROUP BY date ), -- Create the list of targets and dates, allowing NULL end dates to mean "to present": daily_targets AS ( SELECT generate_series(start_date, COALESCE(end_date, CURRENT_DATE), INTERVAL '1 DAY')::DATE AS date, MIN(target_count) AS target_count FROM user_streak_targets WHERE user_id=useridofinterest GROUP BY date ), -- Filter the list of dates by the minimum number of parts required. -- If no user-specific target, use global default: active_dates AS ( SELECT daily_counts.date FROM daily_counts LEFT OUTER JOIN daily_targets ON daily_counts.date=daily_targets.date WHERE count >= COALESCE(target_count, defaultquestionsperday) ), -- Create a list of dates streaks were frozen on, allowing NULL end dates to mean "to present": frozen_dates AS ( SELECT DISTINCT generate_series(start_date, COALESCE(end_date, CURRENT_DATE), INTERVAL '1 DAY')::DATE AS date FROM user_streak_freezes WHERE user_id=useridofinterest ), -- Merge in streak freeze dates if there was no activity on that date: date_list(date, activity) AS ( SELECT date, 1 FROM active_dates UNION SELECT date, 0 FROM frozen_dates WHERE date NOT IN (SELECT date FROM active_dates) ORDER BY date ASC ), -- Group consecutive dates in this merged list, this is the magic part. groups AS ( SELECT date - (ROW_NUMBER() OVER (ORDER BY date) * INTERVAL '1 day') AS grp, date, activity FROM date_list ) -- Return the data in a human-readable format. -- The length of the streak is the sum of active days. SELECT SUM(activity) AS streak_length, MIN(date) AS start_date, MAX(date) AS end_date, COUNT(*) AS total_days FROM groups GROUP BY grp ORDER BY end_date DESC; ----- ----- END $BODY$ LANGUAGE plpgsql; ALTER FUNCTION user_streaks(useridofinterest BIGINT, defaultquestionsperday INTEGER) OWNER TO rutherford; -- -- Calculate Current Progress towards User Streak -- -- Authors: <NAME> -- Last Modified: 2018-04-20 -- CREATE OR REPLACE FUNCTION user_streaks_current_progress(useridofinterest BIGINT, defaultquestionsperday INTEGER DEFAULT 3) RETURNS TABLE(currentdate DATE, currentprogress BIGINT, targetprogress BIGINT) AS $BODY$ BEGIN RETURN QUERY ----- ----- WITH -- Filter only users first correct attempts at questions: first_correct_attempts AS ( SELECT question_id, MIN(timestamp) AS timestamp FROM question_attempts WHERE correct AND user_id=useridofinterest GROUP BY question_id ), -- Count how many of these first correct attempts are today: daily_count AS ( SELECT timestamp::DATE AS date, COUNT(DISTINCT question_id) AS count FROM first_correct_attempts WHERE timestamp >= CURRENT_DATE GROUP BY date ), -- Create the list of targets and dates, allowing NULL end dates to mean "to present": daily_targets AS ( SELECT generate_series(start_date, COALESCE(end_date, CURRENT_DATE), INTERVAL '1 DAY')::DATE AS date, MIN(target_count) AS target_count FROM user_streak_targets WHERE user_id=useridofinterest GROUP BY date ), -- To ensure there is always a return value, make a row containing only today's date: date_of_interest AS ( SELECT CURRENT_DATE AS date ) -- Using LEFT OUTER JOINs to ensure always keep the date; if there is a daily count -- then join to it, else use zero; and if there is a custom target join to it, else -- use the global streak target default. SELECT date_of_interest.date AS currentdate, COALESCE(daily_count.count, 0)::BIGINT AS currentprogress, COALESCE(target_count, defaultquestionsperday)::BIGINT AS targetprogress FROM (date_of_interest LEFT OUTER JOIN daily_count ON date_of_interest.date=daily_count.date) LEFT OUTER JOIN daily_targets ON date_of_interest.date=daily_targets.date; ----- ----- END $BODY$ LANGUAGE plpgsql; ALTER FUNCTION user_streaks_current_progress(useridofinterest BIGINT, defaultquestionsperday INTEGER) OWNER TO rutherford; -- -- Calculate User Weekly Streaks -- -- Authors: <NAME> -- Last Modified: 2019-12-06 -- CREATE OR REPLACE FUNCTION user_streaks_weekly(useridofinterest BIGINT, defaultquestionsperweek integer DEFAULT 10) RETURNS TABLE(streaklength BIGINT, startdate date, enddate date, totalweeks BIGINT) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY ----- ----- WITH -- Filter only users first correct attempts at questions: first_correct_attempts AS ( SELECT question_id, MIN(timestamp) AS timestamp FROM question_attempts WHERE correct AND user_id=useridofinterest GROUP BY question_id ), -- Count how many of these first correct attempts per week: weekly_counts AS ( SELECT date_trunc('WEEK', timestamp)::DATE AS date, COUNT(DISTINCT question_id) AS count FROM first_correct_attempts GROUP BY date ), -- Create the list of targets and dates, allowing NULL end dates to mean "to present": weekly_targets AS ( SELECT generate_series(date_trunc('WEEK', start_date), date_trunc('WEEK', COALESCE(end_date, CURRENT_DATE)), INTERVAL '7 DAY')::DATE AS date, MIN(target_count) AS target_count FROM user_streak_targets WHERE user_id=useridofinterest GROUP BY date ), -- Filter the list of dates by the minimum number of parts required. -- If no user-specific target, use global default: active_dates AS ( SELECT weekly_counts.date FROM weekly_counts LEFT OUTER JOIN weekly_targets ON weekly_counts.date=weekly_targets.date WHERE count >= COALESCE(target_count, defaultquestionsperweek) ), -- Create a list of dates streaks were frozen on, allowing NULL end dates to mean "to present": frozen_dates AS ( SELECT DISTINCT generate_series(date_trunc('WEEK', start_date), date_trunc('WEEK', COALESCE(end_date, CURRENT_DATE)), INTERVAL '7 DAY')::DATE AS date FROM user_streak_freezes WHERE user_id=useridofinterest ), -- Merge in streak freeze dates if there was no activity on that date: date_list(date, activity) AS ( SELECT date, 1 FROM active_dates UNION SELECT date, 0 FROM frozen_dates WHERE date NOT IN (SELECT date FROM active_dates) ORDER BY date ASC ), -- Group consecutive dates in this merged list, this is the magic part. groups AS ( SELECT date - (ROW_NUMBER() OVER (ORDER BY date) * INTERVAL '7 day') AS grp, date, activity FROM date_list ) -- Return the data in a human-readable format. -- The length of the streak is the sum of active days. SELECT SUM(activity) AS streak_length, MIN(date) AS start_date, MAX(date) AS end_date, COUNT(*) AS total_weeks FROM groups GROUP BY grp ORDER BY end_date DESC; ----- ----- END $$; ALTER FUNCTION user_streaks_weekly(BIGINT, INTEGER) OWNER TO rutherford; -- -- Calculate Current Progress towards User Weekly Streak -- -- Authors: <NAME> -- Last Modified: 2019-12-06 -- CREATE OR REPLACE FUNCTION user_streaks_weekly_current_progress(useridofinterest BIGINT, defaultquestionsperweek integer DEFAULT 10) RETURNS TABLE(currentweek date, currentprogress BIGINT, targetprogress BIGINT) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY ----- ----- WITH -- Filter only users first correct attempts at questions: first_correct_attempts AS ( SELECT question_id, MIN(timestamp) AS timestamp FROM question_attempts WHERE correct AND user_id=useridofinterest GROUP BY question_id ), -- Count how many of these first correct attempts are this week: weekly_count AS ( SELECT date_trunc('WEEK', timestamp)::DATE AS date, COUNT(DISTINCT question_id) AS count FROM first_correct_attempts WHERE timestamp >= date_trunc('WEEK', CURRENT_DATE) GROUP BY date ), -- Create the list of targets and dates, allowing NULL end dates to mean "to present": weekly_targets AS ( SELECT generate_series(date_trunc('WEEK', start_date), date_trunc('WEEK', COALESCE(end_date, CURRENT_DATE)), INTERVAL '7 DAY')::DATE AS date, MIN(target_count) AS target_count FROM user_streak_targets WHERE user_id=useridofinterest GROUP BY date ), -- To ensure there is always a return value, make a row containing only this week's date: date_of_interest AS ( SELECT date_trunc('WEEK', CURRENT_DATE)::DATE AS date ) -- Using LEFT OUTER JOINs to ensure always keep the date; if there is a daily count -- then join to it, else use zero; and if there is a custom target join to it, else -- use the global streak target default. SELECT date_of_interest.date AS currentweek, COALESCE(weekly_count.count, 0)::BIGINT AS currentprogress, COALESCE(target_count, defaultquestionsperweek)::BIGINT AS targetprogress FROM (date_of_interest LEFT OUTER JOIN weekly_count ON date_of_interest.date=weekly_count.date) LEFT OUTER JOIN weekly_targets ON date_of_interest.date=weekly_targets.date; ----- ----- END $$; ALTER FUNCTION user_streaks_weekly_current_progress(BIGINT, INTEGER) OWNER TO rutherford;
DROP INDEX IF EXISTS orders_date;
--========================================================== --========================================================== \set ECHO all set current_schema = hw_es_multi_column_stats; set default_statistics_target=-2; --========================================================== analyze t ((a, b)) select relname, relpages > 0, reltuples > 0 from pg_class where relname = 't1_1'; analyze t1_1 ((a, b)); analyze t1_1 ((b, c)); analyze t1_1 ((a, d)); analyze t1_1 ((b, d)); analyze t1_1 ((c, d)); analyze t1_1 ((b, c, d)); analyze t1_1 ((a, b, c, d)); select relname, relpages > 0, reltuples > 0 from pg_class where relname = 't1_1'; analyze t1r_1 ((a, b)); analyze t1r_1 ((b, c)); analyze t1r_1 ((a, d)); analyze t1r_1 ((b, d)); analyze t1r_1 ((c, d)); analyze t1r_1 ((b, c, d)); analyze t1r_1 ((a, b, c, d)); select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t1_1' order by attname; select * from pg_ext_stats where schemaname='hw_es_multi_column_stats' and tablename='t1r_1' order by attname;