/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.6.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: snappy16_lchow
-- ------------------------------------------------------
-- Server version	10.6.25-MariaDB

/*!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 `MergeCommunity`
--

DROP TABLE IF EXISTS `MergeCommunity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `MergeCommunity` (
  `dest` varchar(32) DEFAULT NULL,
  `dest_id_community` int(11) DEFAULT NULL,
  `src` varchar(32) DEFAULT NULL,
  `src_id_community` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `MergeCommunity`
--

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

--
-- Table structure for table `address`
--

DROP TABLE IF EXISTS `address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `address` (
  `id_address` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `address` text DEFAULT NULL,
  `status` enum('approved','blocked') DEFAULT NULL,
  PRIMARY KEY (`id_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `address`
--

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

--
-- Table structure for table `admin`
--

DROP TABLE IF EXISTS `admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin` (
  `id_admin` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `login` varchar(40) DEFAULT NULL,
  `name` varchar(40) DEFAULT NULL,
  `phone` varchar(12) DEFAULT NULL,
  `txt` varchar(12) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `pass` varchar(255) DEFAULT NULL,
  `timezone` varchar(255) DEFAULT 'America/New_York',
  `testphone` varchar(12) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `invite_code` varchar(50) DEFAULT NULL,
  `referral_admin_credit` float DEFAULT NULL,
  `referral_customer_credit` float DEFAULT NULL,
  `id_admin_author` int(11) unsigned DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `date_terminated` date DEFAULT NULL,
  `stripe_id` varchar(255) DEFAULT NULL,
  `id_phone` int(11) unsigned DEFAULT NULL,
  `pay_for_new_customer` tinyint(1) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_admin`),
  UNIQUE KEY `login` (`login`),
  UNIQUE KEY `invite_code` (`invite_code`),
  KEY `admin_ibfk_1` (`id_admin_author`),
  KEY `id_phone` (`id_phone`),
  CONSTRAINT `admin_ibfk_1` FOREIGN KEY (`id_admin_author`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_ibfk_2` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin`
--

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

--
-- Table structure for table `admin_change`
--

DROP TABLE IF EXISTS `admin_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_change` (
  `id_admin_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_admin_change`),
  KEY `id_admin_change_set` (`id_admin_change_set`),
  CONSTRAINT `admin_change_ibfk_1` FOREIGN KEY (`id_admin_change_set`) REFERENCES `admin_change_set` (`id_admin_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_change`
--

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

--
-- Table structure for table `admin_change_set`
--

DROP TABLE IF EXISTS `admin_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_change_set` (
  `id_admin_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_author` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_admin_change_set`),
  KEY `id_admin` (`id_admin`),
  KEY `id_author` (`id_author`),
  CONSTRAINT `admin_change_set_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `admin_change_set_ibfk_2` FOREIGN KEY (`id_author`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_change_set`
--

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

--
-- Table structure for table `admin_config`
--

DROP TABLE IF EXISTS `admin_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_config` (
  `id_admin_config` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `key` varchar(40) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `exposed` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_admin_config`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `admin_config_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_config`
--

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

--
-- Table structure for table `admin_group`
--

DROP TABLE IF EXISTS `admin_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_group` (
  `id_admin_group` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_group` int(11) unsigned DEFAULT NULL,
  `type` enum('driver','support','brand-representative','community-manager','community-cs','comm-director') DEFAULT NULL,
  PRIMARY KEY (`id_admin_group`),
  KEY `id_admin` (`id_admin`),
  KEY `id_group` (`id_group`),
  CONSTRAINT `admin_group_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `admin_group_ibfk_2` FOREIGN KEY (`id_group`) REFERENCES `group` (`id_group`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_group`
--

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

--
-- Table structure for table `admin_group_log`
--

DROP TABLE IF EXISTS `admin_group_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_group_log` (
  `id_admin_group_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_group` int(11) unsigned DEFAULT NULL,
  `id_admin_assigned` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `assigned` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_admin_group_log`),
  KEY `admin_group_log_ibfk_1` (`id_group`),
  KEY `admin_group_log_ibfk_2` (`id_admin`),
  KEY `admin_group_log_ibfk_3` (`id_admin_assigned`),
  CONSTRAINT `admin_group_log_ibfk_1` FOREIGN KEY (`id_group`) REFERENCES `group` (`id_group`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_group_log_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_group_log_ibfk_3` FOREIGN KEY (`id_admin_assigned`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_group_log`
--

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

--
-- Table structure for table `admin_hour`
--

DROP TABLE IF EXISTS `admin_hour`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_hour` (
  `id_admin_hour` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `date_start` datetime DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  `id_admin_created` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_admin_hour`),
  KEY `admin_hour_ibfk_1` (`id_admin`),
  KEY `id_admin` (`id_admin_created`),
  CONSTRAINT `admin_hour_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_hour_ibfk_2` FOREIGN KEY (`id_admin_created`) REFERENCES `admin` (`id_admin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_hour`
--

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

--
-- Table structure for table `admin_info`
--

DROP TABLE IF EXISTS `admin_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_info` (
  `id_admin_info` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `key` varchar(40) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_admin_info`),
  KEY `id_admin` (`id_admin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_info`
--

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

--
-- Table structure for table `admin_location`
--

DROP TABLE IF EXISTS `admin_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_location` (
  `id_admin_location` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `lon` float DEFAULT NULL,
  `accuracy` int(11) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_admin_location`),
  KEY `id_admin` (`id_admin`),
  KEY `date_idx` (`date`),
  CONSTRAINT `admin_location_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_location`
--

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

--
-- Table structure for table `admin_location_log`
--

DROP TABLE IF EXISTS `admin_location_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_location_log` (
  `id_admin_location_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `lon` float DEFAULT NULL,
  `accuracy` int(11) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_admin_location_log`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_location_log`
--

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

--
-- Table structure for table `admin_location_requested`
--

DROP TABLE IF EXISTS `admin_location_requested`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_location_requested` (
  `id_admin_location_requested` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `status` enum('permitted','denied') DEFAULT 'permitted',
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_admin_location_requested`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `admin_location_requested_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_location_requested`
--

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

--
-- Table structure for table `admin_note`
--

DROP TABLE IF EXISTS `admin_note`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_note` (
  `id_admin_note` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_admin_added` int(11) unsigned DEFAULT NULL,
  `text` text DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_admin_note`),
  KEY `id_admin` (`id_admin`),
  KEY `id_admin_added` (`id_admin_added`),
  CONSTRAINT `admin_note_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `admin_note_ibfk_2` FOREIGN KEY (`id_admin_added`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_note`
--

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

--
-- Table structure for table `admin_notification`
--

DROP TABLE IF EXISTS `admin_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_notification` (
  `id_admin_notification` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(10) unsigned DEFAULT NULL,
  `type` enum('sms','email','phone','url','fax','sms-dumb','push-ios','push-android') DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_admin_notification`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `admin_notification_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_notification`
--

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

--
-- Table structure for table `admin_notification_log`
--

DROP TABLE IF EXISTS `admin_notification_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_notification_log` (
  `id_admin_notification_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_admin_notification_log`),
  KEY `id_order` (`id_order`),
  KEY `id_admin_idx` (`id_admin`),
  CONSTRAINT `admin_notification_log_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `admin_notification_log_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_notification_log`
--

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

--
-- Table structure for table `admin_payment_type`
--

DROP TABLE IF EXISTS `admin_payment_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_payment_type` (
  `id_admin_payment_type` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `payment_method` enum('deposit') DEFAULT 'deposit',
  `payment_type` enum('orders','hours','hours_without_tips','making_whole') DEFAULT 'orders',
  `summary_email` varchar(255) DEFAULT NULL,
  `legal_name_payment` varchar(255) DEFAULT NULL,
  `stripe_id` varchar(255) DEFAULT NULL,
  `stripe_account_id` varchar(255) DEFAULT NULL,
  `balanced_id` varchar(255) DEFAULT NULL,
  `balanced_bank` varchar(255) DEFAULT NULL,
  `hour_rate` float DEFAULT NULL,
  `address` text DEFAULT NULL,
  `social_security_number` varchar(255) DEFAULT NULL,
  `using_pex` tinyint(1) NOT NULL DEFAULT 0,
  `using_pex_date` datetime DEFAULT NULL,
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  `profit_percent` int(11) NOT NULL DEFAULT 0,
  `amount_per_order` float DEFAULT NULL,
  PRIMARY KEY (`id_admin_payment_type`),
  KEY `admin_payment_type_ibfk1` (`id_admin`),
  CONSTRAINT `admin_payment_type_ibfk1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_payment_type`
--

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

--
-- Table structure for table `admin_payment_type_change`
--

DROP TABLE IF EXISTS `admin_payment_type_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_payment_type_change` (
  `id_admin_payment_type_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin_payment_type_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_admin_payment_type_change`),
  KEY `id_admin_payment_type_change_set` (`id_admin_payment_type_change_set`),
  CONSTRAINT `admin_payment_type_change_ibfk_1` FOREIGN KEY (`id_admin_payment_type_change_set`) REFERENCES `admin_payment_type_change_set` (`id_admin_payment_type_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_payment_type_change`
--

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

--
-- Table structure for table `admin_payment_type_change_set`
--

DROP TABLE IF EXISTS `admin_payment_type_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_payment_type_change_set` (
  `id_admin_payment_type_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin_payment_type` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_admin_payment_type_change_set`),
  KEY `id_admin_payment_type` (`id_admin_payment_type`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `admin_payment_type_change_set_ibfk_1` FOREIGN KEY (`id_admin_payment_type`) REFERENCES `admin_payment_type` (`id_admin_payment_type`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `admin_payment_type_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_payment_type_change_set`
--

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

--
-- Table structure for table `admin_permission`
--

DROP TABLE IF EXISTS `admin_permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_permission` (
  `id_admin_permission` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `permission` varchar(255) DEFAULT NULL,
  `id_group` int(11) unsigned DEFAULT NULL,
  `allow` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_admin_permission`),
  KEY `id_admin` (`id_admin`),
  KEY `id_permission` (`permission`),
  KEY `id_group` (`id_group`),
  CONSTRAINT `admin_permission_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `admin_permission_ibfk_2` FOREIGN KEY (`id_group`) REFERENCES `group` (`id_group`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_permission`
--

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

--
-- Table structure for table `admin_pexcard`
--

DROP TABLE IF EXISTS `admin_pexcard`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_pexcard` (
  `id_admin_pexcard` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_pexcard` int(11) unsigned DEFAULT NULL,
  `card_serial` int(10) DEFAULT NULL,
  `last_four` varchar(4) DEFAULT NULL,
  PRIMARY KEY (`id_admin_pexcard`),
  UNIQUE KEY `id_pexcard` (`id_pexcard`),
  UNIQUE KEY `pex_card_serial` (`id_pexcard`),
  KEY `id_admin` (`id_admin`),
  KEY `card_serial` (`card_serial`),
  KEY `last_four` (`last_four`),
  CONSTRAINT `admin_pexcard_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_pexcard`
--

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

--
-- Table structure for table `admin_pexcard_change`
--

DROP TABLE IF EXISTS `admin_pexcard_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_pexcard_change` (
  `id_admin_pexcard_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin_pexcard_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_admin_pexcard_change`),
  KEY `id_admin_pexcard_change_set` (`id_admin_pexcard_change_set`),
  CONSTRAINT `admin_pexcard_change_ibfk_1` FOREIGN KEY (`id_admin_pexcard_change_set`) REFERENCES `admin_pexcard_change_set` (`id_admin_pexcard_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_pexcard_change`
--

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

--
-- Table structure for table `admin_pexcard_change_set`
--

DROP TABLE IF EXISTS `admin_pexcard_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_pexcard_change_set` (
  `id_admin_pexcard_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin_pexcard` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_admin_pexcard_change_set`),
  KEY `id_admin_pexcard` (`id_admin_pexcard`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `admin_pexcard_change_set_ibfk_1` FOREIGN KEY (`id_admin_pexcard`) REFERENCES `admin_pexcard` (`id_admin_pexcard`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `admin_pexcard_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_pexcard_change_set`
--

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

--
-- Table structure for table `admin_score`
--

DROP TABLE IF EXISTS `admin_score`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_score` (
  `id_admin_score` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `score` float NOT NULL DEFAULT 1,
  `experience` tinyint(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_admin_score`),
  KEY `id_admin_idx` (`id_admin`),
  CONSTRAINT `admin_score_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_score`
--

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

--
-- Table structure for table `admin_shift_assign`
--

DROP TABLE IF EXISTS `admin_shift_assign`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_shift_assign` (
  `id_admin_shift_assign` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `warned` tinyint(1) NOT NULL DEFAULT 0,
  `confirmed` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_admin_shift_assign`),
  KEY `admin_shift_assign_ibfk_1` (`id_community_shift`),
  KEY `admin_shift_assign_ibfk_2` (`id_admin`),
  CONSTRAINT `admin_shift_assign_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_shift_assign_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_shift_assign`
--

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

--
-- Table structure for table `admin_shift_assign_confirmation`
--

DROP TABLE IF EXISTS `admin_shift_assign_confirmation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_shift_assign_confirmation` (
  `id_admin_shift_assign_confirmation` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin_shift_assign` int(11) unsigned DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  `type` enum('text','call','ticket') DEFAULT 'text',
  PRIMARY KEY (`id_admin_shift_assign_confirmation`),
  KEY `admin_shift_assign_confirmation_ibfk_1` (`id_admin_shift_assign`),
  CONSTRAINT `admin_shift_assign_confirmation_ibfk_1` FOREIGN KEY (`id_admin_shift_assign`) REFERENCES `admin_shift_assign` (`id_admin_shift_assign`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_shift_assign_confirmation`
--

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

--
-- Table structure for table `admin_shift_assign_log`
--

DROP TABLE IF EXISTS `admin_shift_assign_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_shift_assign_log` (
  `id_admin_shift_assign_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift` int(11) unsigned DEFAULT NULL,
  `id_driver` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `assigned` tinyint(1) NOT NULL DEFAULT 0,
  `reason` varchar(50) DEFAULT NULL,
  `reason_other` varchar(200) DEFAULT NULL,
  `find_replacement` tinyint(1) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_admin_shift_assign_log`),
  KEY `admin_shift_assign_log_ibfk_1` (`id_community_shift`),
  KEY `admin_shift_assign_log_ibfk_2` (`id_admin`),
  KEY `admin_shift_assign_log_ibfk_3` (`id_driver`),
  CONSTRAINT `admin_shift_assign_log_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_shift_assign_log_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_shift_assign_log_ibfk_3` FOREIGN KEY (`id_driver`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_shift_assign_log`
--

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

--
-- Table structure for table `admin_shift_assign_permanently`
--

DROP TABLE IF EXISTS `admin_shift_assign_permanently`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_shift_assign_permanently` (
  `id_admin_shift_assign_permanently` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_admin_shift_assign_permanently`),
  KEY `admin_shift_assign_permanently_ibfk_1` (`id_community_shift`),
  KEY `admin_shift_assign_permanently_ibfk_2` (`id_admin`),
  CONSTRAINT `admin_shift_assign_permanently_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_shift_assign_permanently_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_shift_assign_permanently`
--

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

--
-- Table structure for table `admin_shift_assign_permanently_removed`
--

DROP TABLE IF EXISTS `admin_shift_assign_permanently_removed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_shift_assign_permanently_removed` (
  `id_admin_shift_assign_permanently_removed` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_admin_shift_assign_permanently_removed`),
  KEY `admin_shift_assign_permanently_removed_ibfk_1` (`id_community_shift`),
  KEY `admin_shift_assign_permanently_removed_ibfk_2` (`id_admin`),
  CONSTRAINT `admin_shift_assign_permanently_removed_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_shift_assign_permanently_removed_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_shift_assign_permanently_removed`
--

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

--
-- Table structure for table `admin_shift_preference`
--

DROP TABLE IF EXISTS `admin_shift_preference`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_shift_preference` (
  `id_admin_shift_preference` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `ranking` tinyint(2) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_admin_shift_preference`),
  KEY `admin_shift_preference_ibfk_1` (`id_community_shift`),
  KEY `admin_shift_preference_ibfk_2` (`id_admin`),
  CONSTRAINT `admin_shift_preference_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `admin_shift_preference_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_shift_preference`
--

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

--
-- Table structure for table `admin_shift_status`
--

DROP TABLE IF EXISTS `admin_shift_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_shift_status` (
  `id_admin_shift_status` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `year` int(4) unsigned DEFAULT NULL,
  `week` int(2) unsigned DEFAULT NULL,
  `completed` tinyint(1) NOT NULL DEFAULT 0,
  `shifts` tinyint(2) NOT NULL DEFAULT 0,
  `date` datetime DEFAULT NULL,
  `shifts_from` int(2) unsigned DEFAULT NULL,
  `shifts_to` int(2) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_admin_shift_status`),
  KEY `admin_shift_status_ibfk_1` (`id_admin`),
  CONSTRAINT `admin_shift_status_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_shift_status`
--

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

--
-- Table structure for table `agent`
--

DROP TABLE IF EXISTS `agent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `agent` (
  `id_agent` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `browser` varchar(40) DEFAULT NULL,
  `version` varchar(40) DEFAULT NULL,
  `os` varchar(40) DEFAULT NULL,
  `engine` varchar(12) DEFAULT NULL,
  PRIMARY KEY (`id_agent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agent`
--

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

--
-- Table structure for table `analytics_event`
--

DROP TABLE IF EXISTS `analytics_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `analytics_event` (
  `id_analytics_event` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_session` varchar(32) DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  `ts` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `category` varchar(32) NOT NULL,
  `action` varchar(32) NOT NULL,
  `label` varchar(32) DEFAULT NULL,
  `json_data` mediumtext DEFAULT NULL,
  `ip` varchar(32) DEFAULT NULL,
  `user_agent` varchar(175) DEFAULT NULL,
  PRIMARY KEY (`id_analytics_event`),
  KEY `analytics_event_ibfk_1` (`id_user`),
  KEY `analytics_event_ibfk_2` (`id_session`),
  KEY `analytics_event_ibfk_3` (`id_community`),
  CONSTRAINT `analytics_event_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`),
  CONSTRAINT `analytics_event_ibfk_3` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `analytics_event`
--

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

--
-- Table structure for table `blast`
--

DROP TABLE IF EXISTS `blast`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `blast` (
  `id_blast` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `content` text DEFAULT NULL,
  `status` enum('new','blasting','complete','failed','canceled') DEFAULT NULL,
  `type` enum('email','phone') DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `update` datetime DEFAULT NULL,
  PRIMARY KEY (`id_blast`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `blast_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blast`
--

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

--
-- Table structure for table `blast_user`
--

DROP TABLE IF EXISTS `blast_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `blast_user` (
  `id_blast_user` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_blast` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `email` varchar(20) DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id_blast_user`),
  KEY `id_blast` (`id_blast`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `blast_user_ibfk_1` FOREIGN KEY (`id_blast`) REFERENCES `blast` (`id_blast`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `blast_user_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blast_user`
--

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

--
-- Table structure for table `blast_user_log`
--

DROP TABLE IF EXISTS `blast_user_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `blast_user_log` (
  `id_blast_user_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_blast_user` int(11) unsigned DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_blast_user_log`),
  KEY `id_blast_user` (`id_blast_user`),
  CONSTRAINT `blast_user_log_ibfk_1` FOREIGN KEY (`id_blast_user`) REFERENCES `blast_user` (`id_blast_user`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blast_user_log`
--

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

--
-- Table structure for table `blocked`
--

DROP TABLE IF EXISTS `blocked`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `blocked` (
  `id_blocked` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(11) unsigned DEFAULT NULL,
  `id_phone` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_blocked`),
  KEY `id_user` (`id_user`),
  KEY `id_phone` (`id_phone`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `blocked_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `blocked_ibfk_2` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `blocked_ibfk_3` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blocked`
--

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

--
-- Table structure for table `call`
--

DROP TABLE IF EXISTS `call`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `call` (
  `id_call` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `from` varchar(20) DEFAULT NULL,
  `to` varchar(20) DEFAULT NULL,
  `twilio_id` varchar(255) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `date_start` datetime DEFAULT NULL,
  `location_to` varchar(255) DEFAULT NULL,
  `location_from` varchar(255) DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  `status` enum('completed','ringing','queued','in-progress','busy','failed','no-answer','canceled') DEFAULT NULL,
  `id_support` int(11) unsigned DEFAULT NULL,
  `id_admin_to` int(11) unsigned DEFAULT NULL,
  `id_user_to` int(11) unsigned DEFAULT NULL,
  `id_admin_from` int(11) unsigned DEFAULT NULL,
  `id_user_from` int(11) unsigned DEFAULT NULL,
  `direction` enum('inbound','outbound') DEFAULT NULL,
  `recording_sid` varchar(255) DEFAULT NULL,
  `recording_duration` int(11) DEFAULT NULL,
  `recording_url` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_call`),
  UNIQUE KEY `twilio_id` (`twilio_id`),
  KEY `id_support` (`id_support`),
  KEY `id_admin_to` (`id_admin_to`),
  KEY `id_admin_from` (`id_admin_from`),
  KEY `id_user_to` (`id_user_to`),
  KEY `id_user_from` (`id_user_from`),
  CONSTRAINT `call_ibfk_1` FOREIGN KEY (`id_support`) REFERENCES `support` (`id_support`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `call_ibfk_2` FOREIGN KEY (`id_admin_to`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `call_ibfk_3` FOREIGN KEY (`id_admin_from`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `call_ibfk_4` FOREIGN KEY (`id_user_to`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `call_ibfk_5` FOREIGN KEY (`id_user_from`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `call`
--

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

--
-- Table structure for table `campus_cash_log`
--

DROP TABLE IF EXISTS `campus_cash_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `campus_cash_log` (
  `id_campus_cash_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user_payment_type` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `action` enum('retrieved','deleted') DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  PRIMARY KEY (`id_campus_cash_log`),
  KEY `campus_cash_log_ibfk_1` (`id_admin`),
  KEY `campus_cash_log_ibfk_2` (`id_user_payment_type`),
  CONSTRAINT `campus_cash_log_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `campus_cash_log_ibfk_2` FOREIGN KEY (`id_user_payment_type`) REFERENCES `user_payment_type` (`id_user_payment_type`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `campus_cash_log`
--

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

--
-- Table structure for table `category`
--

DROP TABLE IF EXISTS `category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `category` (
  `id_category` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `sort` int(11) NOT NULL DEFAULT 0,
  `loc` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_category`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `category`
--

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

--
-- Table structure for table `chain`
--

DROP TABLE IF EXISTS `chain`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chain` (
  `id_chain` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_chain`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chain`
--

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

--
-- Table structure for table `chart`
--

DROP TABLE IF EXISTS `chart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chart` (
  `id_chart` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_chart`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chart`
--

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

--
-- Table structure for table `chart_cohort`
--

DROP TABLE IF EXISTS `chart_cohort`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chart_cohort` (
  `id_chart_cohort` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(40) DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id_chart_cohort`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chart_cohort`
--

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

--
-- Table structure for table `community`
--

DROP TABLE IF EXISTS `community`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community` (
  `id_community` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `permalink` varchar(255) DEFAULT NULL,
  `loc_lat` varchar(40) DEFAULT NULL,
  `loc_lon` varchar(40) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `private` tinyint(1) NOT NULL DEFAULT 0,
  `prep` varchar(10) DEFAULT NULL,
  `name_alt` varchar(255) DEFAULT NULL,
  `range` float DEFAULT 2,
  `image` tinyint(1) NOT NULL DEFAULT 0,
  `driver_group` varchar(120) DEFAULT NULL,
  `timezone` varchar(255) DEFAULT 'America/New_York',
  `close_all_restaurants` tinyint(1) NOT NULL DEFAULT 0,
  `close_all_restaurants_note` varchar(250) DEFAULT NULL,
  `close_3rd_party_delivery_restaurants` tinyint(1) NOT NULL DEFAULT 0,
  `close_3rd_party_delivery_restaurants_note` varchar(250) DEFAULT NULL,
  `close_all_restaurants_id_admin` int(11) unsigned DEFAULT NULL,
  `close_3rd_party_delivery_restaurants_id_admin` int(11) unsigned DEFAULT NULL,
  `close_all_restaurants_date` datetime DEFAULT NULL,
  `close_3rd_party_delivery_restaurants_date` datetime DEFAULT NULL,
  `id_driver_restaurant` int(11) unsigned DEFAULT NULL,
  `driver_restaurant_name` varchar(150) DEFAULT NULL,
  `auto_close` tinyint(1) DEFAULT 1,
  `dont_warn_till` datetime DEFAULT NULL,
  `is_auto_closed` tinyint(1) DEFAULT 0,
  `delivery_logistics` tinyint(2) DEFAULT 0,
  `id_driver_group` int(11) unsigned DEFAULT NULL,
  `closed_message` varchar(250) DEFAULT NULL,
  `driver_checkin` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `combine_restaurant_driver_hours` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `top` tinyint(4) unsigned NOT NULL DEFAULT 0,
  `tagline1` varchar(100) DEFAULT NULL,
  `tagline2` varchar(100) DEFAULT NULL,
  `drivers_can_open` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `drivers_can_close` tinyint(1) NOT NULL DEFAULT 0,
  `auto_close_predefined_message` varchar(250) DEFAULT NULL,
  `automatic_driver_restaurant_name` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `amount_per_order` float DEFAULT NULL,
  `campus_cash` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `campus_cash_name` varchar(100) DEFAULT NULL,
  `campus_cash_validation` varchar(255) DEFAULT NULL,
  `campus_cash_fee` float DEFAULT NULL,
  `campus_cash_mask` varchar(255) DEFAULT NULL,
  `campus_cash_receipt_info` varchar(255) DEFAULT NULL,
  `signature` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `last_down_to_help_out_message` datetime DEFAULT NULL,
  `campus_cash_delivery_confirmation` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `campus_cash_default_payment` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `allow_preorder` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `preorder_min_after_community_open` int(11) unsigned NOT NULL DEFAULT 60,
  `notify_non_shift_drivers` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `notify_non_shift_drivers_min` int(11) unsigned NOT NULL DEFAULT 5,
  `display_hours_restaurants_page` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `display_eta` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `reopen_at` datetime DEFAULT NULL,
  `notify_cs_when_driver_dont_checkin` tinyint(1) NOT NULL DEFAULT 1,
  `notify_customer_when_driver_open` tinyint(1) NOT NULL DEFAULT 0,
  `message_drivers_fill_preferences` tinyint(1) NOT NULL DEFAULT 0,
  `remind_drivers_about_their_shifts` tinyint(1) NOT NULL DEFAULT 0,
  `sent_tickets_to_drivers` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_community`),
  UNIQUE KEY `permalink` (`permalink`),
  KEY `community_ibfk_2` (`close_all_restaurants_id_admin`),
  KEY `community_ibfk_3` (`close_3rd_party_delivery_restaurants_id_admin`),
  KEY `community_ibfk_4` (`id_driver_restaurant`),
  KEY `id_driver_group` (`id_driver_group`),
  CONSTRAINT `community_ibfk_2` FOREIGN KEY (`close_all_restaurants_id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `community_ibfk_3` FOREIGN KEY (`close_3rd_party_delivery_restaurants_id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `community_ibfk_4` FOREIGN KEY (`id_driver_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `community_ibfk_5` FOREIGN KEY (`id_driver_group`) REFERENCES `group` (`id_group`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community`
--

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

--
-- Table structure for table `community_alias`
--

DROP TABLE IF EXISTS `community_alias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_alias` (
  `id_community_alias` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `alias` varchar(50) DEFAULT NULL,
  `prep` varchar(10) DEFAULT NULL,
  `name_alt` varchar(255) DEFAULT NULL,
  `top` tinyint(1) NOT NULL DEFAULT 0,
  `sort` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id_community_alias`),
  KEY `id_community` (`id_community`),
  CONSTRAINT `community_alias_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_alias`
--

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

--
-- Table structure for table `community_chain`
--

DROP TABLE IF EXISTS `community_chain`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_chain` (
  `id_community_chain` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_chain` int(11) unsigned DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  `exist_at_community` tinyint(1) NOT NULL DEFAULT 1,
  `within_range` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_community_chain`),
  KEY `id_community_chain` (`id_community_chain`),
  KEY `community_chain_ibfk_1` (`id_chain`),
  KEY `community_chain_ibfk_2` (`id_community`),
  CONSTRAINT `community_chain_ibfk_1` FOREIGN KEY (`id_chain`) REFERENCES `chain` (`id_chain`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_chain_ibfk_2` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_chain`
--

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

--
-- Table structure for table `community_change`
--

DROP TABLE IF EXISTS `community_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_change` (
  `id_community_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_community_change`),
  KEY `id_community_change_set` (`id_community_change_set`),
  CONSTRAINT `community_change_ibfk_1` FOREIGN KEY (`id_community_change_set`) REFERENCES `community_change_set` (`id_community_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_change`
--

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

--
-- Table structure for table `community_change_set`
--

DROP TABLE IF EXISTS `community_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_change_set` (
  `id_community_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_community_change_set`),
  KEY `id_community` (`id_community`),
  KEY `id_admin` (`id_admin`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `community_change_set_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `community_change_set_ibfk_3` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_change_set`
--

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

--
-- Table structure for table `community_closed_log`
--

DROP TABLE IF EXISTS `community_closed_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_closed_log` (
  `id_community_closed_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `day` date DEFAULT NULL,
  `type` enum('all_restaurants','close_3rd_party_delivery_restaurants','auto_closed','closed_with_driver') DEFAULT NULL,
  `hours_closed` float DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_community_closed_log`),
  UNIQUE KEY `community_closed_log_day_community` (`day`,`id_community`,`type`),
  KEY `id_community` (`id_community`),
  CONSTRAINT `community_closed_log_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_closed_log`
--

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

--
-- Table structure for table `community_closed_reason`
--

DROP TABLE IF EXISTS `community_closed_reason`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_closed_reason` (
  `id_community_closed_reason` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_driver` int(11) unsigned DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `type` enum('all_restaurants','close_3rd_party_delivery_restaurants','auto_closed') DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_community_closed_reason`),
  KEY `community_closed_reason_ibfk_1` (`id_community`),
  KEY `community_closed_reason_ibfk_2` (`id_admin`),
  KEY `community_closed_reason_ibfk_3` (`id_driver`),
  CONSTRAINT `community_closed_reason_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_closed_reason_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_closed_reason_ibfk_3` FOREIGN KEY (`id_driver`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_closed_reason`
--

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

--
-- Table structure for table `community_ip`
--

DROP TABLE IF EXISTS `community_ip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_ip` (
  `id_community_ip` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `ip` varchar(15) DEFAULT NULL,
  PRIMARY KEY (`id_community_ip`),
  KEY `id_community` (`id_community`),
  CONSTRAINT `community_ip_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_ip`
--

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

--
-- Table structure for table `community_note`
--

DROP TABLE IF EXISTS `community_note`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_note` (
  `id_community_note` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `text` text DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_community_note`),
  KEY `id_community` (`id_community`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `community_note_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_note_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_note`
--

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

--
-- Table structure for table `community_notification`
--

DROP TABLE IF EXISTS `community_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_notification` (
  `id_community_notification` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `notification_type` enum('sms','email','push') DEFAULT NULL,
  `status` enum('new','building','running','error','finished','scheduled') DEFAULT NULL,
  `status_update` datetime DEFAULT NULL,
  `status_message` varchar(200) DEFAULT NULL,
  `customer_period` int(11) unsigned DEFAULT NULL,
  `message` text DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_community_notification`),
  KEY `id_community` (`id_community`),
  CONSTRAINT `community_notification_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_notification`
--

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

--
-- Table structure for table `community_notification_user`
--

DROP TABLE IF EXISTS `community_notification_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_notification_user` (
  `id_community_notification_user` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_notification` int(11) unsigned DEFAULT NULL,
  `id_user_notification` int(11) unsigned DEFAULT NULL,
  `status` enum('new','error','finished','running') DEFAULT NULL,
  `status_update` datetime DEFAULT NULL,
  `status_message` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id_community_notification_user`),
  KEY `id_community_notification` (`id_community_notification`),
  KEY `id_user_notification` (`id_user_notification`),
  CONSTRAINT `community_notification_user_ibfk_1` FOREIGN KEY (`id_community_notification`) REFERENCES `community_notification` (`id_community_notification`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_notification_user_ibfk_2` FOREIGN KEY (`id_user_notification`) REFERENCES `user_notification` (`id_user_notification`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_notification_user`
--

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

--
-- Table structure for table `community_opens_closes`
--

DROP TABLE IF EXISTS `community_opens_closes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_opens_closes` (
  `id_community_opens_closes` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `date` date DEFAULT NULL,
  `num_open_hours` float(10,2) unsigned DEFAULT NULL,
  `num_force_close_hours` float(10,2) unsigned DEFAULT NULL,
  `num_auto_close_hours` float(10,2) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_community_opens_closes`),
  KEY `id_community_idx` (`id_community`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_opens_closes`
--

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

--
-- Table structure for table `community_shift`
--

DROP TABLE IF EXISTS `community_shift`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_shift` (
  `id_community_shift` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `date_start` datetime DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  `recurring` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `id_community_shift_father` int(11) unsigned DEFAULT NULL,
  `id_driver` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `hidden` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `created_by_driver` tinyint(1) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_community_shift`),
  KEY `community_shift_ibfk_1` (`id_community`),
  KEY `community_shift_ibfk_2` (`id_community_shift_father`),
  KEY `community_shift_ibfk_3` (`id_driver`),
  CONSTRAINT `community_shift_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `community_shift_ibfk_2` FOREIGN KEY (`id_community_shift_father`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `community_shift_ibfk_3` FOREIGN KEY (`id_driver`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_shift`
--

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

--
-- Table structure for table `community_shift_change`
--

DROP TABLE IF EXISTS `community_shift_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_shift_change` (
  `id_community_shift_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_community_shift_change`),
  KEY `id_community_shift_change_set` (`id_community_shift_change_set`),
  CONSTRAINT `community_shift_change_ibfk_1` FOREIGN KEY (`id_community_shift_change_set`) REFERENCES `community_shift_change_set` (`id_community_shift_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_shift_change`
--

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

--
-- Table structure for table `community_shift_change_set`
--

DROP TABLE IF EXISTS `community_shift_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_shift_change_set` (
  `id_community_shift_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_community_shift_change_set`),
  KEY `id_community_shift` (`id_community_shift`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `community_shift_change_set_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_shift_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_shift_change_set`
--

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

--
-- Table structure for table `community_shift_recursivity`
--

DROP TABLE IF EXISTS `community_shift_recursivity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_shift_recursivity` (
  `id_community_shift_recursivity` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_shift` int(11) unsigned DEFAULT NULL,
  `date` date DEFAULT NULL,
  `action` enum('ignore') DEFAULT NULL,
  PRIMARY KEY (`id_community_shift_recursivity`),
  KEY `community_shift_recursivity_ibfk_1` (`id_community_shift`),
  CONSTRAINT `community_shift_recursivity_ibfk_1` FOREIGN KEY (`id_community_shift`) REFERENCES `community_shift` (`id_community_shift`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_shift_recursivity`
--

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

--
-- Table structure for table `community_status_log`
--

DROP TABLE IF EXISTS `community_status_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `community_status_log` (
  `id_community_status_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `id_community_closed_reason` int(11) unsigned DEFAULT NULL,
  `closed_date` datetime DEFAULT NULL,
  `opened_date` datetime DEFAULT NULL,
  `closed_by` int(11) unsigned DEFAULT NULL,
  `opened_by` int(11) unsigned DEFAULT NULL,
  `type` enum('close_all_restaurants','close_3rd_party_delivery_restaurants','is_auto_closed') DEFAULT NULL,
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id_community_status_log`),
  KEY `id_community` (`id_community`),
  KEY `id_community_closed_reason` (`id_community_closed_reason`),
  KEY `closed_by` (`closed_by`),
  KEY `opened_by` (`opened_by`),
  CONSTRAINT `community_status_log_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_status_log_ibfk_2` FOREIGN KEY (`id_community_closed_reason`) REFERENCES `community_closed_reason` (`id_community_closed_reason`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_status_log_ibfk_3` FOREIGN KEY (`closed_by`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `community_status_log_ibfk_4` FOREIGN KEY (`opened_by`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `community_status_log`
--

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

--
-- Table structure for table `config`
--

DROP TABLE IF EXISTS `config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `config` (
  `id_config` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_site` int(11) unsigned DEFAULT NULL,
  `key` varchar(40) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `exposed` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_config`),
  KEY `id_site` (`id_site`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `config`
--

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

--
-- Table structure for table `credit`
--

DROP TABLE IF EXISTS `credit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `credit` (
  `id_credit` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(11) unsigned DEFAULT NULL,
  `id_user_from` int(11) unsigned DEFAULT NULL,
  `type` enum('CREDIT','DEBIT') DEFAULT NULL,
  `id_order` int(11) unsigned DEFAULT NULL,
  `id_promo` int(11) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `value` float(10,2) DEFAULT NULL,
  `id_order_reference` int(10) unsigned DEFAULT NULL,
  `paid_by` enum('crunchbutton','restaurant','promotional','other_restaurant') DEFAULT NULL,
  `id_restaurant_paid_by` int(11) unsigned DEFAULT NULL,
  `id_credit_debited_from` int(10) unsigned DEFAULT NULL,
  `note` text DEFAULT NULL,
  `id_referral` int(10) unsigned DEFAULT NULL,
  `credit_type` enum('cash','point') DEFAULT 'cash',
  `shared` enum('facebook','twitter') DEFAULT NULL,
  PRIMARY KEY (`id_credit`),
  KEY `credit_ibfk_1` (`id_user`),
  KEY `credit_ibfk_2` (`id_user_from`),
  KEY `credit_ibfk_3` (`id_order`),
  KEY `credit_ibfk_4` (`id_promo`),
  KEY `credit_ibfk_5` (`id_restaurant`),
  KEY `credit_ibfk_6` (`id_order_reference`),
  KEY `credit_ibfk_8` (`id_restaurant_paid_by`),
  KEY `credit_ibfk_9` (`id_credit_debited_from`),
  KEY `id_referral` (`id_referral`),
  CONSTRAINT `credit_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `credit_ibfk_10` FOREIGN KEY (`id_referral`) REFERENCES `referral` (`id_referral`),
  CONSTRAINT `credit_ibfk_2` FOREIGN KEY (`id_user_from`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `credit_ibfk_3` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `credit_ibfk_4` FOREIGN KEY (`id_promo`) REFERENCES `promo` (`id_promo`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `credit_ibfk_5` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `credit_ibfk_6` FOREIGN KEY (`id_order_reference`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `credit_ibfk_7` FOREIGN KEY (`id_restaurant_paid_by`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `credit_ibfk_9` FOREIGN KEY (`id_credit_debited_from`) REFERENCES `credit` (`id_credit`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit`
--

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

--
-- Table structure for table `cron_log`
--

DROP TABLE IF EXISTS `cron_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `cron_log` (
  `id_cron_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `description` varchar(50) DEFAULT NULL,
  `class` varchar(200) DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `interval` enum('minute','hour','day','week') NOT NULL DEFAULT 'day',
  `interval_unity` tinyint(2) NOT NULL DEFAULT 1,
  `current_status` enum('idle','running') NOT NULL DEFAULT 'idle',
  `next_time` datetime DEFAULT NULL,
  `finished` datetime DEFAULT NULL,
  `interactions` int(11) NOT NULL DEFAULT 0,
  `env` enum('live','crondb','local') DEFAULT 'live',
  PRIMARY KEY (`id_cron_log`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cron_log`
--

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

--
-- Table structure for table `custom_query`
--

DROP TABLE IF EXISTS `custom_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `custom_query` (
  `id_custom_query` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `slug` varchar(40) DEFAULT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`id_custom_query`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `custom_query`
--

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

--
-- Table structure for table `custom_query_version`
--

DROP TABLE IF EXISTS `custom_query_version`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `custom_query_version` (
  `id_custom_query_version` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_custom_query` int(11) unsigned NOT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `query` text DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `status` enum('draft','deleted','working') NOT NULL DEFAULT 'draft',
  PRIMARY KEY (`id_custom_query_version`),
  KEY `id_custom_query` (`id_custom_query`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `custom_query_version_ibfk_1` FOREIGN KEY (`id_custom_query`) REFERENCES `custom_query` (`id_custom_query`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `custom_query_version_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `custom_query_version`
--

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

--
-- Table structure for table `delivery_signup`
--

DROP TABLE IF EXISTS `delivery_signup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `delivery_signup` (
  `id_delivery_signup` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(40) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `university` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `state` varchar(2) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `restaurants` text DEFAULT NULL,
  `status` enum('new','deleted','archived','review') NOT NULL DEFAULT 'new',
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_delivery_signup`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `delivery_signup`
--

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

--
-- Table structure for table `deploy_server`
--

DROP TABLE IF EXISTS `deploy_server`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `deploy_server` (
  `id_deploy_server` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `repo` varchar(255) DEFAULT NULL,
  `ip` varchar(255) DEFAULT NULL,
  `script` varchar(255) DEFAULT NULL,
  `params` text DEFAULT NULL,
  `hostname` varchar(255) DEFAULT NULL,
  `travis` tinyint(1) DEFAULT 0,
  `tag` tinyint(1) DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_deploy_server`),
  UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `deploy_server`
--

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

--
-- Table structure for table `deploy_version`
--

DROP TABLE IF EXISTS `deploy_version`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `deploy_version` (
  `id_deploy_version` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_deploy_server` int(10) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `version` varchar(255) DEFAULT NULL,
  `log` text DEFAULT NULL,
  `status` enum('deploying','success','failed','new') DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_deploy_version`),
  KEY `id_deploy_server` (`id_deploy_server`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `deploy_version_ibfk_1` FOREIGN KEY (`id_deploy_server`) REFERENCES `deploy_server` (`id_deploy_server`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `deploy_version_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `deploy_version`
--

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

--
-- Table structure for table `dish`
--

DROP TABLE IF EXISTS `dish`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish` (
  `id_dish` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `price` float DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `top` tinyint(1) NOT NULL DEFAULT 0,
  `top_name` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `type` enum('drink','dish','side','beverage','extra','sauce') DEFAULT NULL,
  `id_category` int(11) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `sort` int(11) unsigned NOT NULL DEFAULT 0,
  `expand_view` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_dish`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `id_category` (`id_category`),
  CONSTRAINT `dish_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `dish_ibfk_2` FOREIGN KEY (`id_category`) REFERENCES `category` (`id_category`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish`
--

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

--
-- Table structure for table `dish_change`
--

DROP TABLE IF EXISTS `dish_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish_change` (
  `id_dish_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_dish_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_dish_change`),
  KEY `id_dish_change_set` (`id_dish_change_set`),
  CONSTRAINT `dish_change_ibfk_1` FOREIGN KEY (`id_dish_change_set`) REFERENCES `dish_change_set` (`id_dish_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish_change`
--

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

--
-- Table structure for table `dish_change_set`
--

DROP TABLE IF EXISTS `dish_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish_change_set` (
  `id_dish_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_dish` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_dish_change_set`),
  KEY `id_dish` (`id_dish`),
  KEY `id_admin` (`id_admin`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `dish_change_set_ibfk_1` FOREIGN KEY (`id_dish`) REFERENCES `dish` (`id_dish`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `dish_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `dish_change_set_ibfk_3` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish_change_set`
--

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

--
-- Table structure for table `dish_option`
--

DROP TABLE IF EXISTS `dish_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish_option` (
  `id_dish_option` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_dish` int(11) unsigned DEFAULT NULL,
  `id_option` int(11) unsigned DEFAULT NULL,
  `default` tinyint(1) NOT NULL DEFAULT 0,
  `sort` int(11) unsigned NOT NULL DEFAULT 0,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_dish_option`),
  KEY `id_dish` (`id_dish`),
  KEY `id_topping` (`id_option`),
  CONSTRAINT `dish_option_ibfk_1` FOREIGN KEY (`id_dish`) REFERENCES `dish` (`id_dish`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `dish_option_ibfk_2` FOREIGN KEY (`id_option`) REFERENCES `option` (`id_option`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish_option`
--

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

--
-- Table structure for table `dish_option_change`
--

DROP TABLE IF EXISTS `dish_option_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish_option_change` (
  `id_dish_option_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_dish_option_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_dish_option_change`),
  KEY `id_dish_option_change_set` (`id_dish_option_change_set`),
  CONSTRAINT `dish_option_change_ibfk_1` FOREIGN KEY (`id_dish_option_change_set`) REFERENCES `dish_option_change_set` (`id_dish_option_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish_option_change`
--

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

--
-- Table structure for table `dish_option_change_set`
--

DROP TABLE IF EXISTS `dish_option_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish_option_change_set` (
  `id_dish_option_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_dish_option` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_dish_option_change_set`),
  KEY `id_dish_option` (`id_dish_option`),
  KEY `id_admin` (`id_admin`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `dish_option_change_set_ibfk_1` FOREIGN KEY (`id_dish_option`) REFERENCES `dish_option` (`id_dish_option`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `dish_option_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `dish_option_change_set_ibfk_3` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish_option_change_set`
--

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

--
-- Table structure for table `dish_price`
--

DROP TABLE IF EXISTS `dish_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish_price` (
  `id_dish_price` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_dish` int(11) DEFAULT NULL,
  `time_start` time DEFAULT NULL,
  `time_end` time DEFAULT NULL,
  `price` float DEFAULT NULL,
  PRIMARY KEY (`id_dish_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish_price`
--

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

--
-- Table structure for table `dish_tag`
--

DROP TABLE IF EXISTS `dish_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dish_tag` (
  `id_dish_tag` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_dish` int(11) unsigned DEFAULT NULL,
  `id_tag` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_dish_tag`),
  KEY `id_dish` (`id_dish`),
  KEY `id_tag` (`id_tag`),
  CONSTRAINT `dish_tag_ibfk_1` FOREIGN KEY (`id_dish`) REFERENCES `dish` (`id_dish`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `dish_tag_ibfk_2` FOREIGN KEY (`id_tag`) REFERENCES `tag` (`id_tag`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dish_tag`
--

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

--
-- Table structure for table `driver_document`
--

DROP TABLE IF EXISTS `driver_document`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `driver_document` (
  `id_driver_document` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(40) DEFAULT NULL,
  `order` int(4) unsigned DEFAULT NULL,
  `url` text DEFAULT NULL,
  `required` tinyint(1) NOT NULL DEFAULT 1,
  `type` enum('driver','marketing-rep') DEFAULT NULL,
  `active` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_driver_document`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `driver_document`
--

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

--
-- Table structure for table `driver_document_status`
--

DROP TABLE IF EXISTS `driver_document_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `driver_document_status` (
  `id_driver_document_status` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_driver_document` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  `file` varchar(50) DEFAULT NULL,
  `id_admin_approved` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_driver_document_status`),
  KEY `driver_document_status_ibfk_1` (`id_driver_document`),
  KEY `driver_document_status_ibfk_2` (`id_admin`),
  KEY `driver_document_status_ibfk_3` (`id_admin_approved`),
  CONSTRAINT `driver_document_status_ibfk_1` FOREIGN KEY (`id_driver_document`) REFERENCES `driver_document` (`id_driver_document`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `driver_document_status_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `driver_document_status_ibfk_3` FOREIGN KEY (`id_admin_approved`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `driver_document_status`
--

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

--
-- Table structure for table `driver_info`
--

DROP TABLE IF EXISTS `driver_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `driver_info` (
  `id_driver_info` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `phone_type` varchar(40) DEFAULT NULL,
  `cell_carrier` varchar(40) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `pexcard_date` date DEFAULT NULL,
  `student` tinyint(1) NOT NULL DEFAULT 0,
  `permashifts` tinyint(1) NOT NULL DEFAULT 0,
  `weekly_hours` int(11) unsigned DEFAULT NULL,
  `phone_subtype` varchar(40) DEFAULT NULL,
  `phone_version` varchar(40) DEFAULT NULL,
  `notes_to_driver` text DEFAULT NULL,
  `tshirt_size` varchar(5) DEFAULT NULL,
  `down_to_help_out` int(1) NOT NULL DEFAULT 0,
  `weekend_driver` int(1) NOT NULL DEFAULT 0,
  `down_to_help_out_stop` date DEFAULT NULL,
  `ignore_shift_reminders` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_driver_info`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `driver_info_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `driver_info`
--

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

--
-- Table structure for table `driver_info_change`
--

DROP TABLE IF EXISTS `driver_info_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `driver_info_change` (
  `id_driver_info_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_driver_info_change_set` int(10) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_driver_info_change`),
  KEY `id_driver_info_change_set` (`id_driver_info_change_set`),
  CONSTRAINT `driver_info_change_ibfk_1` FOREIGN KEY (`id_driver_info_change_set`) REFERENCES `driver_info_change_set` (`id_driver_info_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `driver_info_change`
--

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

--
-- Table structure for table `driver_info_change_set`
--

DROP TABLE IF EXISTS `driver_info_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `driver_info_change_set` (
  `id_driver_info_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_driver_info` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT current_timestamp(),
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_driver_info_change_set`),
  KEY `id_driver_info` (`id_driver_info`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `driver_info_change_set_ibfk_1` FOREIGN KEY (`id_driver_info`) REFERENCES `driver_info` (`id_driver_info`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `driver_info_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `driver_info_change_set`
--

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

--
-- Table structure for table `driver_log`
--

DROP TABLE IF EXISTS `driver_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `driver_log` (
  `id_driver_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `action` enum('created-driver','created-cockpit','updated-cockpit','notified-setup','document-sent','account-setup','native-app-login','enabled-push','enabled-location') DEFAULT NULL,
  `info` varchar(200) DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  PRIMARY KEY (`id_driver_log`),
  KEY `driver_log_ibfk_1` (`id_admin`),
  CONSTRAINT `driver_log_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `driver_log`
--

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

--
-- Table structure for table `email_address`
--

DROP TABLE IF EXISTS `email_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_address` (
  `id_email_address` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_email_address`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_address`
--

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

--
-- Table structure for table `email_address_log`
--

DROP TABLE IF EXISTS `email_address_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_address_log` (
  `id_email_address_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_email_address_to` int(11) unsigned DEFAULT NULL,
  `id_email_address_from` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_email_address_log`),
  KEY `id_email_address_to` (`id_email_address_to`),
  KEY `id_email_address_from` (`id_email_address_from`),
  CONSTRAINT `email_address_log_ibfk_1` FOREIGN KEY (`id_email_address_to`) REFERENCES `email_address` (`id_email_address`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `email_address_log_ibfk_2` FOREIGN KEY (`id_email_address_from`) REFERENCES `email_address` (`id_email_address`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_address_log`
--

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

--
-- Table structure for table `fax`
--

DROP TABLE IF EXISTS `fax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `fax` (
  `id_fax` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `fax` varchar(40) DEFAULT NULL,
  `file` varchar(255) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `status` enum('new','sending','error','success') DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `phaxio` varchar(255) DEFAULT NULL,
  `message` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_fax`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `fax_admin_fk2` (`id_admin`),
  CONSTRAINT `fax_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fax_ibfk_2` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `fax`
--

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

--
-- Table structure for table `group`
--

DROP TABLE IF EXISTS `group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `group` (
  `id_group` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(120) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `type` enum('driver','marketing-rep','comm-director') DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_group`),
  KEY `group_ibfk_1` (`id_community`),
  CONSTRAINT `group_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `group`
--

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

--
-- Table structure for table `holiday`
--

DROP TABLE IF EXISTS `holiday`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `holiday` (
  `id_holiday` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `date_parse` varchar(40) DEFAULT NULL,
  `date_specific` varchar(40) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_holiday`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `holiday`
--

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

--
-- Table structure for table `hour`
--

DROP TABLE IF EXISTS `hour`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `hour` (
  `id_hour` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `day` enum('mon','tue','wed','thu','fri','sat','sun') DEFAULT NULL,
  `time_open` varchar(5) DEFAULT '',
  `time_close` varchar(5) DEFAULT NULL,
  PRIMARY KEY (`id_hour`),
  KEY `id_restaurant` (`id_restaurant`),
  CONSTRAINT `hour_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `hour`
--

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

--
-- Table structure for table `loc_log`
--

DROP TABLE IF EXISTS `loc_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `loc_log` (
  `id_loc_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(11) unsigned DEFAULT NULL,
  `address_entered` varchar(255) DEFAULT NULL,
  `address_reverse` text DEFAULT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(50) DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `long` float DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `ip` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id_loc_log`),
  KEY `loc_log_ibfk_1` (`id_user`),
  CONSTRAINT `loc_log_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `loc_log`
--

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

--
-- Table structure for table `log`
--

DROP TABLE IF EXISTS `log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `log` (
  `id_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_log_type` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `data` text DEFAULT NULL,
  `level` enum('critical','debug','error','warning') DEFAULT 'debug',
  PRIMARY KEY (`id_log`),
  KEY `log_ibfk_1` (`id_log_type`),
  CONSTRAINT `log_ibfk_1` FOREIGN KEY (`id_log_type`) REFERENCES `log_type` (`id_log_type`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=841 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `log`
--

LOCK TABLES `log` WRITE;
/*!40000 ALTER TABLE `log` DISABLE KEYS */;
INSERT INTO `log` VALUES (1,1,'2019-05-18 09:45:06','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(2,2,'2019-05-18 10:19:31','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(3,3,'2019-05-18 10:19:32','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3957614,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(4,2,'2019-05-18 14:04:56','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(5,1,'2019-05-25 09:48:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(6,2,'2019-05-25 12:50:24','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(7,2,'2019-05-25 14:46:30','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(8,3,'2019-05-26 05:56:26','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":391337,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(9,2,'2019-05-26 21:44:14','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(10,2,'2019-05-28 15:57:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(11,1,'2019-05-28 17:50:57','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(12,3,'2019-05-29 09:14:42','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2999769,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(13,2,'2019-05-30 19:39:38','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(14,3,'2019-05-30 22:56:08','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":41366,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(15,2,'2019-05-30 23:10:36','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(16,2,'2019-05-31 01:13:28','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(17,1,'2019-05-31 11:36:33','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(18,2,'2019-05-31 14:16:01','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(19,3,'2019-05-31 15:56:41','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1155969,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(20,1,'2019-05-31 16:00:36','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(21,2,'2019-05-31 16:59:22','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(22,1,'2019-05-31 17:23:58','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(23,2,'2019-05-31 17:33:50','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(24,3,'2019-06-01 12:35:15','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3344269,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(25,2,'2019-06-03 03:12:49','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(26,1,'2019-06-10 07:17:23','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(27,2,'2019-06-10 15:56:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(28,4,'2019-06-10 17:48:12','{\"action\":\"Starting the driver schedule verification period from 2019-06-13 to 2019-06-19 at 2019-06-10 17:48:12 Monday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(29,4,'2019-06-10 17:48:12','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(30,4,'2019-06-10 17:48:12','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(31,4,'2019-06-10 17:48:12','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(32,2,'2019-06-10 19:58:57','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(33,3,'2019-06-10 23:10:44','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1757789,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(34,2,'2019-06-11 10:14:10','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(35,2,'2019-06-11 14:50:32','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(36,1,'2019-06-12 04:09:59','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(37,3,'2019-06-12 21:03:31','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1823721,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(38,1,'2019-06-13 08:05:31','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(39,1,'2019-06-13 14:07:51','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(40,2,'2019-06-14 04:17:01','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(41,1,'2019-06-15 23:21:10','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(42,2,'2019-06-17 02:47:26','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(43,1,'2019-06-18 18:13:40','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(44,2,'2019-06-20 03:16:32','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(45,3,'2019-07-22 13:23:42','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":125734,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(46,3,'2019-07-23 20:18:06','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":99615,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(47,2,'2019-07-24 12:50:10','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(48,2,'2019-07-26 14:01:16','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(49,2,'2019-07-27 08:47:23','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(50,2,'2019-07-28 01:14:57','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(51,3,'2019-07-29 09:03:24','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":142293,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(52,3,'2019-07-31 00:24:43','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":159357,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(53,3,'2019-08-25 02:14:14','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":75627,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(54,2,'2019-08-29 08:01:31','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(55,3,'2019-08-30 22:15:34','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3957610,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(56,2,'2019-08-31 20:34:29','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(57,2,'2019-09-02 15:51:18','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(58,3,'2019-09-02 19:37:57','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3163093,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(59,2,'2019-09-07 20:55:43','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(60,3,'2019-09-09 00:48:50','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1729076,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(61,2,'2019-09-10 21:26:09','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(62,3,'2019-10-02 01:28:18','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":4107295,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(63,2,'2019-10-03 17:58:19','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(64,2,'2019-10-07 01:48:15','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(65,3,'2019-10-07 09:31:36','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3732365,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(66,2,'2019-10-15 11:32:09','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(67,3,'2019-10-15 22:22:04','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2921297,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(68,2,'2019-10-17 19:48:31','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(69,3,'2019-10-21 22:35:28','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":495062,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(70,3,'2019-11-03 04:58:25','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3417079,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(71,2,'2019-11-09 00:53:23','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(72,2,'2019-11-10 09:23:57','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(73,3,'2019-11-12 08:27:24','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3407541,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(74,2,'2019-11-18 17:23:51','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(75,2,'2019-11-19 08:49:29','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(76,3,'2019-11-22 08:35:52','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3038407,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(77,3,'2019-11-26 18:54:53','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1025640,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(78,3,'2019-12-05 22:36:39','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2136086,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(79,2,'2019-12-10 13:06:38','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(80,3,'2019-12-14 11:31:39','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2890055,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(81,2,'2019-12-18 04:47:01','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(82,2,'2019-12-23 10:12:06','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(83,2,'2019-12-24 08:43:22','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(84,3,'2019-12-25 00:38:17','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3486048,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(85,3,'2020-01-01 06:51:05','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1224243,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(86,2,'2020-01-14 18:38:04','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(87,3,'2020-01-19 06:58:36','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":227926,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(88,2,'2020-01-24 05:21:39','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(89,2,'2020-01-25 13:51:16','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(90,3,'2020-01-25 22:19:11','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":108796,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(91,3,'2020-01-28 21:19:50','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":176879,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(92,2,'2020-02-04 07:28:32','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(93,3,'2020-02-08 13:51:26','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":145382,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(94,2,'2020-02-20 04:45:53','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(95,2,'2020-02-28 04:56:12','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(96,3,'2020-02-29 03:10:13','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":52885,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(97,2,'2020-03-04 16:49:39','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(98,3,'2020-03-04 18:11:38','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":181764,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(99,3,'2020-03-05 19:23:17','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":191656,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(100,2,'2020-03-10 15:35:41','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(101,3,'2020-03-16 02:21:41','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":140987,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(102,2,'2020-03-23 06:23:53','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(103,2,'2020-04-07 22:05:31','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(104,3,'2020-04-10 12:26:04','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3654650,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(105,3,'2020-04-12 19:06:34','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3331449,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(106,3,'2020-04-14 10:11:24','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2580795,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(107,2,'2020-04-14 21:59:44','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(108,3,'2020-04-18 09:55:28','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":4092494,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(109,2,'2020-04-21 08:34:07','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(110,2,'2020-04-30 19:55:26','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(111,3,'2020-05-13 18:14:30','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1678423,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(112,2,'2020-05-14 09:03:20','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(113,3,'2020-05-15 00:32:07','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":3280432,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(114,1,'2020-05-15 12:23:22','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(115,2,'2020-05-16 05:54:13','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(116,2,'2020-05-19 06:01:45','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(117,2,'2020-05-23 23:23:40','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(118,3,'2020-05-25 14:24:50','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2950628,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(119,2,'2020-05-25 16:26:49','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(120,1,'2020-05-25 22:43:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(121,3,'2020-08-24 03:28:07','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":116712,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(122,2,'2020-08-25 19:13:43','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(123,2,'2020-11-25 06:50:20','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(124,3,'2020-11-27 03:47:12','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":802074,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(125,2,'2021-02-27 01:33:39','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(126,3,'2021-02-28 22:08:06','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2814957,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(127,2,'2021-05-31 13:18:36','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(128,3,'2021-06-02 01:34:07','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":142992,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(129,2,'2021-06-03 15:19:10','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(130,2,'2021-08-27 16:50:01','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(131,1,'2021-08-28 00:08:37','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(132,3,'2021-09-03 04:38:53','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":1339004,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(133,2,'2021-09-04 20:12:54','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(134,2,'2021-11-27 11:34:25','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(135,1,'2021-11-27 18:27:59','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(136,2,'2021-12-05 22:03:30','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(137,3,'2021-12-07 12:49:52','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":2757349,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(138,2,'2022-03-01 00:21:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(139,1,'2022-03-01 07:26:45','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(140,2,'2022-03-04 09:20:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.snappytechs.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(141,1,'2022-03-04 17:05:11','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(142,2,'2022-03-09 09:37:54','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(143,3,'2022-03-11 02:36:30','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecbiz246.inmotionhosting.com\",\"pid\":270598,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(144,2,'2024-02-19 01:04:10','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(145,2,'2024-02-19 01:33:55','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(146,1,'2024-02-19 01:47:28','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(147,2,'2024-02-19 02:34:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(148,2,'2024-02-19 02:34:59','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(149,1,'2024-02-19 03:00:51','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(150,3,'2024-02-19 03:20:47','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2601647,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(151,3,'2024-02-19 07:26:03','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1001713,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(152,2,'2024-02-19 08:02:28','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(153,2,'2024-02-19 11:05:03','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(154,2,'2024-02-19 11:05:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(155,1,'2024-02-19 11:36:39','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(156,2,'2024-02-19 18:40:48','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(157,2,'2024-02-19 18:41:39','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(158,3,'2024-02-19 20:57:16','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1536650,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(159,2,'2024-02-21 19:00:09','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(160,1,'2024-02-21 20:23:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(161,3,'2024-02-22 04:24:05','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":135722,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(162,2,'2024-02-22 07:42:28','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(163,2,'2024-02-22 07:43:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(164,3,'2024-03-10 00:23:45','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3690068,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(165,2,'2024-03-10 00:25:14','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(166,1,'2024-03-10 00:25:40','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(167,2,'2024-03-10 00:26:24','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(168,3,'2024-03-10 00:27:00','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3722641,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(169,3,'2024-03-10 00:27:21','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3726313,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(170,2,'2024-03-10 00:30:37','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(171,2,'2024-03-10 00:31:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(172,2,'2024-03-10 00:31:19','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(173,1,'2024-03-10 00:31:49','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(174,1,'2024-03-10 00:32:19','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(175,2,'2024-03-10 00:32:19','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(176,3,'2024-03-10 00:34:18','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3799744,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(177,2,'2024-03-10 00:38:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(178,2,'2024-03-10 02:16:13','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(179,1,'2024-03-10 02:16:43','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(180,2,'2024-03-21 19:06:32','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(181,2,'2024-03-21 19:07:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(182,2,'2024-03-22 02:39:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(183,2,'2024-03-22 02:40:11','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(184,2,'2024-03-27 03:39:31','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(185,2,'2024-03-27 03:40:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(186,2,'2024-04-02 03:22:10','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(187,2,'2024-04-02 03:22:59','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(188,3,'2024-04-22 17:13:19','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3630623,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(189,2,'2024-04-22 17:58:13','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(190,1,'2024-04-22 18:06:26','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(191,1,'2024-04-22 20:03:21','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(192,1,'2024-04-22 20:22:09','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(193,3,'2024-04-22 20:23:05','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1797814,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(194,4,'2024-04-22 21:44:21','{\"action\":\"Starting the driver schedule verification period from 2024-04-25 to 2024-05-01 at 2024-04-22 21:44:21 Monday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(195,4,'2024-04-22 21:44:21','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(196,4,'2024-04-22 21:44:21','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(197,4,'2024-04-22 21:44:21','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(198,2,'2024-04-22 21:55:58','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(199,2,'2024-04-23 00:41:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(200,2,'2024-04-23 00:41:59','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(201,2,'2024-04-23 01:18:45','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(202,1,'2024-04-23 02:00:55','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(203,3,'2024-04-23 04:14:48','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3109281,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(204,2,'2024-04-23 06:26:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(205,2,'2024-04-23 06:26:54','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(206,3,'2024-04-23 07:50:01','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1256835,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(207,2,'2024-04-23 09:38:00','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(208,2,'2024-04-28 00:09:02','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(209,2,'2024-04-28 00:09:52','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(210,2,'2024-05-03 02:55:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(211,2,'2024-05-03 02:55:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(212,2,'2024-05-24 02:05:08','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(213,2,'2024-05-24 02:05:57','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(214,2,'2024-05-29 13:04:31','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(215,2,'2024-05-29 13:05:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(216,2,'2024-05-29 13:42:44','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(217,2,'2024-05-29 13:43:34','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(218,2,'2024-06-05 15:54:11','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(219,2,'2024-06-05 15:55:01','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(220,3,'2024-06-28 04:33:36','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2794747,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(221,1,'2024-06-28 05:44:19','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(222,2,'2024-06-28 09:04:12','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(223,2,'2024-06-28 09:31:46','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(224,2,'2024-06-28 09:32:36','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(225,3,'2024-06-28 09:53:10','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2132730,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(226,3,'2024-06-28 10:09:54','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2318652,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(227,1,'2024-06-28 10:52:35','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(228,1,'2024-06-28 11:01:18','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(229,2,'2024-06-28 15:22:47','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(230,2,'2024-06-28 15:32:55','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(231,1,'2024-06-28 17:01:08','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(232,2,'2024-06-28 17:22:28','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(233,3,'2024-06-28 19:30:40','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":645412,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(234,2,'2024-07-03 19:53:15','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(235,2,'2024-07-03 19:54:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(236,2,'2024-07-04 00:20:19','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(237,2,'2024-07-04 00:21:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(238,2,'2024-07-07 20:26:33','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(239,2,'2024-07-07 20:26:33','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(240,4,'2024-07-07 20:26:34','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:26:34 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(241,4,'2024-07-07 20:26:34','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(242,4,'2024-07-07 20:26:34','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(243,4,'2024-07-07 20:26:34','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(244,3,'2024-07-07 20:26:34','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":648550,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(245,2,'2024-07-07 20:26:34','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(246,4,'2024-07-07 20:26:34','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:26:34 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(247,4,'2024-07-07 20:26:35','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(248,4,'2024-07-07 20:26:35','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(249,4,'2024-07-07 20:26:35','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(250,1,'2024-07-07 20:27:04','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(251,2,'2024-07-07 20:27:34','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(252,1,'2024-07-07 20:28:04','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(253,3,'2024-07-07 20:28:33','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":648550,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(254,4,'2024-07-07 20:29:05','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:29:05 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(255,4,'2024-07-07 20:29:05','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(256,4,'2024-07-07 20:29:05','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(257,4,'2024-07-07 20:29:05','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(258,2,'2024-07-07 20:29:32','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(259,4,'2024-07-07 20:29:33','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:29:33 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(260,4,'2024-07-07 20:29:33','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(261,4,'2024-07-07 20:29:33','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(262,4,'2024-07-07 20:29:33','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(263,3,'2024-07-07 20:30:33','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":694474,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(264,2,'2024-07-07 20:30:33','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(265,1,'2024-07-07 20:30:34','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(266,2,'2024-07-07 20:31:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(267,1,'2024-07-07 20:32:03','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(268,2,'2024-07-07 20:33:33','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(269,2,'2024-07-07 20:43:40','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(270,4,'2024-07-07 20:43:45','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:43:45 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(271,4,'2024-07-07 20:43:45','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(272,4,'2024-07-07 20:43:45','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(273,4,'2024-07-07 20:43:45','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(274,2,'2024-07-07 20:43:47','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(275,4,'2024-07-07 20:43:52','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:43:52 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(276,4,'2024-07-07 20:43:52','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(277,4,'2024-07-07 20:43:52','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(278,4,'2024-07-07 20:43:52','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(279,4,'2024-07-07 20:43:54','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:43:54 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(280,4,'2024-07-07 20:43:54','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(281,4,'2024-07-07 20:43:54','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(282,4,'2024-07-07 20:43:54','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(283,3,'2024-07-07 20:43:55','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":831629,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(284,4,'2024-07-07 20:43:57','{\"action\":\"Starting the driver schedule verification period from 2024-07-11 to 2024-07-17 at 2024-07-07 20:43:57 Sunday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(285,4,'2024-07-07 20:43:57','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(286,4,'2024-07-07 20:43:57','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(287,4,'2024-07-07 20:43:57','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(288,3,'2024-07-07 20:44:00','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":831629,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(289,3,'2024-07-07 20:44:00','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":831897,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(290,3,'2024-07-07 20:44:01','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":831935,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(291,2,'2024-07-07 20:44:03','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(292,2,'2024-07-07 20:44:03','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(293,2,'2024-07-08 22:22:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(294,2,'2024-07-08 22:22:55','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(295,2,'2024-07-26 18:01:21','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(296,1,'2024-07-26 18:01:57','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(297,3,'2024-07-26 18:02:21','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3281445,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(298,2,'2024-07-26 18:03:50','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(299,2,'2024-07-30 04:43:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(300,2,'2024-07-30 04:43:55','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(301,2,'2024-08-04 19:30:48','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(302,2,'2024-08-04 19:31:38','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(303,2,'2024-08-04 23:26:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(304,2,'2024-08-04 23:27:00','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(305,3,'2024-08-09 18:31:55','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1052386,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(306,2,'2024-08-09 18:32:10','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(307,1,'2024-08-09 18:32:58','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(308,2,'2024-08-09 18:34:27','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(309,2,'2024-08-09 21:41:19','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(310,1,'2024-08-09 21:42:04','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(311,2,'2024-08-09 21:43:08','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(312,3,'2024-08-09 22:00:12','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2696377,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(313,2,'2024-08-09 22:49:15','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(314,1,'2024-08-09 22:49:43','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(315,2,'2024-08-09 23:52:46','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(316,1,'2024-08-10 00:04:25','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(317,1,'2024-08-10 02:26:04','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(318,2,'2024-08-10 02:27:10','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(319,2,'2024-08-10 04:41:48','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(320,2,'2024-08-10 05:20:02','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(321,1,'2024-08-10 05:20:29','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(322,2,'2024-08-10 05:29:32','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(323,3,'2024-08-10 05:33:39','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1712975,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(324,2,'2024-08-10 06:04:30','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(325,2,'2024-08-10 06:12:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(326,1,'2024-08-10 07:12:39','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(327,1,'2024-08-10 10:12:02','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(328,2,'2024-08-10 10:16:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(329,2,'2024-08-10 10:17:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(330,1,'2024-08-30 23:33:10','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(331,1,'2024-08-31 00:06:43','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(332,1,'2024-08-31 01:50:56','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(333,3,'2024-08-31 03:16:18','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3763364,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(334,3,'2024-08-31 03:59:00','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":4136060,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(335,2,'2024-08-31 05:47:48','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(336,2,'2024-08-31 07:07:34','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(337,2,'2024-08-31 08:00:49','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(338,3,'2024-08-31 09:11:32','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2099594,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(339,2,'2024-08-31 12:20:44','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(340,2,'2024-08-31 13:25:19','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(341,2,'2024-08-31 13:26:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(342,2,'2024-09-05 07:17:03','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(343,2,'2024-09-05 07:17:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(344,2,'2024-09-05 11:21:48','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(345,2,'2024-09-05 11:22:38','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(346,2,'2024-09-14 16:49:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(347,2,'2024-09-14 16:49:56','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(348,1,'2024-09-21 22:31:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(349,3,'2024-09-22 01:59:59','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2796630,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(350,2,'2024-09-22 14:38:54','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(351,2,'2024-09-22 14:39:53','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(352,3,'2024-09-22 14:39:53','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":134758,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(353,3,'2024-09-22 14:39:54','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":125475,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(354,1,'2024-09-22 14:40:24','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(355,2,'2024-09-22 14:40:24','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(356,1,'2024-09-22 14:40:24','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(357,1,'2024-09-22 14:41:23','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(358,3,'2024-09-22 14:41:23','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":153750,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(359,2,'2024-09-22 14:41:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(360,2,'2024-09-22 14:41:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(361,1,'2024-09-22 14:42:23','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(362,2,'2024-09-22 14:42:25','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(363,2,'2024-09-22 14:43:16','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(364,2,'2024-09-22 14:43:23','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(365,2,'2024-09-22 14:43:35','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(366,2,'2024-09-22 14:43:37','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(367,1,'2024-09-27 00:30:26','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(368,1,'2024-09-27 20:48:42','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(369,2,'2024-09-28 00:48:45','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(370,2,'2024-09-28 05:56:32','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(371,3,'2024-09-28 05:59:36','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3714101,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(372,1,'2024-09-28 17:18:30','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(373,1,'2024-09-29 03:54:47','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(374,3,'2024-09-29 07:55:25','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1047171,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(375,2,'2024-09-29 11:24:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(376,2,'2024-09-29 14:44:23','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(377,3,'2024-10-05 07:22:54','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":892150,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(378,2,'2024-10-05 19:22:16','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(379,1,'2024-10-06 12:03:00','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(380,2,'2024-10-07 01:07:58','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(381,3,'2024-10-07 12:43:02','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1212899,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(382,1,'2024-10-07 23:31:45','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(383,2,'2024-10-08 11:52:47','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(384,2,'2024-10-08 11:53:37','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(385,2,'2024-10-08 14:24:57','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(386,2,'2024-10-08 14:25:47','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(387,2,'2024-10-08 15:17:26','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(388,2,'2024-10-08 15:18:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(389,3,'2024-10-10 07:52:28','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3101679,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(390,3,'2024-10-12 00:57:05','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2791014,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(391,2,'2024-10-13 20:12:56','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(392,2,'2024-10-14 07:28:51','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(393,2,'2024-10-18 22:04:57','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(394,2,'2024-10-19 08:02:47','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(395,2,'2024-10-19 08:03:38','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(396,2,'2024-10-20 11:55:55','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(397,2,'2024-10-20 20:29:33','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(398,3,'2024-10-23 03:29:38','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1828013,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(399,2,'2024-10-27 22:44:34','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(400,1,'2024-10-30 09:42:52','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(401,1,'2024-10-30 15:18:51','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(402,1,'2024-10-30 21:11:46','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(403,3,'2024-10-30 21:48:01','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":668472,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(404,3,'2024-10-30 21:59:53','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":743589,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(405,2,'2024-11-02 22:33:02','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(406,2,'2024-11-03 16:43:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(407,2,'2024-11-06 05:50:42','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(408,2,'2024-11-06 06:01:37','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(409,2,'2024-11-11 17:29:12','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(410,2,'2024-11-11 17:30:02','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(411,2,'2024-11-11 17:43:45','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(412,2,'2024-11-11 17:44:36','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(413,1,'2024-11-15 23:55:34','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(414,1,'2024-11-21 11:05:10','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(415,3,'2024-11-21 16:59:25','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":246013,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(416,2,'2024-11-21 22:52:12','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(417,2,'2024-11-21 22:53:02','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(418,3,'2024-11-29 01:38:43','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2228256,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(419,2,'2024-11-29 03:14:47','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(420,2,'2024-11-29 05:48:55','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(421,2,'2024-12-01 14:42:03','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(422,2,'2024-12-01 14:42:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(423,2,'2024-12-11 04:24:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(424,2,'2024-12-11 04:24:56','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(425,2,'2024-12-11 15:14:27','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(426,2,'2024-12-11 15:15:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(427,2,'2024-12-21 19:09:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(428,2,'2024-12-21 19:09:55','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(429,2,'2025-01-08 11:19:00','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(430,2,'2025-01-08 13:16:09','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(431,2,'2025-01-08 20:59:19','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(432,2,'2025-01-08 21:00:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(433,3,'2025-01-13 15:17:16','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2775076,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(434,1,'2025-01-13 17:28:18','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(435,1,'2025-01-13 18:00:41','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(436,1,'2025-01-13 20:19:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(437,3,'2025-01-13 22:12:07','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1678722,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(438,2,'2025-01-18 23:50:08','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(439,2,'2025-01-18 23:50:58','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(440,2,'2025-01-19 02:24:54','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(441,2,'2025-01-19 02:25:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(442,3,'2025-01-19 08:15:28','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2953645,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(443,1,'2025-01-19 12:15:42','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(444,2,'2025-01-25 01:49:29','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(445,3,'2025-01-25 06:20:53','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3882615,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(446,2,'2025-01-29 23:46:19','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(447,2,'2025-02-04 09:24:27','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(448,2,'2025-02-04 09:25:17','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(449,2,'2025-02-09 21:03:52','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(450,2,'2025-02-09 21:04:42','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(451,2,'2025-02-15 05:41:50','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(452,2,'2025-02-15 05:42:40','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(453,2,'2025-02-15 14:14:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(454,2,'2025-02-15 14:14:56','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(455,3,'2025-02-25 20:08:35','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":136328,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(456,2,'2025-02-25 20:09:39','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(457,1,'2025-02-25 20:10:13','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(458,2,'2025-02-25 20:11:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(459,3,'2025-02-25 20:55:19','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":495900,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(460,2,'2025-02-25 20:56:27','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(461,1,'2025-02-25 20:57:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(462,2,'2025-02-25 20:58:03','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(463,3,'2025-02-25 20:58:56','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":535490,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(464,2,'2025-02-25 21:00:08','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(465,1,'2025-02-25 21:00:39','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(466,2,'2025-02-25 21:01:45','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(467,3,'2025-02-26 03:00:12','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2977203,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(468,2,'2025-02-26 03:01:34','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(469,1,'2025-02-26 03:02:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(470,2,'2025-02-26 03:03:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(471,2,'2025-03-06 07:13:48','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(472,3,'2025-03-06 08:06:12','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":443584,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(473,1,'2025-03-06 08:06:34','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(474,2,'2025-03-06 08:17:33','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(475,2,'2025-03-07 20:31:39','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(476,1,'2025-03-08 08:30:43','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(477,2,'2025-03-08 11:31:20','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(478,2,'2025-03-08 19:19:35','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(479,2,'2025-03-08 19:20:25','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(480,2,'2025-03-09 01:41:32','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(481,2,'2025-03-12 05:08:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(482,2,'2025-03-13 23:56:19','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(483,2,'2025-03-13 23:57:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(484,1,'2025-03-14 01:25:56','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(485,1,'2025-03-14 02:17:03','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(486,1,'2025-03-14 06:59:55','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(487,3,'2025-03-14 07:50:59','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2135462,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(488,3,'2025-03-14 11:43:18','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3787282,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(489,1,'2025-03-15 08:10:45','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(490,2,'2025-03-15 08:12:52','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(491,2,'2025-03-15 08:20:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(492,2,'2025-03-15 08:32:24','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(493,3,'2025-03-15 08:40:19','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":67615,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(494,1,'2025-03-15 09:27:13','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(495,2,'2025-03-15 09:29:26','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(496,2,'2025-03-15 09:36:54','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(497,3,'2025-03-15 09:58:14','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":582843,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(498,1,'2025-03-15 10:21:24','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(499,2,'2025-03-17 04:36:51','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(500,2,'2025-03-17 05:45:09','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(501,2,'2025-03-17 06:53:39','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(502,2,'2025-03-17 08:03:19','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(503,2,'2025-03-17 09:11:41','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(504,2,'2025-03-17 10:18:12','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(505,2,'2025-03-17 11:27:19','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(506,2,'2025-03-17 12:33:29','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(507,2,'2025-03-18 16:00:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(508,1,'2025-03-18 19:57:28','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(509,2,'2025-11-16 17:50:39','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(510,2,'2025-11-20 21:11:44','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(511,2,'2025-11-20 21:11:48','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(512,2,'2025-11-20 21:11:51','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(513,2,'2025-11-20 21:11:54','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(514,1,'2025-11-20 21:12:28','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(515,1,'2025-11-21 00:58:15','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(516,1,'2025-11-21 03:43:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(517,1,'2025-11-21 06:05:27','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(518,2,'2025-11-21 08:38:15','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(519,2,'2025-11-21 12:19:43','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(520,2,'2025-11-21 14:44:47','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(521,2,'2025-11-21 16:46:44','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(522,3,'2025-11-22 08:22:11','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2133475,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(523,3,'2025-11-22 08:22:14','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2133475,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(524,3,'2025-11-22 08:22:18','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2133475,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(525,3,'2025-11-22 08:22:21','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2133475,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(526,1,'2025-11-22 20:59:11','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(527,1,'2025-11-22 22:00:28','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(528,1,'2025-11-22 23:35:33','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(529,1,'2025-11-22 23:47:24','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(530,1,'2025-11-22 23:47:59','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(531,2,'2025-11-23 00:57:55','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(532,2,'2025-11-23 01:55:02','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(533,2,'2025-11-23 02:54:58','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(534,2,'2025-11-23 04:45:52','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(535,2,'2025-11-23 05:12:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(536,2,'2025-11-23 05:12:26','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(537,2,'2025-11-23 06:07:13','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(538,3,'2025-11-23 08:10:05','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":617522,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(539,2,'2025-11-29 21:49:59','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(540,1,'2025-11-29 21:50:30','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(541,3,'2025-11-29 22:20:50','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1909101,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(542,1,'2025-11-29 22:28:36','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(543,3,'2025-11-29 23:11:41','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2242509,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(544,2,'2025-12-06 21:33:22','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(545,2,'2025-12-06 23:09:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(546,2,'2025-12-06 23:10:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(547,3,'2025-12-07 01:12:16','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1763739,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(548,3,'2025-12-07 05:18:55','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3738548,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(549,1,'2025-12-07 07:08:14','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(550,2,'2025-12-08 20:19:31','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(551,2,'2025-12-08 20:22:41','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(552,1,'2025-12-08 21:03:36','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(553,2,'2025-12-08 21:33:27','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(554,2,'2025-12-08 21:35:11','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(555,3,'2025-12-08 21:35:30','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1579536,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(556,4,'2025-12-08 22:21:43','{\"action\":\"Starting the driver schedule verification period from 2025-12-11 to 2025-12-17 at 2025-12-08 22:21:43 Monday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(557,4,'2025-12-08 22:21:43','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(558,4,'2025-12-08 22:21:43','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(559,4,'2025-12-08 22:21:43','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(560,4,'2025-12-08 23:07:43','{\"action\":\"Starting the driver schedule verification period from 2025-12-11 to 2025-12-17 at 2025-12-08 23:07:43 Monday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(561,4,'2025-12-08 23:07:43','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(562,4,'2025-12-08 23:07:43','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(563,4,'2025-12-08 23:07:43','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(564,2,'2025-12-09 06:05:12','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(565,1,'2025-12-09 06:06:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(566,3,'2025-12-09 06:06:34','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":962888,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(567,1,'2025-12-09 06:07:04','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(568,2,'2025-12-09 06:07:12','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(569,2,'2025-12-09 06:07:20','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(570,2,'2025-12-09 07:28:29','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(571,3,'2025-12-09 07:29:31','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1521947,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(572,2,'2025-12-09 07:30:29','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(573,1,'2025-12-09 07:30:59','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(574,3,'2025-12-09 07:30:59','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1521949,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(575,1,'2025-12-09 07:31:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(576,1,'2025-12-09 07:32:29','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(577,2,'2025-12-09 07:33:01','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(578,3,'2025-12-09 07:33:02','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1536991,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(579,3,'2025-12-14 09:22:51','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2437609,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(580,2,'2025-12-14 09:34:27','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(581,1,'2025-12-14 09:37:33','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(582,2,'2025-12-14 09:46:45','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(583,2,'2025-12-14 09:50:23','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(584,2,'2025-12-14 09:51:13','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(585,3,'2025-12-14 09:51:35','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2624387,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(586,2,'2025-12-14 10:43:21','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(587,3,'2025-12-14 10:49:18','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3026386,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(588,3,'2025-12-14 11:00:50','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3105102,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(589,1,'2025-12-14 14:32:49','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(590,2,'2025-12-14 15:26:56','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(591,2,'2025-12-14 15:27:46','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(592,2,'2025-12-14 16:41:36','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(593,3,'2025-12-14 19:13:40','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3966298,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(594,1,'2025-12-14 19:50:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(595,3,'2025-12-16 20:00:30','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":4066031,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(596,2,'2025-12-16 22:32:08','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(597,2,'2025-12-17 03:03:41','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(598,1,'2025-12-17 04:23:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(599,2,'2025-12-17 09:07:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(600,1,'2025-12-17 09:25:15','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(601,3,'2025-12-17 09:45:24','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1274351,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(602,2,'2025-12-17 14:31:49','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(603,2,'2025-12-19 20:46:45','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(604,3,'2025-12-19 20:51:43','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":639933,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(605,2,'2025-12-19 20:53:40','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(606,2,'2025-12-20 20:20:48','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(607,2,'2025-12-20 20:21:38','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(608,2,'2025-12-25 06:16:20','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(609,2,'2025-12-25 06:19:01','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(610,3,'2025-12-25 06:25:51','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2674709,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(611,1,'2025-12-25 23:03:11','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(612,2,'2025-12-26 03:52:34','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(613,1,'2025-12-28 04:42:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(614,2,'2025-12-29 09:23:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(615,1,'2025-12-29 20:43:18','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(616,2,'2025-12-30 09:43:07','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(617,1,'2025-12-30 21:01:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(618,1,'2025-12-31 23:41:33','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(619,2,'2026-01-01 12:02:50','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(620,1,'2026-01-01 19:32:20','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(621,1,'2026-01-03 00:04:53','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(622,2,'2026-01-03 10:03:19','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(623,1,'2026-01-03 23:50:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(624,2,'2026-01-05 10:54:10','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(625,1,'2026-01-05 16:45:38','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(626,2,'2026-01-06 12:54:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(627,1,'2026-01-06 17:53:37','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(628,2,'2026-01-07 06:45:36','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(629,2,'2026-01-08 20:04:38','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(630,1,'2026-01-08 22:40:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(631,2,'2026-01-09 12:40:33','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(632,1,'2026-01-09 23:37:21','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(633,2,'2026-01-10 01:32:56','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(634,2,'2026-01-11 01:14:07','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(635,1,'2026-01-11 09:56:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(636,2,'2026-01-11 19:04:08','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(637,1,'2026-01-12 03:02:52','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(638,2,'2026-01-12 14:54:44','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(639,1,'2026-01-12 19:51:17','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(640,2,'2026-01-13 15:41:57','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(641,1,'2026-01-13 20:02:27','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(642,2,'2026-01-14 21:32:14','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(643,2,'2026-01-15 01:39:09','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(644,2,'2026-01-15 02:07:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(645,2,'2026-01-15 02:08:43','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(646,2,'2026-01-15 03:02:15','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(647,2,'2026-01-15 03:03:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(648,1,'2026-01-15 07:52:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(649,1,'2026-01-19 20:20:36','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(650,2,'2026-01-20 15:43:40','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(651,1,'2026-01-20 19:52:53','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(652,2,'2026-01-21 04:19:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(653,2,'2026-01-21 04:19:54','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(654,1,'2026-01-21 07:05:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(655,3,'2026-01-21 08:19:09','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2951508,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(656,2,'2026-01-21 13:08:57','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(657,2,'2026-01-21 15:26:08','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(658,1,'2026-01-21 20:02:15','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(659,2,'2026-01-22 17:05:12','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(660,1,'2026-01-22 20:26:20','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(661,2,'2026-01-23 15:11:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(662,1,'2026-01-23 20:47:52','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(663,2,'2026-01-24 15:42:31','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(664,1,'2026-01-24 20:18:26','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(665,2,'2026-01-25 16:11:40','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(666,1,'2026-01-25 21:31:32','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(667,3,'2026-01-26 06:07:19','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2432616,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(668,2,'2026-01-26 06:18:54','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(669,2,'2026-01-26 06:23:39','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(670,1,'2026-01-26 06:29:45','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(671,1,'2026-01-26 20:06:30','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(672,2,'2026-01-27 14:56:09','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(673,1,'2026-01-27 19:52:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(674,2,'2026-01-28 08:03:47','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(675,2,'2026-01-28 08:04:00','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(676,1,'2026-01-28 19:03:59','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(677,2,'2026-01-29 14:16:44','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(678,1,'2026-01-30 11:01:47','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(679,2,'2026-01-30 14:24:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(680,1,'2026-01-30 19:51:26','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(681,2,'2026-01-31 14:25:36','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(682,1,'2026-01-31 19:54:22','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(683,2,'2026-02-01 14:23:17','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(684,1,'2026-02-01 19:11:23','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(685,2,'2026-02-02 15:03:41','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(686,1,'2026-02-02 17:06:11','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(687,2,'2026-02-03 14:48:39','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(688,1,'2026-02-03 19:29:13','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(689,2,'2026-02-04 15:24:22','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(690,2,'2026-02-04 15:24:34','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(691,1,'2026-02-04 21:48:51','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(692,3,'2026-02-05 11:20:02','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":158183,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(693,2,'2026-02-05 15:31:36','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(694,1,'2026-02-05 20:55:51','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(695,2,'2026-02-06 13:02:11','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(696,3,'2026-02-06 19:26:11','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1294267,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(697,1,'2026-02-06 19:46:32','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(698,2,'2026-02-06 19:55:03','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(699,2,'2026-02-06 19:55:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(700,2,'2026-02-06 21:39:02','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(701,1,'2026-02-07 02:31:15','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(702,1,'2026-02-09 03:34:35','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(703,2,'2026-02-09 09:00:10','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(704,1,'2026-02-09 14:23:26','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(705,2,'2026-02-10 21:24:23','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(706,1,'2026-02-11 02:31:42','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(707,3,'2026-02-11 20:40:17','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":2561548,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(708,2,'2026-02-11 22:05:40','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(709,3,'2026-02-11 23:41:53','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3903409,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(710,2,'2026-02-12 02:53:10','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(711,2,'2026-02-12 02:54:00','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(712,1,'2026-02-12 03:33:23','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(713,1,'2026-02-12 04:26:39','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(714,2,'2026-02-12 05:28:25','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(715,2,'2026-02-12 05:29:15','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(716,2,'2026-02-12 21:53:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(717,1,'2026-02-13 02:52:35','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(718,2,'2026-02-14 21:41:01','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(719,1,'2026-02-15 02:32:57','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(720,2,'2026-02-26 19:20:11','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(721,1,'2026-02-26 23:43:19','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(722,2,'2026-02-28 20:18:57','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(723,1,'2026-03-01 00:32:03','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(724,1,'2026-03-03 18:55:42','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(725,2,'2026-03-03 21:37:50','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(726,2,'2026-03-05 13:07:45','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(727,2,'2026-03-05 13:08:35','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(728,2,'2026-03-05 21:41:15','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(729,1,'2026-03-06 01:14:11','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(730,2,'2026-03-07 21:45:52','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(731,1,'2026-03-08 00:47:45','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(732,2,'2026-03-08 04:56:31','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(733,2,'2026-03-09 20:00:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(734,1,'2026-03-10 01:14:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(735,2,'2026-03-10 20:16:44','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(736,2,'2026-03-10 20:17:35','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(737,2,'2026-03-10 23:51:34','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(738,2,'2026-03-10 23:52:24','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(739,2,'2026-03-11 21:37:58','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(740,1,'2026-03-12 01:03:48','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(741,2,'2026-03-13 20:36:30','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(742,1,'2026-03-14 00:53:52','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(743,2,'2026-03-21 19:03:24','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(744,2,'2026-03-21 21:03:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(745,3,'2026-03-21 22:40:41','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":3845838,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(746,1,'2026-03-22 02:21:26','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(747,2,'2026-03-23 21:38:30','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(748,1,'2026-03-24 01:13:37','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(749,2,'2026-03-25 21:04:31','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(750,1,'2026-03-26 04:06:51','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(751,2,'2026-03-28 00:31:16','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(752,1,'2026-03-28 07:43:03','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(753,2,'2026-03-30 00:09:04','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(754,1,'2026-03-30 05:44:52','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(755,2,'2026-03-31 00:31:30','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(756,1,'2026-03-31 00:38:13','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(757,2,'2026-03-31 11:04:26','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(758,2,'2026-04-01 00:05:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(759,1,'2026-04-01 05:26:31','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(760,2,'2026-04-01 15:55:35','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(761,2,'2026-04-01 15:56:24','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(762,3,'2026-04-01 19:47:19','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1439296,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(763,2,'2026-04-03 01:03:33','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(764,1,'2026-04-03 06:41:37','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(765,2,'2026-04-03 23:00:22','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(766,2,'2026-04-04 06:20:51','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(767,2,'2026-04-05 02:50:52','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(768,3,'2026-04-05 14:03:04','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1156008,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(769,1,'2026-04-05 14:07:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(770,2,'2026-04-05 14:53:41','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(771,1,'2026-04-05 20:47:10','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(772,2,'2026-04-06 21:37:47','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(773,4,'2026-04-06 23:36:42','{\"action\":\"Starting the driver schedule verification period from 2026-04-09 to 2026-04-15 at 2026-04-06 23:36:42 Monday\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(774,4,'2026-04-06 23:36:42','{\"action\":\"communitiesWithoutShift: 0, list \",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(775,4,'2026-04-06 23:36:42','{\"action\":\"driversWillReceiveTheNotification: 0\",\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(776,4,'2026-04-06 23:36:42','{\"action\":\"notification sms\",\"total\":0,\"type\":\"driver-schedule\",\"env\":\"local\"}','debug'),(777,2,'2026-04-07 01:56:05','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(778,2,'2026-04-07 02:58:11','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(779,2,'2026-04-07 02:58:59','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(780,2,'2026-04-07 04:00:36','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(781,2,'2026-04-07 04:01:26','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(782,2,'2026-04-07 06:02:28','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(783,2,'2026-04-07 06:03:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(784,1,'2026-04-07 06:09:13','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(785,3,'2026-04-07 08:16:35','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":833033,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(786,1,'2026-04-07 09:05:04','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(787,2,'2026-04-07 09:05:30','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(788,1,'2026-04-08 08:16:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(789,2,'2026-04-09 03:11:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(790,2,'2026-04-09 08:41:30','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(791,2,'2026-04-09 12:56:50','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(792,1,'2026-04-09 22:10:37','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(793,1,'2026-04-10 08:12:41','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(794,2,'2026-04-11 04:49:42','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(795,1,'2026-04-12 08:12:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(796,1,'2026-04-12 09:50:40','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(797,2,'2026-04-12 10:09:12','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(798,3,'2026-04-12 12:40:48','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":389076,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(799,3,'2026-04-12 14:55:15','{\"action\":\"AdminNotification::resendNotification\",\"type\":\"delivery-driver\",\"hostname\":\"ecngx300.inmotionhosting.com\",\"pid\":1626163,\"ppid\":\"NA\",\"env\":\"local\"}','debug'),(800,1,'2026-04-12 15:45:07','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(801,2,'2026-04-13 04:29:28','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(802,2,'2026-04-14 19:44:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(803,1,'2026-04-15 02:43:41','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(804,1,'2026-04-17 09:20:53','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(805,2,'2026-04-17 15:03:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(806,1,'2026-04-18 14:02:48','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(807,2,'2026-04-18 22:13:22','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(808,1,'2026-04-19 22:25:33','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(809,2,'2026-04-20 18:04:34','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(810,1,'2026-04-21 23:11:26','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(811,2,'2026-04-22 14:13:06','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(812,2,'2026-04-23 15:34:14','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(813,1,'2026-04-23 20:59:37','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(814,2,'2026-04-25 00:42:10','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(815,1,'2026-04-25 20:47:59','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(816,2,'2026-04-26 14:27:32','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(817,2,'2026-04-27 15:04:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(818,1,'2026-04-28 06:02:33','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(819,2,'2026-04-28 13:31:49','{\"order\":0,\"action\":\"confirm() - dial confirm call\",\"$this->confirmed\":false,\"$this->restaurant()->confirmation\":false,\"type\":\"notification\",\"env\":\"local\"}','debug'),(820,1,'2026-04-28 13:41:30','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(821,2,'2026-04-28 13:55:00','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(822,2,'2026-04-29 06:35:32','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(823,2,'2026-04-29 06:36:22','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(824,2,'2026-04-29 13:33:18','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(825,1,'2026-04-29 18:20:43','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(826,2,'2026-04-30 14:00:42','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(827,2,'2026-05-01 14:55:53','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(828,1,'2026-05-01 19:01:01','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(829,2,'2026-05-02 13:24:14','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(830,2,'2026-05-03 13:12:12','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(831,1,'2026-05-03 18:41:16','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(832,2,'2026-05-04 14:10:40','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(833,2,'2026-05-05 02:13:11','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(834,2,'2026-05-05 02:14:01','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"www.leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(835,2,'2026-05-05 13:23:12','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(836,1,'2026-05-05 19:01:50','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(837,2,'2026-05-06 13:28:34','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(838,2,'2026-05-07 13:32:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug'),(839,1,'2026-05-07 18:21:18','{\"action\":\"send native app link\",\"phone\":\"\",\"isPhone\":false,\"has used native app\":false,\"link already sent\":false,\"type\":\"native app link\",\"env\":\"local\"}','debug'),(840,2,'2026-05-08 13:33:21','{\"order\":0,\"action\":\"send notification\",\"value\":\"\",\"notification type\":\"\",\"host\":\"leanchow.localvendee.com\",\"type\":\"notification\",\"env\":\"local\"}','debug');
/*!40000 ALTER TABLE `log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `log_monitor`
--

DROP TABLE IF EXISTS `log_monitor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `log_monitor` (
  `id_log_monitor` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_log` int(11) unsigned DEFAULT NULL,
  `type` enum('credit-card-fail') DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `id_phone` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_log_monitor`),
  KEY `log_monitor_ibfk_1` (`id_log`),
  KEY `id_phone` (`id_phone`),
  CONSTRAINT `log_monitor_ibfk_1` FOREIGN KEY (`id_log`) REFERENCES `log` (`id_log`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `log_monitor_ibfk_2` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `log_monitor`
--

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

--
-- Table structure for table `log_type`
--

DROP TABLE IF EXISTS `log_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `log_type` (
  `id_log_type` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`id_log_type`),
  UNIQUE KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `log_type`
--

LOCK TABLES `log_type` WRITE;
/*!40000 ALTER TABLE `log_type` DISABLE KEYS */;
INSERT INTO `log_type` VALUES (3,'delivery-driver'),(4,'driver-schedule'),(1,'native-app-link'),(2,'notification');
/*!40000 ALTER TABLE `log_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `marketing_materials_refil`
--

DROP TABLE IF EXISTS `marketing_materials_refil`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `marketing_materials_refil` (
  `id_marketing_materials_refil` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `github` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_marketing_materials_refil`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `marketing_materials_refil_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `marketing_materials_refil`
--

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

--
-- Table structure for table `newusers`
--

DROP TABLE IF EXISTS `newusers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `newusers` (
  `id_newusers` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `last_update` datetime NOT NULL,
  `email_to` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id_newusers`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newusers`
--

LOCK TABLES `newusers` WRITE;
/*!40000 ALTER TABLE `newusers` DISABLE KEYS */;
INSERT INTO `newusers` VALUES (1,'2026-05-09 05:09:27','');
/*!40000 ALTER TABLE `newusers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notification`
--

DROP TABLE IF EXISTS `notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notification` (
  `id_notification` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `type` enum('sms','email','phone','url','fax','admin','stealth') DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `active` tinyint(1) DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_notification`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `notification_admin_fk2` (`id_admin`),
  CONSTRAINT `notification_admin_fk2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `notification_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification`
--

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

--
-- Table structure for table `notification_log`
--

DROP TABLE IF EXISTS `notification_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `notification_log` (
  `id_notification_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `type` enum('confirm','twilio','phaxio','maxcall','email') DEFAULT NULL,
  `status` varchar(255) DEFAULT NULL,
  `remote` varchar(255) DEFAULT NULL,
  `id_order` int(11) unsigned DEFAULT NULL,
  `id_notification` int(11) unsigned DEFAULT NULL,
  `data` text DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_notification_log`),
  KEY `id_order` (`id_order`),
  KEY `id_notification` (`id_notification`),
  CONSTRAINT `notification_log_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `notification_log_ibfk_2` FOREIGN KEY (`id_notification`) REFERENCES `notification` (`id_notification`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_log`
--

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

--
-- Table structure for table `option`
--

DROP TABLE IF EXISTS `option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `option` (
  `id_option` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `price` float NOT NULL DEFAULT 0,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_option_parent` int(11) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `type` enum('check','select') NOT NULL DEFAULT 'check',
  `price_linked` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_option`),
  KEY `id_restaurant` (`id_restaurant`),
  CONSTRAINT `option_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `option`
--

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

--
-- Table structure for table `option_price`
--

DROP TABLE IF EXISTS `option_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `option_price` (
  `id_option_price` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_option` int(11) unsigned DEFAULT NULL,
  `id_option_parent` int(11) unsigned DEFAULT NULL,
  `price` float DEFAULT NULL,
  PRIMARY KEY (`id_option_price`),
  KEY `id_option` (`id_option`),
  KEY `id_option_parent` (`id_option_parent`),
  CONSTRAINT `option_price_ibfk_2` FOREIGN KEY (`id_option`) REFERENCES `option` (`id_option`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `option_price_ibfk_3` FOREIGN KEY (`id_option_parent`) REFERENCES `option` (`id_option`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `option_price`
--

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

--
-- Table structure for table `order`
--

DROP TABLE IF EXISTS `order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order` (
  `id_order` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `price` float DEFAULT NULL,
  `price_plus_delivery_markup` float DEFAULT NULL,
  `final_price` float DEFAULT NULL,
  `final_price_plus_delivery_markup` float DEFAULT NULL,
  `pay_type` enum('cash','card') DEFAULT NULL,
  `delivery_type` enum('delivery','takeout') DEFAULT NULL,
  `delivery_service_markup` float DEFAULT NULL,
  `delivery_service_markup_value` float DEFAULT NULL,
  `tax` float DEFAULT NULL,
  `tip` float DEFAULT NULL,
  `txn` varchar(255) DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `uuid` char(36) DEFAULT '',
  `notes` text DEFAULT NULL,
  `env` varchar(10) DEFAULT NULL,
  `refunded` tinyint(1) NOT NULL DEFAULT 0,
  `service_fee` float DEFAULT NULL,
  `confirmed` tinyint(1) NOT NULL DEFAULT 0,
  `delivery_fee` float DEFAULT NULL,
  `processor` enum('stripe','balanced') NOT NULL DEFAULT 'stripe',
  `id_community` int(11) unsigned DEFAULT NULL,
  `tip_type` enum('percent','number') DEFAULT 'percent',
  `pay_if_refunded` tinyint(1) NOT NULL DEFAULT 0,
  `id_agent` int(10) unsigned DEFAULT NULL,
  `id_session` varchar(32) DEFAULT NULL,
  `fee_restaurant` float DEFAULT NULL,
  `paid_with_cb_card` tinyint(1) NOT NULL DEFAULT 0,
  `delivery_service` tinyint(1) NOT NULL DEFAULT 0,
  `do_not_reimburse_driver` tinyint(1) NOT NULL DEFAULT 0,
  `id_user_payment_type` int(11) unsigned DEFAULT NULL,
  `asked_to_call` tinyint(1) NOT NULL DEFAULT 0,
  `local_gid` varchar(30) DEFAULT NULL,
  `type` enum('web','restaurant','admin') DEFAULT 'web',
  `reimburse_cash_order` tinyint(11) unsigned DEFAULT 0,
  `do_not_pay_restaurant` tinyint(11) unsigned DEFAULT 0,
  `do_not_pay_driver` tinyint(11) unsigned DEFAULT 0,
  `lon` float DEFAULT NULL,
  `reward_delivery_free` tinyint(1) NOT NULL DEFAULT 0,
  `likely_test` tinyint(4) DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `geomatched` tinyint(1) DEFAULT NULL,
  `id_phone` int(11) unsigned DEFAULT NULL,
  `campus_cash` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `delivery_status` int(11) unsigned DEFAULT NULL,
  `id_address` int(11) unsigned DEFAULT NULL,
  `preordered` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `preorder_processed` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `date_delivery` datetime DEFAULT NULL,
  `preordered_date` datetime DEFAULT NULL,
  `cb_service_fee` float DEFAULT NULL,
  PRIMARY KEY (`id_order`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `id_user` (`id_user`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `id_community` (`id_community`),
  KEY `id_agent` (`id_agent`),
  KEY `id_session` (`id_session`),
  KEY `order_ibfk_8` (`id_user_payment_type`),
  KEY `phone_id_order` (`phone`,`id_order`),
  KEY `date_community_test` (`likely_test`,`date`,`id_community`),
  KEY `id_phone` (`id_phone`),
  KEY `order_ibfk_10` (`delivery_status`),
  KEY `id_address` (`id_address`),
  CONSTRAINT `order_ibfk_10` FOREIGN KEY (`delivery_status`) REFERENCES `order_action` (`id_order_action`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `order_ibfk_11` FOREIGN KEY (`id_address`) REFERENCES `address` (`id_address`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_ibfk_3` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_ibfk_4` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_ibfk_5` FOREIGN KEY (`id_agent`) REFERENCES `agent` (`id_agent`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_ibfk_6` FOREIGN KEY (`id_session`) REFERENCES `session` (`id_session`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_ibfk_7` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_ibfk_8` FOREIGN KEY (`id_user_payment_type`) REFERENCES `user_payment_type` (`id_user_payment_type`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `order_ibfk_9` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order`
--

LOCK TABLES `order` WRITE;
/*!40000 ALTER TABLE `order` DISABLE KEYS */;
/*!40000 ALTER TABLE `order` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`dd67555`@`localhost`*/ /*!50003 TRIGGER `snappy16_lchow`.`order_uuid` BEFORE INSERT ON `snappy16_lchow`.`order` FOR EACH ROW SET NEW.uuid =  REPLACE(UUID(),'-','') */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `order_action`
--

DROP TABLE IF EXISTS `order_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_action` (
  `id_order_action` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(10) unsigned DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT current_timestamp(),
  `type` enum('delivery-pickedup','delivery-accepted','delivery-rejected','delivery-delivered','delivery-transfered','delivery-canceled','restaurant-accepted','restaurant-rejected','restaurant-ready','delivery-text-5min','ticket-not-geomatched','force-commission-payment','ticket-campus-cash','ticket-campus-cash-reminder','ticket-reps-failed-pickup','ticket-do-not-delivery') DEFAULT NULL,
  `note` text DEFAULT NULL,
  PRIMARY KEY (`id_order_action`),
  KEY `id_order` (`id_order`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `order_action_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_action_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_action`
--

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

--
-- Table structure for table `order_change`
--

DROP TABLE IF EXISTS `order_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_change` (
  `id_order_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_order_change`),
  KEY `id_order_change_set` (`id_order_change_set`),
  CONSTRAINT `order_change_ibfk_1` FOREIGN KEY (`id_order_change_set`) REFERENCES `order_change_set` (`id_order_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_change`
--

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

--
-- Table structure for table `order_change_set`
--

DROP TABLE IF EXISTS `order_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_change_set` (
  `id_order_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_order_change_set`),
  KEY `id_order` (`id_order`),
  KEY `id_admin` (`id_admin`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `order_change_set_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_change_set_ibfk_3` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_change_set`
--

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

--
-- Table structure for table `order_counts_hourly`
--

DROP TABLE IF EXISTS `order_counts_hourly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_counts_hourly` (
  `id_order_counts_hourly` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `roundtime` datetime DEFAULT NULL,
  `order_count` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_order_counts_hourly`),
  KEY `id_community_idx` (`id_community`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_counts_hourly`
--

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

--
-- Table structure for table `order_data`
--

DROP TABLE IF EXISTS `order_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_data` (
  `id_order_data` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(10) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT current_timestamp(),
  `type` enum('snapshot') DEFAULT NULL,
  `content` text DEFAULT NULL,
  PRIMARY KEY (`id_order_data`),
  KEY `id_order` (`id_order`),
  CONSTRAINT `order_data_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_data`
--

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

--
-- Table structure for table `order_dish`
--

DROP TABLE IF EXISTS `order_dish`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_dish` (
  `id_order_dish` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `id_dish` int(11) unsigned DEFAULT NULL,
  `id_preset` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_order_dish`),
  KEY `id_order` (`id_order`),
  KEY `id_dish` (`id_dish`),
  KEY `id_preset` (`id_preset`),
  CONSTRAINT `order_dish_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_dish_ibfk_2` FOREIGN KEY (`id_dish`) REFERENCES `dish` (`id_dish`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_dish_ibfk_3` FOREIGN KEY (`id_preset`) REFERENCES `preset` (`id_preset`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_dish`
--

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

--
-- Table structure for table `order_dish_option`
--

DROP TABLE IF EXISTS `order_dish_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_dish_option` (
  `id_order_dish_option` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order_dish` int(11) unsigned DEFAULT NULL,
  `id_option` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_order_dish_option`),
  KEY `id_order_dish` (`id_order_dish`),
  KEY `id_option` (`id_option`),
  CONSTRAINT `order_dish_option_ibfk_1` FOREIGN KEY (`id_order_dish`) REFERENCES `order_dish` (`id_order_dish`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_dish_option_ibfk_2` FOREIGN KEY (`id_option`) REFERENCES `option` (`id_option`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_dish_option`
--

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

--
-- Table structure for table `order_eta`
--

DROP TABLE IF EXISTS `order_eta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_eta` (
  `id_order_eta` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(10) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `time` float DEFAULT NULL,
  `distance` float DEFAULT NULL,
  `method` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`id_order_eta`),
  KEY `id_order` (`id_order`),
  CONSTRAINT `order_eta_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_eta`
--

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

--
-- Table structure for table `order_forecast_type`
--

DROP TABLE IF EXISTS `order_forecast_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_forecast_type` (
  `id_order_forecast_type` int(11) unsigned NOT NULL DEFAULT 0,
  `forecast_type` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_order_forecast_type`),
  KEY `id_order_forecast_type_idx` (`id_order_forecast_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_forecast_type`
--

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

--
-- Table structure for table `order_forecasts_daily`
--

DROP TABLE IF EXISTS `order_forecasts_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_forecasts_daily` (
  `id_order_forecasts_daily` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `estimation_time` datetime DEFAULT NULL,
  `date_for_forecast` date DEFAULT NULL,
  `forecast` float(10,2) unsigned DEFAULT NULL,
  `id_order_forecast_type` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_order_forecasts_daily`),
  KEY `id_order_forecasts_daily_idx` (`id_order_forecasts_daily`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_forecasts_daily`
--

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

--
-- Table structure for table `order_forecasts_hourly`
--

DROP TABLE IF EXISTS `order_forecasts_hourly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_forecasts_hourly` (
  `id_order_forecasts_hourly` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `estimation_time` datetime DEFAULT NULL,
  `start_hour` datetime DEFAULT NULL,
  `forecast` float(10,2) unsigned DEFAULT NULL,
  `id_order_forecast_type` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_order_forecasts_hourly`),
  KEY `id_order_forecasts_hourly_idx` (`id_order_forecasts_hourly`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_forecasts_hourly`
--

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

--
-- Table structure for table `order_logistics_badaddress`
--

DROP TABLE IF EXISTS `order_logistics_badaddress`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_badaddress` (
  `id_order_logistics_badaddress` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `address_lc` text DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `lon` float DEFAULT NULL,
  PRIMARY KEY (`id_order_logistics_badaddress`),
  KEY `id_community_idx` (`id_community`),
  CONSTRAINT `order_logistics_badaddress_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_badaddress`
--

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

--
-- Table structure for table `order_logistics_bundleparam`
--

DROP TABLE IF EXISTS `order_logistics_bundleparam`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_bundleparam` (
  `id_order_logistics_bundleparam` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `cutoff_at_zero` float NOT NULL DEFAULT 0,
  `slope_per_minute` float NOT NULL DEFAULT 0,
  `max_minutes` float NOT NULL DEFAULT 0,
  `baseline_mph` smallint(11) unsigned NOT NULL DEFAULT 0,
  `bundle_size` tinyint(11) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_order_logistics_bundleparam`),
  KEY `combo_idx` (`id_community`,`bundle_size`),
  CONSTRAINT `order_logistics_bundleparam_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_bundleparam`
--

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

--
-- Table structure for table `order_logistics_cluster`
--

DROP TABLE IF EXISTS `order_logistics_cluster`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_cluster` (
  `id_order_logistics_cluster` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant_cluster` int(11) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `time_start_community` time NOT NULL,
  `time_end_community` time NOT NULL,
  `day_of_week` tinyint(11) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_order_logistics_cluster`),
  KEY `id_restaurant_cluster_idx` (`id_restaurant_cluster`),
  KEY `id_restaurant_idx` (`id_restaurant`),
  CONSTRAINT `order_logistics_cluster_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_cluster`
--

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

--
-- Table structure for table `order_logistics_communityspeed`
--

DROP TABLE IF EXISTS `order_logistics_communityspeed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_communityspeed` (
  `id_order_logistics_communityspeed` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `time_start_community` time NOT NULL,
  `time_end_community` time NOT NULL,
  `day_of_week` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `mph` tinyint(11) unsigned DEFAULT 0,
  PRIMARY KEY (`id_order_logistics_communityspeed`),
  KEY `id_community_idx` (`id_community`),
  CONSTRAINT `order_logistics_communityspeed_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_communityspeed`
--

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

--
-- Table structure for table `order_logistics_fakecustomer`
--

DROP TABLE IF EXISTS `order_logistics_fakecustomer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_fakecustomer` (
  `id_order_logistics_fakecustomer` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `lon` float DEFAULT NULL,
  PRIMARY KEY (`id_order_logistics_fakecustomer`),
  KEY `id_community_idx` (`id_community`),
  CONSTRAINT `order_logistics_fakecustomer_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_fakecustomer`
--

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

--
-- Table structure for table `order_logistics_ordertime`
--

DROP TABLE IF EXISTS `order_logistics_ordertime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_ordertime` (
  `id_order_logistics_ordertime` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `time_start_community` time NOT NULL,
  `time_end_community` time NOT NULL,
  `day_of_week` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `order_time` smallint(11) unsigned DEFAULT 0,
  `scale_factor` float unsigned DEFAULT 1,
  PRIMARY KEY (`id_order_logistics_ordertime`),
  KEY `id_restaurant_idx` (`id_restaurant`),
  CONSTRAINT `order_logistics_ordertime_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_ordertime`
--

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

--
-- Table structure for table `order_logistics_param`
--

DROP TABLE IF EXISTS `order_logistics_param`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_param` (
  `id_order_logistics_param` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `algo_version` int(11) unsigned DEFAULT NULL,
  `time_max_delay` smallint(11) unsigned NOT NULL DEFAULT 0,
  `time_bundle` smallint(11) unsigned NOT NULL DEFAULT 0,
  `max_bundle_size` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `max_bundle_travel_time` smallint(11) unsigned NOT NULL DEFAULT 0,
  `max_num_orders_delta` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `max_num_unique_restaurants_delta` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `free_driver_bonus` smallint(11) unsigned NOT NULL DEFAULT 0,
  `order_ahead_correction1` float unsigned NOT NULL DEFAULT 0,
  `order_ahead_correction2` float unsigned NOT NULL DEFAULT 0,
  `order_ahead_correction_limit1` smallint(11) unsigned NOT NULL DEFAULT 0,
  `order_ahead_correction_limit2` smallint(11) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_order_logistics_param`),
  KEY `combo_idx` (`id_community`,`algo_version`),
  CONSTRAINT `order_logistics_param_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_param`
--

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

--
-- Table structure for table `order_logistics_parking`
--

DROP TABLE IF EXISTS `order_logistics_parking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_parking` (
  `id_order_logistics_parking` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `time_start_community` time NOT NULL,
  `time_end_community` time NOT NULL,
  `day_of_week` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `parking_duration0` smallint(11) unsigned DEFAULT 0,
  `parking_duration1` smallint(11) unsigned DEFAULT 0,
  `parking_duration2` smallint(11) unsigned DEFAULT 0,
  PRIMARY KEY (`id_order_logistics_parking`),
  KEY `id_restaurant_idx` (`id_restaurant`),
  CONSTRAINT `order_logistics_parking_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_parking`
--

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

--
-- Table structure for table `order_logistics_route`
--

DROP TABLE IF EXISTS `order_logistics_route`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_route` (
  `id_order_logistics_route` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `node_id_order` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `seq` tinyint(11) NOT NULL DEFAULT 0,
  `node_type` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `lat` float DEFAULT NULL,
  `lon` float DEFAULT NULL,
  `leaving_time` datetime NOT NULL,
  `is_fake` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id_order_logistics_route`),
  KEY `id_order_idx` (`id_order`),
  KEY `id_admin_idx` (`id_admin`),
  KEY `order_logistics_route_ibfk_3` (`node_id_order`),
  CONSTRAINT `order_logistics_route_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_logistics_route_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_logistics_route_ibfk_3` FOREIGN KEY (`node_id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_route`
--

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

--
-- Table structure for table `order_logistics_service`
--

DROP TABLE IF EXISTS `order_logistics_service`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_logistics_service` (
  `id_order_logistics_service` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `time_start_community` time NOT NULL,
  `time_end_community` time NOT NULL,
  `day_of_week` tinyint(11) unsigned NOT NULL DEFAULT 0,
  `service_duration0` smallint(11) unsigned DEFAULT 0,
  `service_duration1` smallint(11) unsigned DEFAULT 0,
  `service_duration2` smallint(11) unsigned DEFAULT 0,
  PRIMARY KEY (`id_order_logistics_service`),
  KEY `id_restaurant_idx` (`id_restaurant`),
  CONSTRAINT `order_logistics_service_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_logistics_service`
--

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

--
-- Table structure for table `order_priority`
--

DROP TABLE IF EXISTS `order_priority`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_priority` (
  `id_order_priority` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `priority_time` datetime DEFAULT NULL,
  `priority_given` int(11) unsigned DEFAULT NULL,
  `priority_algo_version` int(11) unsigned DEFAULT NULL,
  `seconds_delay` smallint(11) unsigned NOT NULL DEFAULT 0,
  `priority_expiration` datetime DEFAULT NULL,
  `num_undelivered_orders` tinyint(11) NOT NULL DEFAULT -1,
  `num_drivers_with_priority` tinyint(11) NOT NULL DEFAULT -1,
  `is_probably_inactive` tinyint(11) NOT NULL DEFAULT 0,
  `num_unpickedup_preorders` tinyint(11) NOT NULL DEFAULT -1,
  `num_unpickedup_pos_in_range` tinyint(11) NOT NULL DEFAULT -1,
  `num_orders_bundle_check` tinyint(11) NOT NULL DEFAULT -1,
  PRIMARY KEY (`id_order_priority`),
  KEY `id_order_idx` (`id_order`),
  KEY `id_restaurant_idx` (`id_restaurant`),
  KEY `id_admin_idx` (`id_admin`),
  CONSTRAINT `order_priority_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_priority_ibfk_2` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `order_priority_ibfk_3` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_priority`
--

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

--
-- Table structure for table `order_signature`
--

DROP TABLE IF EXISTS `order_signature`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_signature` (
  `id_order_signature` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `content` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_order_signature`),
  KEY `id_order` (`id_order`),
  KEY `order_signature_ibfk_2` (`id_admin`),
  CONSTRAINT `order_signature_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `order_signature_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_signature`
--

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

--
-- Table structure for table `order_transaction`
--

DROP TABLE IF EXISTS `order_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `order_transaction` (
  `id_order_transaction` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `amt` float DEFAULT NULL,
  `type` enum('debit','credit','paid-to-restaurant','no-payment-needed-restaurant','paid-to-driver','reimbursed-driver','refunded','campus-cash-charged') DEFAULT NULL,
  `payment_type` enum('gift','card') DEFAULT NULL,
  `source` enum('crunchbutton','restaurant') DEFAULT NULL,
  `id_user_payment_type` int(11) unsigned DEFAULT NULL,
  `txn` varchar(255) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `note` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id_order_transaction`),
  KEY `id_order` (`id_order`),
  CONSTRAINT `order_transaction_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_transaction`
--

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

--
-- Table structure for table `payment`
--

DROP TABLE IF EXISTS `payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment` (
  `id_payment` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `adjustment` float DEFAULT NULL,
  `note` varchar(255) DEFAULT '',
  `balanced_id` varchar(255) DEFAULT NULL,
  `stripe_id` varchar(255) DEFAULT NULL,
  `check_id` varchar(255) DEFAULT '',
  `env` enum('local','dev','beta','staging','live') DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `summary_sent_date` datetime DEFAULT NULL,
  `pay_type` enum('payment','reimbursement') DEFAULT 'payment',
  `id_driver` int(11) unsigned DEFAULT NULL,
  `adjustment_note` varchar(255) DEFAULT '',
  `payment_status` enum('pending','failed','succeeded','canceled','reversed') DEFAULT NULL,
  `payment_failure_reason` text DEFAULT NULL,
  `payment_date_checked` datetime DEFAULT NULL,
  PRIMARY KEY (`id_payment`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `payment_ibfk_2` (`id_admin`),
  KEY `payment_ibfk_3` (`id_driver`),
  CONSTRAINT `payment_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `payment_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `payment_ibfk_3` FOREIGN KEY (`id_driver`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment`
--

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

--
-- Table structure for table `payment_order_transaction`
--

DROP TABLE IF EXISTS `payment_order_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_order_transaction` (
  `id_payment_order_transaction` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_payment` int(11) unsigned DEFAULT NULL,
  `id_order_transaction` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_payment_order_transaction`),
  KEY `id_payment` (`id_payment`),
  KEY `payment_order_transaction_ibfk_2` (`id_order_transaction`),
  CONSTRAINT `payment_order_transaction_ibfk_1` FOREIGN KEY (`id_payment`) REFERENCES `payment` (`id_payment`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `payment_order_transaction_ibfk_2` FOREIGN KEY (`id_order_transaction`) REFERENCES `order_transaction` (`id_order_transaction`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_order_transaction`
--

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

--
-- Table structure for table `payment_schedule`
--

DROP TABLE IF EXISTS `payment_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_schedule` (
  `id_payment_schedule` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_driver` int(11) unsigned DEFAULT NULL,
  `id_payment` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `adjustment` float DEFAULT NULL,
  `note` varchar(255) DEFAULT '',
  `type` enum('restaurant','driver') DEFAULT NULL,
  `status` enum('scheduled','processing','done','error','deleted','archived','reversed') DEFAULT NULL,
  `status_date` datetime DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `log` varchar(255) DEFAULT NULL,
  `pay_type` enum('payment','reimbursement') DEFAULT 'payment',
  `driver_payment_hours` int(1) DEFAULT 0,
  `arbritary` tinyint(1) NOT NULL DEFAULT 0,
  `adjustment_note` varchar(255) DEFAULT '',
  `range_date` varchar(255) DEFAULT '',
  `payment_type` enum('orders','hours','hours_without_tips','making_whole') DEFAULT NULL,
  `total_payment_by_order` float DEFAULT NULL,
  `total_payment_by_hour` float DEFAULT NULL,
  `processor` enum('stripe','balanced') DEFAULT 'balanced',
  PRIMARY KEY (`id_payment_schedule`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `payment_schedule_ibfk_2` (`id_admin`),
  KEY `payment_schedule_ibfk_3` (`id_driver`),
  KEY `payment_schedule_ibfk_4` (`id_payment`),
  CONSTRAINT `payment_schedule_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `payment_schedule_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `payment_schedule_ibfk_3` FOREIGN KEY (`id_driver`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `payment_schedule_ibfk_4` FOREIGN KEY (`id_payment`) REFERENCES `payment` (`id_payment`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_schedule`
--

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

--
-- Table structure for table `payment_schedule_order`
--

DROP TABLE IF EXISTS `payment_schedule_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_schedule_order` (
  `id_payment_schedule_order` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_payment_schedule` int(11) unsigned DEFAULT NULL,
  `id_order` int(11) unsigned DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `amount_per_order` float DEFAULT NULL,
  PRIMARY KEY (`id_payment_schedule_order`),
  KEY `id_payment_schedule` (`id_payment_schedule`),
  KEY `payment_schedule_order_ibfk_2` (`id_order`),
  CONSTRAINT `payment_schedule_order_ibfk_1` FOREIGN KEY (`id_payment_schedule`) REFERENCES `payment_schedule` (`id_payment_schedule`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `payment_schedule_order_ibfk_2` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_schedule_order`
--

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

--
-- Table structure for table `payment_schedule_referral`
--

DROP TABLE IF EXISTS `payment_schedule_referral`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_schedule_referral` (
  `id_payment_schedule_referral` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_payment_schedule` int(11) unsigned DEFAULT NULL,
  `id_referral` int(11) unsigned DEFAULT NULL,
  `amount` float DEFAULT NULL,
  PRIMARY KEY (`id_payment_schedule_referral`),
  KEY `id_payment_schedule` (`id_payment_schedule`),
  KEY `payment_schedule_referral_ibfk_2` (`id_referral`),
  CONSTRAINT `payment_schedule_referral_ibfk_1` FOREIGN KEY (`id_payment_schedule`) REFERENCES `payment_schedule` (`id_payment_schedule`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `payment_schedule_referral_ibfk_2` FOREIGN KEY (`id_referral`) REFERENCES `referral` (`id_referral`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_schedule_referral`
--

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

--
-- Table structure for table `payment_schedule_shift`
--

DROP TABLE IF EXISTS `payment_schedule_shift`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment_schedule_shift` (
  `id_payment_schedule_shift` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_payment_schedule` int(11) unsigned DEFAULT NULL,
  `id_admin_shift_assign` int(11) unsigned DEFAULT NULL,
  `hours` float DEFAULT NULL,
  `amount` float DEFAULT NULL,
  PRIMARY KEY (`id_payment_schedule_shift`),
  KEY `id_payment_schedule` (`id_payment_schedule`),
  KEY `payment_schedule_shift_ibfk_2` (`id_admin_shift_assign`),
  CONSTRAINT `payment_schedule_shift_ibfk_1` FOREIGN KEY (`id_payment_schedule`) REFERENCES `payment_schedule` (`id_payment_schedule`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `payment_schedule_shift_ibfk_2` FOREIGN KEY (`id_admin_shift_assign`) REFERENCES `admin_shift_assign` (`id_admin_shift_assign`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_schedule_shift`
--

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

--
-- Table structure for table `pexcard_action`
--

DROP TABLE IF EXISTS `pexcard_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pexcard_action` (
  `id_pexcard_action` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin_pexcard` int(10) unsigned DEFAULT NULL,
  `id_driver` int(10) unsigned DEFAULT NULL,
  `id_admin_shift_assign` int(10) unsigned DEFAULT NULL,
  `id_order` int(10) unsigned DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `action` enum('shift-started','shift-finished','order-accepted','order-cancelled','arbritary','remove-funds','order-rejected','zero') DEFAULT NULL,
  `type` enum('credit','debit') DEFAULT NULL,
  `note` text DEFAULT NULL,
  `response` text DEFAULT NULL,
  `status` enum('scheduled','processing','done','error') DEFAULT NULL,
  `status_date` datetime DEFAULT NULL,
  `tries` int(11) DEFAULT 0,
  `last_name` varchar(10) NOT NULL DEFAULT '',
  `card_number` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_pexcard_action`),
  KEY `id_order` (`id_order`),
  KEY `id_driver` (`id_driver`),
  KEY `id_admin` (`id_admin`),
  KEY `id_admin_pexcard` (`id_admin_pexcard`),
  KEY `pexcard_action_ibfk_5` (`id_admin_shift_assign`),
  CONSTRAINT `pexcard_action_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `pexcard_action_ibfk_2` FOREIGN KEY (`id_driver`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `pexcard_action_ibfk_3` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `pexcard_action_ibfk_4` FOREIGN KEY (`id_admin_pexcard`) REFERENCES `admin_pexcard` (`id_admin_pexcard`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `pexcard_action_ibfk_5` FOREIGN KEY (`id_admin_shift_assign`) REFERENCES `admin_shift_assign` (`id_admin_shift_assign`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pexcard_action`
--

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

--
-- Table structure for table `pexcard_cache`
--

DROP TABLE IF EXISTS `pexcard_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pexcard_cache` (
  `id_pexcard_cache` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `acctId` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT current_timestamp(),
  `data` longtext DEFAULT NULL,
  PRIMARY KEY (`id_pexcard_cache`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pexcard_cache`
--

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

--
-- Table structure for table `pexcard_report_order`
--

DROP TABLE IF EXISTS `pexcard_report_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pexcard_report_order` (
  `id_pexcard_report_order` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(10) unsigned DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `date_formatted` varchar(50) DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `should_use` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_pexcard_report_order`),
  UNIQUE KEY `id_pexcard_report_order` (`id_pexcard_report_order`),
  KEY `id_order` (`id_order`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `pexcard_report_order_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `pexcard_report_order_ibfk_2` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pexcard_report_order`
--

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

--
-- Table structure for table `pexcard_report_transaction`
--

DROP TABLE IF EXISTS `pexcard_report_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pexcard_report_transaction` (
  `id_pexcard_report_transaction` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_pexcard_transaction` int(10) unsigned DEFAULT NULL,
  `id_admin_pexcard` int(10) unsigned DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `date_pst` datetime DEFAULT NULL,
  `date_formatted` varchar(50) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `amount` float DEFAULT NULL,
  PRIMARY KEY (`id_pexcard_report_transaction`),
  UNIQUE KEY `id_pexcard_report_transaction` (`id_pexcard_report_transaction`),
  KEY `id_pexcard_transaction` (`id_pexcard_transaction`),
  KEY `id_admin` (`id_admin`),
  KEY `id_admin_pexcard` (`id_admin_pexcard`),
  CONSTRAINT `pexcard_report_transaction_ibfk_1` FOREIGN KEY (`id_pexcard_transaction`) REFERENCES `pexcard_transaction` (`id_pexcard_transaction`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `pexcard_report_transaction_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `pexcard_report_transaction_ibfk_3` FOREIGN KEY (`id_admin_pexcard`) REFERENCES `admin_pexcard` (`id_admin_pexcard`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pexcard_report_transaction`
--

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

--
-- Table structure for table `pexcard_token`
--

DROP TABLE IF EXISTS `pexcard_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pexcard_token` (
  `id_pexcard_token` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `token` varchar(100) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `env` varchar(10) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_pexcard_token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pexcard_token`
--

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

--
-- Table structure for table `pexcard_transaction`
--

DROP TABLE IF EXISTS `pexcard_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pexcard_transaction` (
  `id_pexcard_transaction` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `transactionId` int(11) unsigned DEFAULT NULL,
  `acctId` int(11) unsigned DEFAULT NULL,
  `transactionTime` datetime DEFAULT NULL,
  `settlementTime` datetime DEFAULT NULL,
  `transactionCode` int(11) unsigned DEFAULT NULL,
  `firstName` varchar(40) DEFAULT NULL,
  `middleName` varchar(40) DEFAULT NULL,
  `lastName` varchar(40) DEFAULT NULL,
  `cardNumber` int(4) unsigned DEFAULT NULL,
  `spendCategory` varchar(40) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `transferToOrFromAccountId` int(11) unsigned DEFAULT NULL,
  `transactionType` varchar(50) DEFAULT NULL,
  `isPending` int(1) DEFAULT NULL,
  `isDecline` int(1) DEFAULT NULL,
  `paddingAmount` float DEFAULT NULL,
  `merchantName` varchar(100) DEFAULT NULL,
  `merchantCity` varchar(100) DEFAULT NULL,
  `merchantState` varchar(100) DEFAULT NULL,
  `merchantCountry` varchar(100) DEFAULT NULL,
  `MCCCode` varchar(100) DEFAULT NULL,
  `authTransactionId` int(11) unsigned DEFAULT NULL,
  `transactionTime_pst` datetime DEFAULT NULL,
  PRIMARY KEY (`id_pexcard_transaction`),
  UNIQUE KEY `id_pexcard_transaction` (`id_pexcard_transaction`),
  KEY `cardNumber` (`cardNumber`),
  KEY `lastName` (`lastName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pexcard_transaction`
--

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

--
-- Table structure for table `phone`
--

DROP TABLE IF EXISTS `phone`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `phone` (
  `id_phone` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `phone` varchar(12) DEFAULT NULL,
  PRIMARY KEY (`id_phone`),
  UNIQUE KEY `phone` (`phone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `phone`
--

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

--
-- Table structure for table `phone_first_order`
--

DROP TABLE IF EXISTS `phone_first_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `phone_first_order` (
  `id_phone_first_order` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_phone` int(11) unsigned DEFAULT NULL,
  `id_order` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_phone_first_order`),
  KEY `id_phone_idx` (`id_phone`),
  KEY `id_order_idx` (`id_order`),
  KEY `combo_idx` (`id_order`,`id_phone`),
  CONSTRAINT `phone_first_order_ibfk_1` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_first_order_ibfk_2` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `phone_first_order`
--

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

--
-- Table structure for table `phone_log`
--

DROP TABLE IF EXISTS `phone_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `phone_log` (
  `id_phone_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_phone_from` int(11) unsigned DEFAULT NULL,
  `id_phone_to` int(11) unsigned DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `type` enum('call','message') DEFAULT NULL,
  `direction` enum('outgoing','incoming') DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `twilio_id` varchar(50) DEFAULT NULL,
  `status` enum('accepted','queued','sending','sent','delivered','received') DEFAULT NULL,
  PRIMARY KEY (`id_phone_log`),
  KEY `id_phone_to` (`id_phone_to`),
  KEY `id_phone_from` (`id_phone_from`),
  CONSTRAINT `phone_log_ibfk_1` FOREIGN KEY (`id_phone_to`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `phone_log_ibfk_2` FOREIGN KEY (`id_phone_from`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `phone_log`
--

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

--
-- Table structure for table `preset`
--

DROP TABLE IF EXISTS `preset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `preset` (
  `id_preset` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`id_preset`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `preset_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `preset_ibfk_2` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `preset`
--

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

--
-- Table structure for table `promo`
--

DROP TABLE IF EXISTS `promo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `promo` (
  `id_promo` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(11) unsigned DEFAULT NULL,
  `value` float DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `code` varchar(50) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `type` enum('user_share','gift_card') DEFAULT NULL,
  `phone` varchar(250) DEFAULT NULL,
  `email_subject` varchar(250) DEFAULT NULL,
  `email_content` text DEFAULT NULL,
  `email` varchar(250) DEFAULT NULL,
  `id_order_reference` int(10) unsigned DEFAULT NULL,
  `id_restaurant_paid_by` int(10) unsigned DEFAULT NULL,
  `paid_by` enum('CRUNCHBUTTON','RESTAURANT','PROMOTIONAL','OTHER_RESTAURANT') DEFAULT NULL,
  `created_by` varchar(50) DEFAULT NULL,
  `track` tinyint(1) DEFAULT NULL,
  `notify_phone` varchar(20) DEFAULT NULL,
  `name` varchar(50) DEFAULT NULL,
  `contact` text DEFAULT NULL,
  `note` text DEFAULT NULL,
  `issued` enum('credit','text','email','print') DEFAULT NULL,
  `message` varchar(255) DEFAULT NULL,
  `viewed` int(11) DEFAULT 0,
  `is_discount_code` tinyint(1) NOT NULL DEFAULT 0,
  `date_start` date DEFAULT NULL,
  `date_end` date DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  `delivery_fee` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `usable_by` enum('new-users','old-users','anyone') DEFAULT NULL,
  `amount_type` enum('cash','percent') NOT NULL DEFAULT 'cash',
  `min_amount_to_spend` float DEFAULT NULL,
  PRIMARY KEY (`id_promo`),
  UNIQUE KEY `promo_code` (`code`),
  KEY `promo_ibfk_1` (`id_user`),
  KEY `promo_ibfk_2` (`id_restaurant`),
  KEY `promo_ibfk_3` (`id_order_reference`),
  KEY `promo_ibfk_4` (`id_restaurant_paid_by`),
  KEY `id_admin` (`id_admin`),
  KEY `id_community` (`id_community`),
  CONSTRAINT `promo_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `promo_ibfk_2` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `promo_ibfk_3` FOREIGN KEY (`id_order_reference`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `promo_ibfk_4` FOREIGN KEY (`id_restaurant_paid_by`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `promo_ibfk_5` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `promo_ibfk_6` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `promo`
--

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

--
-- Table structure for table `promo_group`
--

DROP TABLE IF EXISTS `promo_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `promo_group` (
  `id_promo_group` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `show_at_metrics` tinyint(1) NOT NULL DEFAULT 1,
  `range` varchar(255) DEFAULT NULL,
  `date_mkt` date DEFAULT NULL,
  `community` varchar(255) DEFAULT NULL,
  `promotion_type` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `man_hours` int(11) DEFAULT NULL,
  PRIMARY KEY (`id_promo_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `promo_group`
--

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

--
-- Table structure for table `promo_group_promo`
--

DROP TABLE IF EXISTS `promo_group_promo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `promo_group_promo` (
  `id_promo_promo_group` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_promo` int(11) unsigned NOT NULL,
  `id_promo_group` int(11) unsigned NOT NULL,
  PRIMARY KEY (`id_promo_promo_group`),
  KEY `id_promo` (`id_promo`),
  KEY `id_promo_group` (`id_promo_group`),
  CONSTRAINT `promo_promo_group_ibfk_1` FOREIGN KEY (`id_promo`) REFERENCES `promo` (`id_promo`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `promo_promo_group_ibfk_2` FOREIGN KEY (`id_promo_group`) REFERENCES `promo_group` (`id_promo_group`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `promo_group_promo`
--

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

--
-- Table structure for table `queue`
--

DROP TABLE IF EXISTS `queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue` (
  `id_queue` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_cron_log` int(11) unsigned DEFAULT NULL,
  `id_queue_type` int(11) unsigned DEFAULT NULL,
  `id_pexcard_action` int(11) unsigned DEFAULT NULL,
  `type` enum('order','notification-driver','order-confirm','order-receipt','notification-your-driver','settlement-driver','settlement-restaurant','restaurant-time') DEFAULT NULL,
  `date_run` datetime DEFAULT NULL,
  `date_start` datetime DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  `status` enum('new','running','success','failed','stopped') DEFAULT NULL,
  `data` text DEFAULT NULL,
  `info` mediumtext DEFAULT NULL,
  `tries` int(11) DEFAULT 0,
  PRIMARY KEY (`id_queue`),
  KEY `id_order` (`id_order`),
  KEY `id_admin` (`id_admin`),
  KEY `id_queue_type` (`id_queue_type`),
  KEY `queue_ibfk_4` (`id_restaurant`),
  KEY `queue_ibfk_5` (`id_cron_log`),
  KEY `queue_ibfk_6` (`id_pexcard_action`),
  CONSTRAINT `queue_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `queue_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `queue_ibfk_3` FOREIGN KEY (`id_queue_type`) REFERENCES `queue_type` (`id_queue_type`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `queue_ibfk_4` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `queue_ibfk_5` FOREIGN KEY (`id_cron_log`) REFERENCES `cron_log` (`id_cron_log`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `queue_ibfk_6` FOREIGN KEY (`id_pexcard_action`) REFERENCES `pexcard_action` (`id_pexcard_action`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue`
--

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

--
-- Table structure for table `queue_type`
--

DROP TABLE IF EXISTS `queue_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `queue_type` (
  `id_queue_type` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`id_queue_type`),
  UNIQUE KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_type`
--

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

--
-- Table structure for table `quote`
--

DROP TABLE IF EXISTS `quote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote` (
  `id_quote` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `facebook_id` varchar(50) DEFAULT NULL,
  `quote` text DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `pages` tinyint(1) NOT NULL DEFAULT 0,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_quote`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `quote_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote`
--

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

--
-- Table structure for table `quote_community`
--

DROP TABLE IF EXISTS `quote_community`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_community` (
  `id_quote_community` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `id_quote` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_quote_community`),
  KEY `quote_community_ibfk_1` (`id_community`),
  KEY `quote_community_ibfk_2` (`id_quote`),
  CONSTRAINT `quote_community_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `quote_community_ibfk_2` FOREIGN KEY (`id_quote`) REFERENCES `quote` (`id_quote`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_community`
--

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

--
-- Table structure for table `quote_restaurant`
--

DROP TABLE IF EXISTS `quote_restaurant`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `quote_restaurant` (
  `id_quote_restaurant` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_quote` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_quote_restaurant`),
  KEY `quote_restaurant_ibfk_1` (`id_restaurant`),
  KEY `quote_restaurant_ibfk_2` (`id_quote`),
  CONSTRAINT `quote_restaurant_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `quote_restaurant_ibfk_2` FOREIGN KEY (`id_quote`) REFERENCES `quote` (`id_quote`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_restaurant`
--

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

--
-- Table structure for table `referral`
--

DROP TABLE IF EXISTS `referral`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `referral` (
  `id_referral` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user_inviter` int(11) unsigned DEFAULT NULL,
  `id_admin_inviter` int(11) unsigned DEFAULT NULL,
  `id_user_invited` int(11) unsigned DEFAULT NULL,
  `id_order` int(11) unsigned DEFAULT NULL,
  `invite_code` varchar(50) DEFAULT NULL,
  `new_user` tinyint(1) NOT NULL DEFAULT 1,
  `date` datetime DEFAULT NULL,
  `admin_credit` float DEFAULT NULL,
  `warned` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_referral`),
  KEY `id_user_inviter` (`id_user_inviter`),
  KEY `id_user_invited` (`id_user_invited`),
  KEY `id_order` (`id_order`),
  KEY `referral_ibfk_4` (`id_admin_inviter`),
  CONSTRAINT `referral_ibfk_1` FOREIGN KEY (`id_user_inviter`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `referral_ibfk_2` FOREIGN KEY (`id_user_invited`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `referral_ibfk_3` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `referral_ibfk_4` FOREIGN KEY (`id_admin_inviter`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `referral`
--

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

--
-- Table structure for table `report`
--

DROP TABLE IF EXISTS `report`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `report` (
  `id_report` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_report`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report`
--

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

--
-- Table structure for table `resource`
--

DROP TABLE IF EXISTS `resource`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `resource` (
  `id_resource` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `file` varchar(50) DEFAULT NULL,
  `all` tinyint(1) NOT NULL DEFAULT 0,
  `page` tinyint(1) NOT NULL DEFAULT 0,
  `side` tinyint(1) NOT NULL DEFAULT 0,
  `date` datetime DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `order_page` tinyint(1) NOT NULL DEFAULT 0,
  `url` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_resource`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `resource_ibfk_1` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resource`
--

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

--
-- Table structure for table `resource_community`
--

DROP TABLE IF EXISTS `resource_community`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `resource_community` (
  `id_resource_community` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `id_resource` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_resource_community`),
  KEY `resource_community_ibfk_1` (`id_community`),
  KEY `resource_community_ibfk_2` (`id_resource`),
  CONSTRAINT `resource_community_ibfk_1` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `resource_community_ibfk_2` FOREIGN KEY (`id_resource`) REFERENCES `resource` (`id_resource`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resource_community`
--

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

--
-- Table structure for table `restaurant`
--

DROP TABLE IF EXISTS `restaurant`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant` (
  `id_restaurant` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `timezone` varchar(255) DEFAULT 'America/New_York',
  `loc_lat` float DEFAULT NULL,
  `loc_long` float DEFAULT NULL,
  `delivery` tinyint(1) NOT NULL DEFAULT 1,
  `takeout` tinyint(1) NOT NULL DEFAULT 1,
  `credit` tinyint(1) DEFAULT 1,
  `address` text DEFAULT NULL,
  `max_items` int(11) DEFAULT NULL,
  `tax` float DEFAULT NULL,
  `phone` varchar(40) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `open_for_business` tinyint(1) NOT NULL DEFAULT 1,
  `image` varchar(255) DEFAULT NULL,
  `permalink` varchar(255) DEFAULT NULL,
  `menu` tinyint(1) DEFAULT 1,
  `fee_restaurant` float DEFAULT NULL,
  `fee_customer` float DEFAULT NULL,
  `delivery_min` float DEFAULT NULL,
  `delivery_min_amt` enum('total','subtotal') NOT NULL DEFAULT 'subtotal',
  `notes_todo` text DEFAULT NULL,
  `delivery_radius` float DEFAULT NULL,
  `delivery_estimated_time` float DEFAULT NULL,
  `pickup_estimated_time` float DEFAULT NULL,
  `delivery_area_notes` text DEFAULT NULL,
  `delivery_fee` float DEFAULT NULL,
  `notes_owner` text DEFAULT NULL,
  `confirmation` tinyint(1) NOT NULL DEFAULT 0,
  `zip` varchar(40) DEFAULT NULL,
  `customer_receipt` tinyint(1) NOT NULL DEFAULT 0,
  `cash` tinyint(1) DEFAULT 1,
  `giftcard` tinyint(1) DEFAULT 1,
  `email` varchar(255) DEFAULT '',
  `notes` text DEFAULT NULL,
  `balanced_id` varchar(255) DEFAULT NULL,
  `balanced_bank` varchar(255) DEFAULT NULL,
  `short_name` varchar(255) DEFAULT NULL,
  `short_description` varchar(44) DEFAULT NULL,
  `redirect` varchar(255) DEFAULT NULL,
  `weight_adj` int(11) NOT NULL DEFAULT 0,
  `message` text DEFAULT NULL,
  `fee_on_subtotal` tinyint(1) NOT NULL DEFAULT 0,
  `charge_credit_fee` tinyint(1) NOT NULL DEFAULT 1,
  `waive_fee_first_month` tinyint(1) NOT NULL DEFAULT 0,
  `pay_promotions` tinyint(1) NOT NULL DEFAULT 1,
  `pay_apology_credits` tinyint(1) NOT NULL DEFAULT 1,
  `check_address` varchar(255) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `summary_fax` varchar(255) DEFAULT NULL,
  `summary_email` varchar(255) DEFAULT NULL,
  `summary_frequency` int(10) unsigned DEFAULT NULL,
  `legal_name_payment` varchar(255) DEFAULT NULL,
  `tax_id` varchar(255) DEFAULT NULL,
  `open_holidays` text DEFAULT NULL,
  `community` text DEFAULT NULL,
  `delivery_service` tinyint(1) NOT NULL DEFAULT 0,
  `formal_relationship` tinyint(1) NOT NULL DEFAULT 1,
  `delivery_service_markup` float DEFAULT NULL,
  `promotion_maximum` tinyint(1) NOT NULL DEFAULT 2,
  `summary_method` enum('fax','email') DEFAULT NULL,
  `max_apology_credit` int(11) DEFAULT 5,
  `order_notifications_sent` tinyint(1) NOT NULL DEFAULT 0,
  `confirmation_type` enum('regular','stealth') NOT NULL DEFAULT 'regular',
  `active_restaurant_order_placement` tinyint(1) NOT NULL DEFAULT 0,
  `notes_to_driver` text DEFAULT NULL,
  `force_close_tagline` varchar(44) DEFAULT NULL,
  `show_when_closed` tinyint(1) DEFAULT 1,
  `delivery_radius_type` enum('restaurant','community') DEFAULT 'restaurant',
  `order_ahead_time` int(11) NOT NULL DEFAULT 999,
  `service_time` int(11) NOT NULL DEFAULT 999,
  `force_hours_calculation` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `allow_preorder` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `campus_cash` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `service_fee` float DEFAULT NULL,
  `reopen_for_business_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id_restaurant`),
  UNIQUE KEY `permalink` (`permalink`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant`
--

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

--
-- Table structure for table `restaurant_chain`
--

DROP TABLE IF EXISTS `restaurant_chain`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_chain` (
  `id_restaurant_chain` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community_chain` int(11) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_chain`),
  KEY `id_restaurant_chain` (`id_restaurant_chain`),
  KEY `restaurant_chain_ibfk_1` (`id_community_chain`),
  KEY `restaurant_chain_ibfk_2` (`id_restaurant`),
  CONSTRAINT `restaurant_chain_ibfk_1` FOREIGN KEY (`id_community_chain`) REFERENCES `community_chain` (`id_community_chain`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `restaurant_chain_ibfk_2` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_chain`
--

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

--
-- Table structure for table `restaurant_change`
--

DROP TABLE IF EXISTS `restaurant_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_change` (
  `id_restaurant_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant_change_set` int(10) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_change`),
  KEY `id_restaurant_change_set` (`id_restaurant_change_set`),
  CONSTRAINT `restaurant_change_ibfk_1` FOREIGN KEY (`id_restaurant_change_set`) REFERENCES `restaurant_change_set` (`id_restaurant_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_change`
--

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

--
-- Table structure for table `restaurant_change_set`
--

DROP TABLE IF EXISTS `restaurant_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_change_set` (
  `id_restaurant_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT current_timestamp(),
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_change_set`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `restaurant_change_set_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `restaurant_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_change_set`
--

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

--
-- Table structure for table `restaurant_comment`
--

DROP TABLE IF EXISTS `restaurant_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_comment` (
  `id_restaurant_comment` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(11) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `top` tinyint(1) NOT NULL DEFAULT 0,
  `content` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_comment`),
  KEY `id_user` (`id_user`),
  KEY `id_restaurant` (`id_restaurant`),
  CONSTRAINT `restaurant_comment_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `restaurant_comment_ibfk_2` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_comment`
--

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

--
-- Table structure for table `restaurant_community`
--

DROP TABLE IF EXISTS `restaurant_community`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_community` (
  `id_restaurant_community` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  `sort` int(11) DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_community`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `id_community` (`id_community`),
  CONSTRAINT `restaurant_community_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `restaurant_community_ibfk_2` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_community`
--

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

--
-- Table structure for table `restaurant_hour_override`
--

DROP TABLE IF EXISTS `restaurant_hour_override`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_hour_override` (
  `id_restaurant_hour_override` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `date_start` datetime DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  `type` enum('open','close') NOT NULL DEFAULT 'close',
  `notes` varchar(250) DEFAULT '',
  `id_admin` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_hour_override`),
  KEY `restaurant_hour_override_ibfk_1` (`id_restaurant`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `restaurant_hour_override_ibfk_1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `restaurant_hour_override_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_hour_override`
--

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

--
-- Table structure for table `restaurant_payment_type`
--

DROP TABLE IF EXISTS `restaurant_payment_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_payment_type` (
  `id_restaurant_payment_type` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `payment_method` enum('check','deposit','no payment') DEFAULT NULL,
  `check_address` varchar(255) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `summary_fax` varchar(255) DEFAULT NULL,
  `summary_email` varchar(255) DEFAULT NULL,
  `summary_frequency` int(10) unsigned DEFAULT NULL,
  `legal_name_payment` varchar(255) DEFAULT NULL,
  `summary_method` enum('fax','email','no summary') DEFAULT NULL,
  `tax_id` varchar(255) DEFAULT NULL,
  `charge_credit_fee` tinyint(1) NOT NULL DEFAULT 1,
  `waive_fee_first_month` tinyint(1) NOT NULL DEFAULT 0,
  `pay_apology_credits` tinyint(1) NOT NULL DEFAULT 1,
  `max_apology_credit` int(11) DEFAULT 5,
  `stripe_id` varchar(255) DEFAULT NULL,
  `stripe_account_id` varchar(255) DEFAULT NULL,
  `balanced_id` varchar(255) DEFAULT NULL,
  `balanced_bank` varchar(255) DEFAULT NULL,
  `max_pay_promotion` float NOT NULL DEFAULT 2,
  `check_address_city` varchar(50) DEFAULT '',
  `check_address_state` varchar(50) DEFAULT '',
  `check_address_zip` varchar(20) DEFAULT '',
  `check_address_country` varchar(3) DEFAULT '',
  `verified` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id_restaurant_payment_type`),
  KEY `restaurant_payment_type_ibfk1` (`id_restaurant`),
  CONSTRAINT `restaurant_payment_type_ibfk1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_payment_type`
--

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

--
-- Table structure for table `restaurant_payment_type_change`
--

DROP TABLE IF EXISTS `restaurant_payment_type_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_payment_type_change` (
  `id_restaurant_payment_type_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant_payment_type_change_set` int(10) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_payment_type_change`),
  KEY `id_restaurant_payment_type_change_set` (`id_restaurant_payment_type_change_set`),
  CONSTRAINT `restaurant_payment_type_change_ibfk_1` FOREIGN KEY (`id_restaurant_payment_type_change_set`) REFERENCES `restaurant_payment_type_change_set` (`id_restaurant_payment_type_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_payment_type_change`
--

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

--
-- Table structure for table `restaurant_payment_type_change_set`
--

DROP TABLE IF EXISTS `restaurant_payment_type_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_payment_type_change_set` (
  `id_restaurant_payment_type_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant_payment_type` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT current_timestamp(),
  `id_admin` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_payment_type_change_set`),
  KEY `id_restaurant_payment_type` (`id_restaurant_payment_type`),
  KEY `id_admin` (`id_admin`),
  CONSTRAINT `restaurant_payment_type_change_set_ibfk_1` FOREIGN KEY (`id_restaurant_payment_type`) REFERENCES `restaurant_payment_type` (`id_restaurant_payment_type`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `restaurant_payment_type_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_payment_type_change_set`
--

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

--
-- Table structure for table `restaurant_time`
--

DROP TABLE IF EXISTS `restaurant_time`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `restaurant_time` (
  `id_restaurant_time` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  `open` tinyint(1) NOT NULL DEFAULT 0,
  `next_open_time` datetime DEFAULT NULL,
  `next_open_time_utc` datetime DEFAULT NULL,
  `tzoffset` int(10) DEFAULT NULL,
  `tzabbr` varchar(5) DEFAULT NULL,
  `next_open_time_message` varchar(500) DEFAULT NULL,
  `next_open_time_message_utc` varchar(500) DEFAULT NULL,
  `closed_message` varchar(500) DEFAULT NULL,
  `hours_next_24_hours` text DEFAULT NULL,
  PRIMARY KEY (`id_restaurant_time`),
  KEY `restaurant_time_ibfk1` (`id_restaurant`),
  CONSTRAINT `restaurant_time_ibfk1` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `restaurant_time`
--

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

--
-- Table structure for table `reward_log`
--

DROP TABLE IF EXISTS `reward_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `reward_log` (
  `id_reward_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `points` int(11) DEFAULT NULL,
  PRIMARY KEY (`id_reward_log`),
  KEY `id_reward_log` (`id_reward_log`),
  KEY `reward_log_ibfk_1` (`id_order`),
  CONSTRAINT `reward_log_ibfk_1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reward_log`
--

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

--
-- Table structure for table `session`
--

DROP TABLE IF EXISTS `session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `session` (
  `id_session` varchar(32) NOT NULL DEFAULT '',
  `id_user` int(11) unsigned DEFAULT NULL,
  `date_create` datetime DEFAULT NULL,
  `date_activity` datetime DEFAULT NULL,
  `ip` varchar(15) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `id_user_auth` int(11) unsigned DEFAULT NULL,
  `token` varchar(128) DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  UNIQUE KEY `session_id` (`id_session`),
  UNIQUE KEY `token` (`token`),
  KEY `id_user` (`id_user`),
  KEY `id_user_auth` (`id_user_auth`),
  KEY `session_ibfk_6` (`id_admin`),
  CONSTRAINT `session_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `session_ibfk_2` FOREIGN KEY (`id_user_auth`) REFERENCES `user_auth` (`id_user_auth`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `session_ibfk_6` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `session`
--

LOCK TABLES `session` WRITE;
/*!40000 ALTER TABLE `session` DISABLE KEYS */;
INSERT INTO `session` VALUES ('000ba3ae5e0ec1385c21af398805787a',NULL,'2020-02-15 21:49:43','2020-02-15 21:49:43','54.36.148.101',NULL,NULL,NULL,NULL),('0078d1bb10df64bf3b0d9a46ea52c583',NULL,'2019-07-24 15:09:21','2019-07-24 15:09:21','54.36.148.202',NULL,NULL,NULL,NULL),('00d175a27ab5441673ba536dd276c310',NULL,'2020-01-29 18:25:57','2020-01-29 18:25:57','54.36.148.142',NULL,NULL,NULL,NULL),('0130ec0e4d04d7f92a06298b1c1560d7',NULL,'2020-04-12 19:06:34','2020-04-12 19:06:34','54.36.148.129',NULL,NULL,NULL,NULL),('01359f1bb0a6e57842bd64399e2f1a0e',NULL,'2019-06-12 19:45:21','2019-06-12 19:45:21','54.36.150.176',NULL,NULL,NULL,NULL),('01b3359636339e8520658a7a2ccad03d',NULL,'2020-05-05 00:36:25','2020-05-05 00:36:25','54.36.148.164',NULL,NULL,NULL,NULL),('01ptippr8vh6afjal8vd1jh3i0',NULL,'2021-12-05 04:59:51','2021-12-05 04:59:51','216.244.66.240',NULL,NULL,NULL,NULL),('02109deea1ab4284e5b31968cd98a4b5',NULL,'2019-10-03 17:58:19','2019-10-03 17:58:19','54.36.148.116',NULL,NULL,NULL,NULL),('0221a35053b3899ee09ac636c36cf996',NULL,'2019-11-08 03:35:19','2019-11-08 03:35:19','54.36.148.196',NULL,NULL,NULL,NULL),('0225ed6bc64d7e633308852dd42b686c',NULL,'2019-12-16 11:28:23','2019-12-16 11:28:23','54.36.150.41',NULL,NULL,NULL,NULL),('022f56aeb10ed5006ab869a3228b65a5',NULL,'2019-10-03 05:51:39','2019-10-03 05:51:39','54.36.148.255',NULL,NULL,NULL,NULL),('027dd20055755abd7f58c2a73ba9dfe0',NULL,'2019-11-09 01:20:25','2019-11-09 01:20:25','54.36.150.115',NULL,NULL,NULL,NULL),('0326d5ece98f478471c22d63ceae9df4',NULL,'2020-02-25 21:15:39','2020-02-25 21:15:39','54.36.150.47',NULL,NULL,NULL,NULL),('037bc52e0a289ec5d8d4d743fcb164a9',NULL,'2020-03-04 11:37:22','2020-03-04 11:37:22','54.36.150.114',NULL,NULL,NULL,NULL),('03aab6518cac7157fe666f04a8bd778e',NULL,'2019-07-24 12:50:10','2019-07-24 12:50:10','54.36.150.91',NULL,NULL,NULL,NULL),('042313bb860c6534edfe92a341e5eab5',NULL,'2019-11-16 15:07:50','2019-11-16 15:07:50','54.36.148.153',NULL,NULL,NULL,NULL),('042e9d72cd3c9f3d75ce995c4be4c83a',NULL,'2020-03-04 02:07:55','2020-03-04 02:07:55','54.36.148.94',NULL,NULL,NULL,NULL),('043596955d50f8ce4e5574bcda641c58',NULL,'2019-12-25 00:38:17','2019-12-25 00:38:17','54.36.150.68',NULL,NULL,NULL,NULL),('0437dd2075826411ea3d9a39d59a75a3',NULL,'2020-04-15 20:43:20','2020-04-15 20:43:20','54.36.150.83',NULL,NULL,NULL,NULL),('05305d4519fa6ac931ab425d4c092baf',NULL,'2019-11-08 09:44:53','2019-11-08 09:44:53','54.36.150.26',NULL,NULL,NULL,NULL),('05321fc12c7450315141b30ff8e3d9b4',NULL,'2019-12-10 01:54:40','2019-12-10 01:54:40','54.36.150.175',NULL,NULL,NULL,NULL),('055c4199283c9c303d6a1b199b1f109c',NULL,'2019-06-14 04:28:16','2019-06-14 04:28:16','54.36.149.92',NULL,NULL,NULL,NULL),('05caaf718d7ac89c5d80e6bf7d3d6bf9',NULL,'2019-12-10 08:26:26','2019-12-10 08:26:26','54.36.149.0',NULL,NULL,NULL,NULL),('05f74f8e29647255daf9af60b3af7a57',NULL,'2020-04-10 17:44:42','2020-04-10 17:44:42','54.36.148.24',NULL,NULL,NULL,NULL),('06159b5b19873f8adfba6593a294672b',NULL,'2019-05-18 16:15:59','2019-05-18 16:15:59','54.36.148.115',NULL,NULL,NULL,NULL),('0627235109fedbaa0ff0af7696d6e328',NULL,'2019-05-31 12:55:40','2019-05-31 12:55:40','54.36.150.34',NULL,NULL,NULL,NULL),('064b053f1783e4cadafe81fdd557182d',NULL,'2020-01-20 01:00:36','2020-01-20 01:00:36','54.36.150.145',NULL,NULL,NULL,NULL),('066b78a3d6d29df2688b6ca2349ba08d',NULL,'2019-05-18 07:36:40','2019-05-18 07:36:40','54.36.148.98',NULL,NULL,NULL,NULL),('07067215e0901f003a5105a412668afa',NULL,'2019-07-22 14:43:27','2019-07-22 14:43:27','54.36.148.239',NULL,NULL,NULL,NULL),('071a18f100b544b7b984f44e4e23b37e',NULL,'2019-07-29 11:03:59','2019-07-29 11:03:59','54.36.150.61',NULL,NULL,NULL,NULL),('0721329027da4388d0676a37ab92f8cd',NULL,'2019-07-31 14:48:35','2019-07-31 14:48:35','54.36.148.237',NULL,NULL,NULL,NULL),('0722a19267f2a32925c4fa03a7291c4a',NULL,'2019-05-31 00:05:36','2019-05-31 00:05:36','54.36.148.2',NULL,NULL,NULL,NULL),('07721fbdc91db1db6abe490f74bb7b27',NULL,'2019-05-31 01:13:28','2019-05-31 01:13:28','54.36.149.58',NULL,NULL,NULL,NULL),('07d4dbe2bdb47fb482b3d0476cf51a6c',NULL,'2020-04-13 21:16:19','2020-04-13 21:16:19','54.36.148.7',NULL,NULL,NULL,NULL),('07d5097d89cfa34d85cba89d539b2fde',NULL,'2019-09-11 03:12:25','2019-09-11 03:12:25','54.36.150.82',NULL,NULL,NULL,NULL),('07da2e126cc82acfea24d1e604341a2b',NULL,'2019-05-30 20:48:25','2019-05-30 20:48:25','54.36.148.242',NULL,NULL,NULL,NULL),('07e80b6677d16c04460eab66513c4e89',NULL,'2019-08-25 02:14:14','2019-08-25 02:14:14','54.36.150.126',NULL,NULL,NULL,NULL),('081ea60d2d9b496785fc765cd404bc66',NULL,'2020-05-21 07:28:25','2020-05-21 07:28:25','216.244.66.240',NULL,NULL,NULL,NULL),('087c6fe947fd40bb4122f212cc962f9e',NULL,'2019-10-03 14:59:49','2019-10-03 14:59:49','54.36.148.87',NULL,NULL,NULL,NULL),('091fc0b23c90d226257ad6193f909bf6',NULL,'2020-01-26 07:02:38','2020-01-26 07:02:38','54.36.150.173',NULL,NULL,NULL,NULL),('09566f374d257b95f1f96e44818c85d7',NULL,'2019-07-23 20:18:06','2019-07-23 20:18:06','54.36.150.81',NULL,NULL,NULL,NULL),('095886371cf7c6cf3245a0a525c4a60f',NULL,'2019-05-31 10:56:23','2019-05-31 10:56:23','54.36.150.185',NULL,NULL,NULL,NULL),('0965c98803245f6dcef8567f8e582f92',NULL,'2020-02-09 04:11:15','2020-02-09 04:11:15','54.36.149.83',NULL,NULL,NULL,NULL),('09a5b204d06bad930798f1fecd1e54a8',NULL,'2020-01-19 18:06:15','2020-01-19 18:06:15','54.36.150.142',NULL,NULL,NULL,NULL),('09a9d588e295b3ce1e276ea8dfdf5bd4',NULL,'2019-08-29 13:28:17','2019-08-29 13:28:17','54.36.148.84',NULL,NULL,NULL,NULL),('09cfa95b0d26225cc5a70f6163f6db05',NULL,'2020-05-04 05:11:33','2020-05-04 05:11:33','54.36.150.39',NULL,NULL,NULL,NULL),('0a3c1d717043113120631ad67af48428',NULL,'2019-10-09 03:13:24','2019-10-09 03:13:24','54.36.150.30',NULL,NULL,NULL,NULL),('0a6a34f42b7c6048063650392633ad82',NULL,'2020-04-14 10:11:24','2020-04-14 10:11:24','54.36.148.170',NULL,NULL,NULL,NULL),('0b0069b8ca35b66defb0a43ebf9a1ed1',NULL,'2019-06-12 21:03:31','2019-06-12 21:03:31','54.36.149.98',NULL,NULL,NULL,NULL),('0b00825a3edb9c010088eb2ad9433833',NULL,'2020-01-17 23:28:59','2020-01-17 23:28:59','54.36.150.150',NULL,NULL,NULL,NULL),('0b632ce80e427fb6216f037fee9ba6ea',NULL,'2019-10-03 07:59:20','2019-10-03 07:59:20','54.36.150.59',NULL,NULL,NULL,NULL),('0b885ba07e6a937cab2bf65103055944',NULL,'2019-05-18 10:20:44','2019-05-18 10:20:44','54.36.148.237',NULL,NULL,NULL,NULL),('0bdr459qqbsiiip15akg0pae97',NULL,'2021-09-08 06:02:44','2021-09-08 06:02:44','216.244.66.240',NULL,NULL,NULL,NULL),('0be2a4148d4c1417034ea695dd0c1ee7',NULL,'2020-05-23 19:23:56','2020-05-23 19:23:56','216.244.66.240',NULL,NULL,NULL,NULL),('0bf79148d368fe26c3aeabc1e44fb90a',NULL,'2019-11-11 20:57:06','2019-11-11 20:57:06','54.36.150.68',NULL,NULL,NULL,NULL),('0f579e754bccef5d76b4c97d60c012f8',NULL,'2019-11-06 12:27:13','2019-11-06 12:27:13','54.36.150.137',NULL,NULL,NULL,NULL),('0fc05c4bf49952d47dd8e62e33e661ba',NULL,'2019-05-18 15:02:30','2019-05-18 15:02:30','54.36.148.192',NULL,NULL,NULL,NULL),('0fe001851f37dbd387c183b84482552d',NULL,'2020-04-12 21:11:12','2020-04-12 21:11:12','54.36.150.44',NULL,NULL,NULL,NULL),('0httem3vhr1luvc99qnr0c9lf5',NULL,'2020-08-24 10:48:59','2020-08-24 10:48:59','216.244.66.240',NULL,NULL,NULL,NULL),('0injm2lsua63pmjlm45cfeq4p7',NULL,'2021-06-11 08:11:35','2021-06-11 08:11:35','216.244.66.240',NULL,NULL,NULL,NULL),('0j3vtvkvpeqr0gc3hsejnt4ns5',NULL,'2021-09-15 19:09:33','2021-09-15 19:09:33','216.244.66.240',NULL,NULL,NULL,NULL),('0l0sdhgsjif3pn4ttbr8gmfbv3',NULL,'2021-06-10 13:34:09','2021-06-10 13:34:09','216.244.66.240',NULL,NULL,NULL,NULL),('0momo4r1oallvgme6mbj6a88j4',NULL,'2020-08-24 03:28:07','2020-08-24 03:28:07','216.244.66.240',NULL,NULL,NULL,NULL),('0tr06ltlug5tl3h2aepi1meaj2',NULL,'2021-06-03 11:10:03','2021-06-03 11:10:03','216.244.66.240',NULL,NULL,NULL,NULL),('10c2efb295d165dd002181993cb07c82',NULL,'2020-03-03 14:18:38','2020-03-03 14:18:38','54.36.148.184',NULL,NULL,NULL,NULL),('11990e6af876400cccbb3c4a52313efd',NULL,'2020-01-23 10:44:47','2020-01-23 10:44:47','54.36.150.141',NULL,NULL,NULL,NULL),('121f0c73906ccd7cfaf439e0958334cb',NULL,'2019-06-01 16:07:56','2019-06-01 16:07:56','54.36.148.244',NULL,NULL,NULL,NULL),('1263cd64ec7225dcbced4203dbc56679',NULL,'2019-09-03 18:06:20','2019-09-03 18:06:20','54.36.150.98',NULL,NULL,NULL,NULL),('128a7eee3739619a59d42251bf326419',NULL,'2019-05-31 07:28:23','2019-05-31 07:28:23','54.36.150.178',NULL,NULL,NULL,NULL),('1294lgvumtvnlrtlg01bvqa6f3',NULL,'2020-12-04 08:46:28','2020-12-04 08:46:28','216.244.66.240',NULL,NULL,NULL,NULL),('1296225e76232eadae814389132ffc60',NULL,'2020-03-05 19:23:17','2020-03-05 19:23:17','54.36.150.128',NULL,NULL,NULL,NULL),('12k11ousnen51q91eamim0ot30',NULL,'2021-09-02 07:37:21','2021-09-02 07:37:21','216.244.66.240',NULL,NULL,NULL,NULL),('132be1339d49a8a79e1456501b8aca02',NULL,'2019-12-22 14:31:40','2019-12-22 14:31:40','54.36.150.94',NULL,NULL,NULL,NULL),('133153645a5c85639e3c488fd4a40a3b',NULL,'2020-02-17 03:18:34','2020-02-17 03:18:34','54.36.150.160',NULL,NULL,NULL,NULL),('134a21708ef641a228048487fcef382d',NULL,'2019-08-29 10:40:53','2019-08-29 10:40:53','54.36.150.101',NULL,NULL,NULL,NULL),('13646631eb85c1e31915a27e88e5bc7d',NULL,'2019-06-10 12:41:31','2019-06-10 12:41:31','54.36.150.50',NULL,NULL,NULL,NULL),('149e779f90f4673033a914faff9dcffa',NULL,'2019-12-18 02:04:56','2019-12-18 02:04:56','54.36.150.125',NULL,NULL,NULL,NULL),('14e49f15db82027cc73eba2d269e972b',NULL,'2020-05-07 14:00:08','2020-05-07 14:00:08','54.36.150.145',NULL,NULL,NULL,NULL),('1505c4e2a95bcd402a72ed2c92578ea3',NULL,'2019-11-10 05:15:33','2019-11-10 05:15:33','54.36.149.51',NULL,NULL,NULL,NULL),('152a835ee8e12a34cacac7d759ce9778',NULL,'2019-06-01 12:35:15','2019-06-01 12:35:15','54.36.148.222',NULL,NULL,NULL,NULL),('15dc2b638bb6daf755df821b9e5b32e6',NULL,'2019-05-26 01:33:53','2019-05-26 01:33:53','54.36.148.197',NULL,NULL,NULL,NULL),('15df2b0f46ce116e6f7968f7ffca137a',NULL,'2020-01-25 00:50:43','2020-01-25 00:50:43','54.36.148.124',NULL,NULL,NULL,NULL),('15e6c43930744316a240f91272e70798',NULL,'2019-07-24 12:55:37','2019-07-24 12:55:37','54.36.150.63',NULL,NULL,NULL,NULL),('160d970ef631b575f244eece62ce2c47',NULL,'2019-11-10 19:24:46','2019-11-10 19:24:46','54.36.148.187',NULL,NULL,NULL,NULL),('160e10ccd44a783e85183b5a24e66276',NULL,'2019-10-03 03:15:13','2019-10-03 03:15:13','54.36.150.154',NULL,NULL,NULL,NULL),('169cb3de93cab3ac8c005b02259dd41c',NULL,'2019-08-29 23:23:34','2019-08-29 23:23:34','54.36.148.246',NULL,NULL,NULL,NULL),('16fe45690ac57d9f12acac9e30c6a4e1',NULL,'2019-06-14 04:17:01','2019-06-14 04:17:01','54.36.150.150',NULL,NULL,NULL,NULL),('175b5a66fb9af4934ed676b0cf4f828f',NULL,'2020-01-24 06:49:03','2020-01-24 06:49:03','54.36.149.82',NULL,NULL,NULL,NULL),('17cc7bc24591e7bf1dc230f07091bd05',NULL,'2020-01-19 06:58:36','2020-01-19 06:58:36','54.36.148.1',NULL,NULL,NULL,NULL),('1886092126c8b175c2ea617db403bc4d',NULL,'2019-10-21 22:35:28','2019-10-21 22:35:28','54.36.150.158',NULL,NULL,NULL,NULL),('1889a13ee27e083d89d5eec1aa8b2666',NULL,'2020-03-03 15:44:50','2020-03-03 15:44:50','54.36.149.96',NULL,NULL,NULL,NULL),('1889d30f7e4ac9e3b7634748a358672f',NULL,'2019-10-05 22:51:00','2019-10-05 22:51:00','54.36.148.53',NULL,NULL,NULL,NULL),('18d8de60d8ce5576d19c88a7937d8171',NULL,'2020-05-25 05:14:54','2020-05-25 05:14:54','216.244.66.240',NULL,NULL,NULL,NULL),('19234628c1618d069257ff3de239348b',NULL,'2019-10-15 22:22:04','2019-10-15 22:22:04','54.36.148.131',NULL,NULL,NULL,NULL),('193jknl6l1ehknc3ki97ud4c94',NULL,'2021-06-03 15:19:10','2021-06-03 15:19:10','216.244.66.240',NULL,NULL,NULL,NULL),('19a0aec351749294743f70c65da8c4c4',NULL,'2019-06-13 08:05:31','2019-06-13 08:05:31','54.36.150.158',NULL,NULL,NULL,NULL),('19cbe99a3b3bc3f809c8372e2d21ade2',NULL,'2019-12-19 21:51:02','2019-12-19 21:51:02','54.36.150.151',NULL,NULL,NULL,NULL),('19e043c93b5874f241cf7d0a71e99d28',NULL,'2019-07-26 12:29:14','2019-07-26 12:29:14','54.36.149.81',NULL,NULL,NULL,NULL),('19fe51618b1e69c8c1c5d66fcad71049',NULL,'2019-12-14 20:25:51','2019-12-14 20:25:51','54.36.148.93',NULL,NULL,NULL,NULL),('1a233171abf1debe78c298d7bc1ffeae',NULL,'2019-07-27 06:17:31','2019-07-27 06:17:31','54.36.149.6',NULL,NULL,NULL,NULL),('1ab218f3dfac0a9bbda3446db8cb9c85',NULL,'2020-01-14 18:38:04','2020-01-14 18:38:04','54.36.148.160',NULL,NULL,NULL,NULL),('1b9221a6fae01c47d94cea7fe1af5026',NULL,'2020-01-25 12:25:49','2020-01-25 12:25:49','54.36.150.189',NULL,NULL,NULL,NULL),('1bbc2bb2d96b65592a113de72881ed49',NULL,'2019-05-31 14:16:01','2019-05-31 14:16:01','54.36.149.34',NULL,NULL,NULL,NULL),('1bdb7d6f336f73e13c5d70857b9fea3b',NULL,'2020-04-13 11:55:13','2020-04-13 11:55:13','54.36.148.36',NULL,NULL,NULL,NULL),('1c0fdbc2d30fd2487f6cc4c559cb781b',NULL,'2020-03-29 08:50:20','2020-03-29 08:50:20','54.36.148.36',NULL,NULL,NULL,NULL),('1c28f6e90cdf7019254840865792dd97',NULL,'2019-05-31 13:09:00','2019-05-31 13:09:00','54.36.150.95',NULL,NULL,NULL,NULL),('1c2fc1cde525d0b000c54b2feba48467',NULL,'2019-10-06 23:37:46','2019-10-06 23:37:46','54.36.150.3',NULL,NULL,NULL,NULL),('1d67d1adccb3eb0666a9f86b33a3f795',NULL,'2019-06-19 13:41:43','2019-06-19 13:41:43','54.36.150.68',NULL,NULL,NULL,NULL),('1d6a665fe9f8fdf031f66be21017ff26',NULL,'2019-11-06 17:27:38','2019-11-06 17:27:38','54.36.149.95',NULL,NULL,NULL,NULL),('1daf9ea9bc8d1541af65b0a33ddc538d',NULL,'2020-03-01 08:23:18','2020-03-01 08:23:18','54.36.150.145',NULL,NULL,NULL,NULL),('1df5b543455cc3582a5dee99dc4f81b6',NULL,'2019-11-17 20:18:29','2019-11-17 20:18:29','54.36.148.179',NULL,NULL,NULL,NULL),('1e24e3d3bce3c8260b45800ce02f28ad',NULL,'2019-05-25 18:37:18','2019-05-25 18:37:18','54.36.149.52',NULL,NULL,NULL,NULL),('1e7bd08ac97f8be5350606e01d7c32c4',NULL,'2019-08-30 17:27:28','2019-08-30 17:27:28','54.36.150.93',NULL,NULL,NULL,NULL),('1ebdf8af6dc7b359419279fcb6fa908b',NULL,'2019-12-28 09:07:37','2019-12-28 09:07:37','54.36.150.166',NULL,NULL,NULL,NULL),('1f52c1bb10a12ea684b7d4de5e3dc6b2',NULL,'2019-07-03 04:55:49','2019-07-03 04:55:49','54.36.148.117',NULL,NULL,NULL,NULL),('1f81d1fd266f76a8d16d6c7badcd339e',NULL,'2019-06-12 02:28:06','2019-06-12 02:28:06','54.36.149.62',NULL,NULL,NULL,NULL),('1okj4pss5ft7j9e110k6iabh14',NULL,'2020-08-26 02:08:25','2020-08-26 02:08:25','216.244.66.240',NULL,NULL,NULL,NULL),('1unr5b7rua2eqj4h2h1odq7e42',NULL,'2021-09-11 12:32:19','2021-09-11 12:32:19','216.244.66.240',NULL,NULL,NULL,NULL),('2053f2f6ef79c64ddc8e8b75bf642cd9',NULL,'2019-10-01 20:53:20','2019-10-01 20:53:20','54.36.150.152',NULL,NULL,NULL,NULL),('205472143896782dddb9d7378f9e08f1',NULL,'2019-12-26 03:33:45','2019-12-26 03:33:45','54.36.148.190',NULL,NULL,NULL,NULL),('20661fd46aecadbe6bc1f09ba6331457',NULL,'2020-02-21 00:38:14','2020-02-21 00:38:14','54.36.148.244',NULL,NULL,NULL,NULL),('20be3a5b039be50b3359b63a40591193',NULL,'2019-05-30 19:04:14','2019-05-30 19:04:14','54.36.149.31',NULL,NULL,NULL,NULL),('216a5d55ce83d177e7ebcefc55db2c54',NULL,'2019-10-09 20:22:27','2019-10-09 20:22:27','54.36.150.189',NULL,NULL,NULL,NULL),('217cd3f7e8e0a7882ad4c93968db3259',NULL,'2019-06-13 12:57:31','2019-06-13 12:57:31','54.36.148.177',NULL,NULL,NULL,NULL),('21e12cedbbe0c27ad65563ae4220cf11',NULL,'2020-04-16 08:58:39','2020-04-16 08:58:39','54.36.149.64',NULL,NULL,NULL,NULL),('221e7036fe69274587ace3db81b58020',NULL,'2019-10-07 20:48:15','2019-10-07 20:48:15','54.36.150.107',NULL,NULL,NULL,NULL),('2231af1ab345d12e7e837953f147ede6',NULL,'2018-09-23 21:02:21','2018-09-23 21:02:21','72.139.60.226',NULL,NULL,NULL,NULL),('229299d32e099bf79bb20c53a648078a',NULL,'2019-12-17 02:25:13','2019-12-17 02:25:13','54.36.149.75',NULL,NULL,NULL,NULL),('22a6dfe7ee251ab7bc2b5f521607ac26',NULL,'2019-10-06 11:29:59','2019-10-06 11:29:59','54.36.148.111',NULL,NULL,NULL,NULL),('22c17b7d7237cc4c5f80186ba651481a',NULL,'2020-05-19 19:12:59','2020-05-19 19:12:59','54.36.149.33',NULL,NULL,NULL,NULL),('22cf0028a29cdc9f10d5ae33a5052aae',NULL,'2020-01-29 10:52:37','2020-01-29 10:52:37','54.36.148.32',NULL,NULL,NULL,NULL),('22fccea602b3997fb6b909824fac4289',NULL,'2019-06-10 18:40:51','2019-06-10 18:40:51','54.36.150.125',NULL,NULL,NULL,NULL),('22joi5c461d8uonj3j6h2juh16',NULL,'2021-12-05 22:03:30','2021-12-05 22:03:30','216.244.66.240',NULL,NULL,NULL,NULL),('2338249acfa6d6953b1bef856081b314',NULL,'2020-05-02 11:02:54','2020-05-02 11:02:54','54.36.148.244',NULL,NULL,NULL,NULL),('23dba47ef8ef83e5f4f38db866f7dc03',NULL,'2019-08-12 10:09:01','2019-08-12 10:09:01','54.36.148.109',NULL,NULL,NULL,NULL),('23e9a04b47cb4064a2c10ecabe90563c',NULL,'2020-01-17 15:11:04','2020-01-17 15:11:04','54.36.148.138',NULL,NULL,NULL,NULL),('24b18b53ee76554ef39371ded4f3e1ba',NULL,'2020-05-18 15:21:12','2020-05-18 15:21:12','54.36.148.20',NULL,NULL,NULL,NULL),('24ebd082f826a8f394c7f84d2bd67147',NULL,'2019-06-13 14:07:51','2019-06-13 14:07:51','54.36.150.68',NULL,NULL,NULL,NULL),('256a268e8bb31bfba17299231f2335fc',NULL,'2019-05-30 20:15:08','2019-05-30 20:15:08','54.36.149.105',NULL,NULL,NULL,NULL),('2581e054007d30dda7d0e716d0a94f39',NULL,'2020-04-14 17:59:59','2020-04-14 17:59:59','54.36.148.106',NULL,NULL,NULL,NULL),('25bf58e480328f2cc70ffddb38f8bcf4',NULL,'2019-06-13 18:13:34','2019-06-13 18:13:34','54.36.150.39',NULL,NULL,NULL,NULL),('25c710045ce3d14779cd02983ba1ca15',NULL,'2020-01-18 16:12:46','2020-01-18 16:12:46','54.36.150.114',NULL,NULL,NULL,NULL),('26792b5dc057ec1de29d27dae9da7188',NULL,'2019-10-06 14:59:50','2019-10-06 14:59:50','54.36.149.43',NULL,NULL,NULL,NULL),('26a30084ce537afc10797638a3c7a6a1',NULL,'2020-04-15 07:14:12','2020-04-15 07:14:12','54.36.150.145',NULL,NULL,NULL,NULL),('26db04c98de60d737881f3d777cf3131',NULL,'2019-06-02 02:59:24','2019-06-02 02:59:24','54.36.148.129',NULL,NULL,NULL,NULL),('26db0bc98358c970d6b54734ceb23ad4',NULL,'2020-05-23 23:23:40','2020-05-23 23:23:40','216.244.66.240',NULL,NULL,NULL,NULL),('284fa90da9cc617b23cd7b419ebca15f',NULL,'2019-10-08 05:31:26','2019-10-08 05:31:26','54.36.148.140',NULL,NULL,NULL,NULL),('285ef65fc2080a3e6b3ea0d6ec0c22fb',NULL,'2020-03-24 02:16:32','2020-03-24 02:16:32','54.36.148.161',NULL,NULL,NULL,NULL),('2903bca12f3b3d8bcc156318283559df',NULL,'2020-04-21 13:46:53','2020-04-21 13:46:53','54.36.150.157',NULL,NULL,NULL,NULL),('2911fa4f01276f22c10bb77da0a822cd',NULL,'2019-06-11 11:31:02','2019-06-11 11:31:02','54.36.148.239',NULL,NULL,NULL,NULL),('291b6cd1975cfbbde6dd93e8175e5edd',NULL,'2019-05-18 07:59:10','2019-05-18 07:59:10','54.36.148.167',NULL,NULL,NULL,NULL),('29c2f147a811eb6dfcdf1db2f5e3e0e9',NULL,'2019-07-29 21:41:59','2019-07-29 21:41:59','54.36.148.236',NULL,NULL,NULL,NULL),('29d721fb8f590dedff89cd7329f75c73',NULL,'2020-03-05 16:39:23','2020-03-05 16:39:23','54.36.148.254',NULL,NULL,NULL,NULL),('2a3eea152d8120d42aac8091ab21288d',NULL,'2020-04-23 15:57:09','2020-04-23 15:57:09','54.36.150.111',NULL,NULL,NULL,NULL),('2a410eb4b5dd3315681f7e5ff31cffd0',NULL,'2019-07-22 13:23:42','2019-07-22 13:23:42','54.36.148.227',NULL,NULL,NULL,NULL),('2a744783442d1e6a2eee5c2c6f32c887',NULL,'2020-05-14 01:01:06','2020-05-14 01:01:06','54.36.150.105',NULL,NULL,NULL,NULL),('2a81fd539738c302386c22b152526cdc',NULL,'2020-04-08 10:39:23','2020-04-08 10:39:23','54.36.150.7',NULL,NULL,NULL,NULL),('2b30ff0ad02cf01d524e44f61f1e95bc',NULL,'2020-03-22 08:14:53','2020-03-22 08:14:53','54.36.150.89',NULL,NULL,NULL,NULL),('2b446baa563296c52ccf2a5a011e5555',NULL,'2019-11-04 19:35:50','2019-11-04 19:35:50','54.36.150.48',NULL,NULL,NULL,NULL),('2ba8fb661ee4054f4af9f5e3f6fca38f',NULL,'2020-04-11 13:30:52','2020-04-11 13:30:52','54.36.149.7',NULL,NULL,NULL,NULL),('2c25797f535511d6d4302cc7efe2e5e0',NULL,'2020-02-02 21:13:05','2020-02-02 21:13:05','54.36.150.144',NULL,NULL,NULL,NULL),('2c371309d26b08dd31e655374b9a78d7',NULL,'2019-10-09 19:24:53','2019-10-09 19:24:53','54.36.148.255',NULL,NULL,NULL,NULL),('2c745c36fe3087c46e1e33c27cf201fd',NULL,'2019-10-08 10:36:19','2019-10-08 10:36:19','54.36.149.5',NULL,NULL,NULL,NULL),('2caa7dee64ee9805ed56d75643d4c509',NULL,'2019-05-28 05:56:19','2019-05-28 05:56:19','54.36.150.12',NULL,NULL,NULL,NULL),('2cb6711f7710361af8558f80c4d64114',NULL,'2019-05-18 09:45:06','2019-05-18 09:45:06','54.36.148.136',NULL,NULL,NULL,NULL),('2d9bed5af2b5b84814936cddc74607fe',NULL,'2019-08-28 13:12:02','2019-08-28 13:12:02','54.36.148.158',NULL,NULL,NULL,NULL),('2daa13b72ad51aa6a1861540d11c7e0c',NULL,'2020-02-29 15:25:21','2020-02-29 15:25:21','54.36.148.181',NULL,NULL,NULL,NULL),('2daa6d89d11ef04aa20dc43322a2bf48',NULL,'2019-08-25 22:47:04','2019-08-25 22:47:04','54.36.150.67',NULL,NULL,NULL,NULL),('2de0977215f7919321b872c6b00c7a04',NULL,'2020-03-30 06:00:58','2020-03-30 06:00:58','54.36.150.146',NULL,NULL,NULL,NULL),('2e643f6f07835cbb291c438ef6110b57',NULL,'2019-11-10 04:31:35','2019-11-10 04:31:35','54.36.150.89',NULL,NULL,NULL,NULL),('2f27ecfdfcc7344a157c0159be7e1cc8',NULL,'2019-08-30 02:42:15','2019-08-30 02:42:15','54.36.150.60',NULL,NULL,NULL,NULL),('2f31991f58d03f3f3e461d73d86ef0c0',NULL,'2020-01-15 05:06:09','2020-01-15 05:06:09','54.36.148.191',NULL,NULL,NULL,NULL),('2f6fc54af2b698c2c1051a2ebaf02401',NULL,'2019-09-03 02:49:08','2019-09-03 02:49:08','54.36.149.96',NULL,NULL,NULL,NULL),('2fd1da73347334b6b9c02869c7650748',NULL,'2020-01-16 21:42:51','2020-01-16 21:42:51','54.36.148.124',NULL,NULL,NULL,NULL),('2fd4311c5edcdf95a870fe224d98cdf3',NULL,'2019-12-11 10:44:49','2019-12-11 10:44:49','54.36.148.31',NULL,NULL,NULL,NULL),('2oj51vies95h7vf5cpautcu6k6',NULL,'2020-12-04 08:45:10','2020-12-04 08:45:10','216.244.66.240',NULL,NULL,NULL,NULL),('2qn7jhrtc5ob6ec4adlcbkugr2',NULL,'2020-08-29 08:25:57','2020-08-29 08:25:57','216.244.66.240',NULL,NULL,NULL,NULL),('303f258578b0b2d4e647c2f765aad1e7',NULL,'2019-06-01 10:47:17','2019-06-01 10:47:17','54.36.150.81',NULL,NULL,NULL,NULL),('30875d74eab3b0a6d4235c1e14bdb7ff',NULL,'2019-11-12 03:44:20','2019-11-12 03:44:20','54.36.149.70',NULL,NULL,NULL,NULL),('30fucq106brvogrmhvarqru4o1',NULL,'2020-08-26 02:57:34','2020-08-26 02:57:34','216.244.66.240',NULL,NULL,NULL,NULL),('3109319d32ac6f01349fb528b3eb53dd',NULL,'2019-07-27 06:04:35','2019-07-27 06:04:35','54.36.150.29',NULL,NULL,NULL,NULL),('31849480f864c840963f167aaea7a97f',NULL,'2019-06-11 14:50:32','2019-06-11 14:50:32','54.36.150.22',NULL,NULL,NULL,NULL),('31a11be9d800dbe2216af94bf39ebe1e',NULL,'2020-01-17 06:05:02','2020-01-17 06:05:02','54.36.148.158',NULL,NULL,NULL,NULL),('31b4de1522af3d59e36c366359d30a5b',NULL,'2020-05-13 19:02:46','2020-05-13 19:02:46','54.36.148.184',NULL,NULL,NULL,NULL),('31cb93cb47158a019e75c92ea437ce73',NULL,'2019-08-24 07:12:10','2019-08-24 07:12:10','54.36.150.116',NULL,NULL,NULL,NULL),('3238ac30d4491f0003605edfd9382d18',NULL,'2020-05-09 08:18:18','2020-05-09 08:18:18','54.36.148.141',NULL,NULL,NULL,NULL),('325hroe1q217pvqrfsua9483u7',NULL,'2021-06-03 11:10:30','2021-06-03 11:10:30','216.244.66.240',NULL,NULL,NULL,NULL),('3300a0f1a19f6fef966132c900ea90bd',NULL,'2020-04-21 08:34:07','2020-04-21 08:34:07','54.36.150.173',NULL,NULL,NULL,NULL),('334b735e5eed26295fb54f39eec36162',NULL,'2019-12-20 05:24:53','2019-12-20 05:24:53','54.36.150.85',NULL,NULL,NULL,NULL),('338e9f33ab049c77cdd22849103c4d96',NULL,'2019-12-11 10:02:20','2019-12-11 10:02:20','54.36.150.4',NULL,NULL,NULL,NULL),('342bdff9c410c7f13f5634f5c864ae0f',NULL,'2019-09-07 13:06:48','2019-09-07 13:06:48','54.36.149.57',NULL,NULL,NULL,NULL),('345e8a71b7fa8ffed6132b21cfce60d7',NULL,'2020-05-03 02:36:31','2020-05-03 02:36:31','54.36.148.131',NULL,NULL,NULL,NULL),('349b9e56a561602d19c46d91fd94e252',NULL,'2019-05-18 08:20:43','2019-05-18 08:20:43','54.36.148.208',NULL,NULL,NULL,NULL),('34c98790b31d1e43107d6658b84067f7',NULL,'2019-10-03 06:20:45','2019-10-03 06:20:45','54.36.150.73',NULL,NULL,NULL,NULL),('353816948464afb5cb6e2afd5f611944',NULL,'2019-05-30 01:53:01','2019-05-30 01:53:01','54.36.150.55',NULL,NULL,NULL,NULL),('35d48422ea711af36fd36482fd3c8c96',NULL,'2020-03-17 16:56:07','2020-03-17 16:56:07','54.36.150.21',NULL,NULL,NULL,NULL),('35f9d4b94d98698f44a27efe6e5caec1',NULL,'2019-07-29 09:03:24','2019-07-29 09:03:24','54.36.148.49',NULL,NULL,NULL,NULL),('363527d142510515fc45c44308e414f6',NULL,'2019-08-30 22:15:34','2019-08-30 22:15:34','54.36.148.193',NULL,NULL,NULL,NULL),('36c541c48d28b13bab8ab5ff28b8253c',NULL,'2019-12-15 10:47:13','2019-12-15 10:47:13','54.36.150.66',NULL,NULL,NULL,NULL),('36e1632ed30fdf5ba97f383f962e9cdd',NULL,'2019-08-30 23:13:46','2019-08-30 23:13:46','54.36.150.66',NULL,NULL,NULL,NULL),('36e90f554e96d6237b251dd951149e45',NULL,'2020-03-31 10:21:12','2020-03-31 10:21:12','54.36.150.191',NULL,NULL,NULL,NULL),('375f9fa999a1b3b35db79c45e9e14a75',NULL,'2018-09-23 01:15:02','2018-09-23 04:46:05','65.94.220.235',NULL,NULL,NULL,NULL),('3784c8c8287aaca71323e02f1c815c90',NULL,'2020-05-19 06:01:45','2020-05-19 06:01:45','54.36.148.181',NULL,NULL,NULL,NULL),('378eadade354c1bc7abeb7c97faa46be',NULL,'2019-06-14 13:29:33','2019-06-14 13:29:33','54.36.148.208',NULL,NULL,NULL,NULL),('379bd3dcfd75a0056ea36135adc30186',NULL,'2020-05-17 16:21:51','2020-05-17 16:21:51','54.36.148.85',NULL,NULL,NULL,NULL),('37aff399de58b70ff20dc23472cce22b',NULL,'2019-05-18 17:28:46','2019-05-18 17:28:46','54.36.148.89',NULL,NULL,NULL,NULL),('37c1a1818a4e930d1510b81361da78c9',NULL,'2019-07-22 07:53:53','2019-07-22 07:53:53','54.36.148.251',NULL,NULL,NULL,NULL),('37cf2218273f728f613221b1f8b74245',NULL,'2019-06-14 12:53:32','2019-06-14 12:53:32','54.36.150.119',NULL,NULL,NULL,NULL),('380f537d6c0b5969871273e8e0af7226',NULL,'2020-04-14 20:13:40','2020-04-14 20:13:40','54.36.148.128',NULL,NULL,NULL,NULL),('385fbdb8a2608dfe171e5b36872ab759',NULL,'2020-03-02 16:21:23','2020-03-02 16:21:23','54.36.149.84',NULL,NULL,NULL,NULL),('38a0768b313e200fa0d31d379640992e',NULL,'2020-04-13 22:59:49','2020-04-13 22:59:49','54.36.148.236',NULL,NULL,NULL,NULL),('38cce1287f744afd42f7a047df0295e5',NULL,'2019-09-27 11:24:27','2019-09-27 11:24:27','54.36.148.33',NULL,NULL,NULL,NULL),('38d92c471155873d3c418507898950b8',NULL,'2019-12-23 10:12:06','2019-12-23 10:12:06','54.36.149.100',NULL,NULL,NULL,NULL),('3a12b781217310675be27953e79e4f44',NULL,'2019-12-16 17:29:25','2019-12-16 17:29:25','54.36.148.228',NULL,NULL,NULL,NULL),('3a9fc0806f231ac9b32196d983d58a8e',NULL,'2019-05-27 14:50:56','2019-05-27 14:50:56','54.36.149.43',NULL,NULL,NULL,NULL),('3ae04ad1b2951c42bf8aece9a5f5aa54',NULL,'2019-11-17 02:58:29','2019-11-17 02:58:29','54.36.148.212',NULL,NULL,NULL,NULL),('3b41581f3539e3ff240b9e144712b68f',NULL,'2020-01-30 16:55:17','2020-01-30 16:55:17','54.36.149.92',NULL,NULL,NULL,NULL),('3b691b43c325893b4ff6840498da17b3',NULL,'2020-03-28 16:13:17','2020-03-28 16:13:17','54.36.148.66',NULL,NULL,NULL,NULL),('3b83b138d8457080213ba27da94db810',NULL,'2019-11-07 07:18:01','2019-11-07 07:18:01','54.36.148.32',NULL,NULL,NULL,NULL),('3b8b5ce13c9c2a7d994157ddd34d707c',NULL,'2019-05-31 13:32:28','2019-05-31 13:32:28','54.36.148.82',NULL,NULL,NULL,NULL),('3b995119a519980b499f70e1e0dd3d86',NULL,'2020-01-21 17:22:36','2020-01-21 17:22:36','54.36.149.34',NULL,NULL,NULL,NULL),('3badc86e671241fae3a5f8bdb8bddd59',NULL,'2019-11-22 23:42:17','2019-11-22 23:42:17','54.36.150.81',NULL,NULL,NULL,NULL),('3bfc0ea8f5176b9d79d48a114aa9d523',NULL,'2019-06-03 03:12:49','2019-06-03 03:12:49','54.36.150.65',NULL,NULL,NULL,NULL),('3ccbfe2302dd75fa2f9daf4e4478be2a',NULL,'2019-06-13 13:16:18','2019-06-13 13:16:18','54.36.150.143',NULL,NULL,NULL,NULL),('3d18bb93483cd3b28d6993c137d103d9',NULL,'2019-05-25 23:30:58','2019-05-25 23:30:58','54.36.148.103',NULL,NULL,NULL,NULL),('3d9b87cdef53a641124544dec24c9ce6',NULL,'2020-01-23 19:20:49','2020-01-23 19:20:49','54.36.150.9',NULL,NULL,NULL,NULL),('3dc0704610d6fffc68913dd0524f766a',NULL,'2019-05-31 03:26:27','2019-05-31 03:26:27','54.36.149.85',NULL,NULL,NULL,NULL),('3e07e708520e81928644bde3a581d0b4',NULL,'2020-03-30 15:02:46','2020-03-30 15:02:46','54.36.150.14',NULL,NULL,NULL,NULL),('3e26ceb2484573181a7524558629b40b',NULL,'2019-11-09 00:53:23','2019-11-09 00:53:23','54.36.150.143',NULL,NULL,NULL,NULL),('3e69399d6e4a716835d2f59f96516955',NULL,'2019-06-13 00:51:49','2019-06-13 00:51:49','54.36.149.46',NULL,NULL,NULL,NULL),('3eb813f27dd661eeb7d4a08d901cef80',NULL,'2019-06-17 02:47:26','2019-06-17 02:47:26','54.36.150.96',NULL,NULL,NULL,NULL),('3ee746173a0b66d3052ce83043c74a94',NULL,'2019-07-22 23:32:58','2019-07-22 23:32:58','54.36.150.85',NULL,NULL,NULL,NULL),('3f1ej9kqlq53e6imeo30s9ok82',NULL,'2021-09-03 04:38:53','2021-09-03 04:38:53','216.244.66.240',NULL,NULL,NULL,NULL),('3f22522aeca0cb5cec630c968edb906d',NULL,'2019-05-29 12:38:06','2019-05-29 12:38:06','54.36.150.73',NULL,NULL,NULL,NULL),('3iujvvergh14e8t8aahjp5te01',NULL,'2020-08-25 19:13:43','2020-08-25 19:13:43','216.244.66.240',NULL,NULL,NULL,NULL),('3p1cc5263nu2uge6klh2ttqt24',NULL,'2020-08-25 01:02:17','2020-08-25 01:02:17','216.244.66.240',NULL,NULL,NULL,NULL),('3smj4jijsgq6akek4t1mop3vj7',NULL,'2020-11-29 10:46:15','2020-11-29 10:46:15','216.244.66.240',NULL,NULL,NULL,NULL),('40047d5d7c5118045487146e70df4606',NULL,'2019-11-28 04:05:53','2019-11-28 04:05:53','54.36.149.104',NULL,NULL,NULL,NULL),('40208131e4506b558496cb12fc21bd12',NULL,'2019-12-22 23:02:59','2019-12-22 23:02:59','54.36.150.32',NULL,NULL,NULL,NULL),('40262936327be33cfd4fecf7ee324c03',NULL,'2019-11-08 06:27:57','2019-11-08 06:27:57','54.36.148.131',NULL,NULL,NULL,NULL),('404386b92a83876617b15d521d81bd7d',NULL,'2019-06-10 07:17:23','2019-06-10 07:17:23','54.36.150.137',NULL,NULL,NULL,NULL),('4094f0dc074e57d74b75fb5cd1178eb4',NULL,'2019-10-05 06:15:38','2019-10-05 06:15:38','54.36.149.7',NULL,NULL,NULL,NULL),('40c33dbb9d5d20028fd806afc42ce1c0',NULL,'2019-11-23 19:44:01','2019-11-23 19:44:01','54.36.148.233',NULL,NULL,NULL,NULL),('40d7800d29bb21e75c0f968c9bca0fb2',NULL,'2020-05-12 03:05:26','2020-05-12 03:05:26','54.36.148.196',NULL,NULL,NULL,NULL),('4108d262384e4e6c2d67d9bd9b5ae245',NULL,'2019-07-26 05:30:55','2019-07-26 05:30:55','54.36.150.118',NULL,NULL,NULL,NULL),('4114fdc0209601bec0cfab3adbc34609',NULL,'2020-02-27 03:43:37','2020-02-27 03:43:37','54.36.150.168',NULL,NULL,NULL,NULL),('411caa940142ed99faa183961e9d6d11',NULL,'2019-11-10 20:53:30','2019-11-10 20:53:30','54.36.148.202',NULL,NULL,NULL,NULL),('415a4b06e6f2e7a84cd9a38669e74e70',NULL,'2019-05-25 15:25:33','2019-05-25 15:25:33','54.36.148.16',NULL,NULL,NULL,NULL),('41b3d709f27065a7f55ec3be9b8ccf92',NULL,'2019-10-20 17:39:53','2019-10-20 17:39:53','54.36.150.47',NULL,NULL,NULL,NULL),('41b4bec89b05e0aa8d7ed9542f64ee69',NULL,'2019-07-31 00:24:43','2019-07-31 00:24:43','54.36.150.31',NULL,NULL,NULL,NULL),('41c217954ecb259acce9a44f715663aa',NULL,'2020-02-01 11:22:51','2020-02-01 11:22:51','54.36.148.2',NULL,NULL,NULL,NULL),('41df2a360bbc2f56124384820f4cddd8',NULL,'2020-05-04 15:09:10','2020-05-04 15:09:10','54.36.149.70',NULL,NULL,NULL,NULL),('42113af353f2c91f367a864baa45aedf',NULL,'2019-05-26 07:53:13','2019-05-26 07:53:13','54.36.148.68',NULL,NULL,NULL,NULL),('4291ab4406385556923824de14399838',NULL,'2019-05-31 20:08:36','2019-05-31 20:08:36','54.36.149.84',NULL,NULL,NULL,NULL),('42b609ebde44233b950dd17239ff0402',NULL,'2020-04-07 07:36:52','2020-04-07 07:36:52','54.36.150.175',NULL,NULL,NULL,NULL),('430808209d89d6efa0f5ac3d4be01f5f',NULL,'2019-07-21 18:20:21','2019-07-21 18:20:21','54.36.150.104',NULL,NULL,NULL,NULL),('43667457fe4cb5fdf31a798d019c40c0',NULL,'2019-09-04 18:10:50','2019-09-04 18:10:50','54.36.148.211',NULL,NULL,NULL,NULL),('43e09e5bbfb22899dd23085f37e1ffa1',NULL,'2020-03-04 07:59:30','2020-03-04 07:59:30','54.36.148.221',NULL,NULL,NULL,NULL),('43f3a82c79a78977f14d3207701c069d',NULL,'2019-07-25 16:41:11','2019-07-25 16:41:11','54.36.149.39',NULL,NULL,NULL,NULL),('4414dcd702306ebd658cd277e6c6de40',NULL,'2019-05-31 15:09:21','2019-05-31 15:09:21','54.36.148.26',NULL,NULL,NULL,NULL),('44c227f218ac4040398aaddcc68c0cd1',NULL,'2019-05-26 21:44:14','2019-05-26 21:44:14','54.36.148.70',NULL,NULL,NULL,NULL),('44e402bafda1ec68214f21c8b8c71d6a',NULL,'2020-02-18 02:55:55','2020-02-18 02:55:55','54.36.150.172',NULL,NULL,NULL,NULL),('44ffuu5okforliq67eg731faa5',NULL,'2020-08-26 03:42:46','2020-08-26 03:42:46','216.244.66.240',NULL,NULL,NULL,NULL),('4511bb3dfb6f5941e39739fd9cf422e5',NULL,'2019-08-30 05:33:47','2019-08-30 05:33:47','54.36.150.74',NULL,NULL,NULL,NULL),('45825d3613f3ec0e00958c272dfc010d',NULL,'2020-01-15 23:26:01','2020-01-15 23:26:01','54.36.148.166',NULL,NULL,NULL,NULL),('458f93e643bcc308c6991159b1fb0b39',NULL,'2020-02-28 04:56:12','2020-02-28 04:56:12','54.36.150.26',NULL,NULL,NULL,NULL),('4700c8a8381eeb074205b58256ebe6aa',NULL,'2019-10-05 20:26:08','2019-10-05 20:26:08','54.36.148.174',NULL,NULL,NULL,NULL),('4714d4e43ce6921c2bad45e8c89815ef',NULL,'2019-08-29 06:13:48','2019-08-29 06:13:48','54.36.148.142',NULL,NULL,NULL,NULL),('4720d7e2fa12ebe5b00e75202af89322',NULL,'2020-01-15 23:18:59','2020-01-15 23:18:59','54.36.148.191',NULL,NULL,NULL,NULL),('477377f37566d23c985f980ace0a0eea',NULL,'2020-03-25 11:51:22','2020-03-25 11:51:22','54.36.150.78',NULL,NULL,NULL,NULL),('477e013cd0b9a165e08c3f10822044f7',NULL,'2020-01-19 05:59:26','2020-01-19 05:59:26','54.36.148.184',NULL,NULL,NULL,NULL),('478f9fd929e7b9ac3f9ce87e2750775a',NULL,'2019-05-30 21:55:02','2019-05-30 21:55:02','54.36.150.182',NULL,NULL,NULL,NULL),('47d1d706edc2d57d8bd4c2e016a00eb4',NULL,'2019-11-10 09:23:57','2019-11-10 09:23:57','54.36.150.99',NULL,NULL,NULL,NULL),('4817e50c8b9ef296a33867ed8bb6f483',NULL,'2019-05-31 17:23:59','2019-05-31 17:23:59','54.36.149.66',NULL,NULL,NULL,NULL),('48330ab8c76e82fb8adb7162e89e0913',NULL,'2019-06-11 23:07:59','2019-06-11 23:07:59','54.36.148.215',NULL,NULL,NULL,NULL),('48368996e27786955f9130515fdde039',NULL,'2019-05-26 07:47:10','2019-05-26 07:47:10','54.36.149.47',NULL,NULL,NULL,NULL),('48877b682fff56352c451da6d020af98',NULL,'2019-05-31 05:41:56','2019-05-31 05:41:56','54.36.150.13',NULL,NULL,NULL,NULL),('48d1e94813b79721b8223314a7873345',NULL,'2019-10-18 09:00:06','2019-10-18 09:00:06','54.36.149.4',NULL,NULL,NULL,NULL),('4992eedd18c836bfc334cc5b0f9a3c84',NULL,'2019-07-29 03:17:53','2019-07-29 03:17:53','54.36.150.47',NULL,NULL,NULL,NULL),('49c910a10fc9828c66cc83f7871685c0',NULL,'2020-04-01 01:31:09','2020-04-01 01:31:09','54.36.148.186',NULL,NULL,NULL,NULL),('49e6120e9083de4f555d47cd96fef89d',NULL,'2019-05-31 05:00:51','2019-05-31 05:00:51','54.36.150.162',NULL,NULL,NULL,NULL),('4a31ab274c5694ad1d5d841fcb5d5b5d',NULL,'2019-12-16 14:31:04','2019-12-16 14:31:04','54.36.148.44',NULL,NULL,NULL,NULL),('4a580e78c2251b8f314033431315b6c9',NULL,'2019-06-19 01:41:53','2019-06-19 01:41:53','54.36.148.61',NULL,NULL,NULL,NULL),('4a7d46e46dbbb5abed37819d267c3c77',NULL,'2019-10-04 17:52:49','2019-10-04 17:52:49','54.36.148.253',NULL,NULL,NULL,NULL),('4aa0b989cdb712aa569adfab460349f0',NULL,'2019-05-31 15:18:57','2019-05-31 15:18:57','54.36.150.137',NULL,NULL,NULL,NULL),('4aa74a9ccdcd285ea4a69d35124e76be',NULL,'2020-01-27 22:10:06','2020-01-27 22:10:06','54.36.150.61',NULL,NULL,NULL,NULL),('4b42aad7a0ba3a567d497cba3c31b882',NULL,'2019-06-14 17:21:14','2019-06-14 17:21:14','54.36.150.104',NULL,NULL,NULL,NULL),('4bad239fedc1a9353ab257280a9ebd8e',NULL,'2019-12-18 21:25:36','2019-12-18 21:25:36','54.36.150.139',NULL,NULL,NULL,NULL),('4bbd07a0c2baf1c85d57d058656385bb',NULL,'2020-05-24 03:26:53','2020-05-24 03:26:53','216.244.66.240',NULL,NULL,NULL,NULL),('4bknuqn26eqoqijtvtoatknr67',NULL,'2021-12-05 03:26:13','2021-12-05 03:26:13','216.244.66.240',NULL,NULL,NULL,NULL),('4c52ed9fd02ccf509631825f32fa9da3',NULL,'2019-05-18 14:02:22','2019-05-18 14:02:22','54.36.149.32',NULL,NULL,NULL,NULL),('4c5e8dcf24ab267a6079d115a33c0fb4',NULL,'2019-05-31 15:43:27','2019-05-31 15:43:27','54.36.150.5',NULL,NULL,NULL,NULL),('4c93efd21d09d40a904a42b3cde74e4c',NULL,'2019-10-04 13:59:48','2019-10-04 13:59:48','54.36.148.122',NULL,NULL,NULL,NULL),('4d2044800e9903d7bcd8e644c133a401',NULL,'2020-02-23 19:49:01','2020-02-23 19:49:01','54.36.150.68',NULL,NULL,NULL,NULL),('4d27a8fa464e90ea255c1ded1dfdf917',NULL,'2019-06-10 23:10:44','2019-06-10 23:10:44','54.36.148.51',NULL,NULL,NULL,NULL),('4d4e7f0eb1d09d93b870926cc5acb71d',NULL,'2020-02-23 15:46:22','2020-02-23 15:46:22','54.36.148.215',NULL,NULL,NULL,NULL),('4d6211d34ee174465894c7df57e261ba',NULL,'2020-05-06 11:22:00','2020-05-06 11:22:00','54.36.148.33',NULL,NULL,NULL,NULL),('4d74befc5c666daba633c428e386c8ae',NULL,'2019-06-28 03:07:59','2019-06-28 03:07:59','54.36.148.190',NULL,NULL,NULL,NULL),('4de79eaef6ec7afc0bcdba70bdb09797',NULL,'2020-05-17 11:32:25','2020-05-17 11:32:25','54.36.150.122',NULL,NULL,NULL,NULL),('4e4eb8613b1529aab47fb557a2955eb5',NULL,'2019-09-16 02:08:55','2019-09-16 02:08:55','54.36.150.142',NULL,NULL,NULL,NULL),('4e9943cbb3583daef7e1b75846848404',NULL,'2019-12-15 03:32:49','2019-12-15 03:32:49','54.36.149.43',NULL,NULL,NULL,NULL),('4f23eb63b8f905eb5751d52f02740f3c',NULL,'2019-11-24 23:42:28','2019-11-24 23:42:28','54.36.148.210',NULL,NULL,NULL,NULL),('4f367f5f54caa56180f73a7119e98165',NULL,'2020-03-13 12:51:53','2020-03-13 12:51:53','54.36.149.30',NULL,NULL,NULL,NULL),('4f5b0997b10c59f5230b4a84a9cdc992',NULL,'2019-05-31 11:36:33','2019-05-31 11:36:33','54.36.150.124',NULL,NULL,NULL,NULL),('4f776dcfeef23e2b9434d301c5567f75',NULL,'2020-02-19 22:46:53','2020-02-19 22:46:53','54.36.150.32',NULL,NULL,NULL,NULL),('4fbfb96ba8476f7ba472b51a3806e413',NULL,'2019-08-01 03:40:06','2019-08-01 03:40:06','54.36.150.39',NULL,NULL,NULL,NULL),('4iseo9i6fmr9bhstuk1jfvae70',NULL,'2020-08-24 03:27:35','2020-08-24 03:27:35','216.244.66.240',NULL,NULL,NULL,NULL),('4l1p6c2d1k6p4g9r3ljpvdu281',NULL,'2021-09-11 17:17:29','2021-09-11 17:17:29','216.244.66.240',NULL,NULL,NULL,NULL),('4pbafic255j4p12eitq1jv1se7',NULL,'2021-06-14 13:10:24','2021-06-14 13:10:24','216.244.66.240',NULL,NULL,NULL,NULL),('50aojtasho4cnl3qdmcpmv0oh5',NULL,'2020-11-24 19:02:18','2020-11-24 19:02:18','216.244.66.240',NULL,NULL,NULL,NULL),('50ccf797126d7a8a5e7cb8db6b573e47',NULL,'2019-10-09 21:08:45','2019-10-09 21:08:45','54.36.148.250',NULL,NULL,NULL,NULL),('50eb348b0226e44dcc498ca462022c94',NULL,'2019-05-31 16:00:36','2019-05-31 16:00:36','54.36.150.24',NULL,NULL,NULL,NULL),('51133dfbf6c19f82c86d6f10dbb9ecb0',NULL,'2020-02-29 03:10:13','2020-02-29 03:10:13','54.36.150.62',NULL,NULL,NULL,NULL),('512cfb7a6df3c63a3a78b986538af413',NULL,'2019-11-10 11:52:27','2019-11-10 11:52:27','54.36.148.144',NULL,NULL,NULL,NULL),('51b9ad109f42232a26046b620bbfe540',NULL,'2019-05-27 18:05:40','2019-05-27 18:05:40','54.36.150.18',NULL,NULL,NULL,NULL),('53vqlpjdqjvanjlpp4893koo92',NULL,'2020-11-25 12:09:47','2020-11-25 12:09:47','216.244.66.240',NULL,NULL,NULL,NULL),('54c405344072de01888f2bb570329ff1',NULL,'2020-05-06 19:41:39','2020-05-06 19:41:39','54.36.148.19',NULL,NULL,NULL,NULL),('551944c6b6ba5d01f1ee454dc39fff31',NULL,'2019-05-18 08:53:09','2019-05-18 08:53:09','54.36.149.57',NULL,NULL,NULL,NULL),('5533872eb40fc2aaddcf3bea11bb9ae4',NULL,'2019-10-21 04:35:00','2019-10-21 04:35:00','54.36.149.47',NULL,NULL,NULL,NULL),('554950a59a41b2075346c6476f71f924',NULL,'2020-01-24 04:04:57','2020-01-24 04:04:57','54.36.149.10',NULL,NULL,NULL,NULL),('55b1aad07888514b2b15e7ae1a81d417',NULL,'2019-08-30 10:15:41','2019-08-30 10:15:41','54.36.150.126',NULL,NULL,NULL,NULL),('566e3f03de2a90282f79a6b1c1728eac',NULL,'2019-12-12 14:43:26','2019-12-12 14:43:26','54.36.150.175',NULL,NULL,NULL,NULL),('567d7b2137eed95aca21721faef8ac6e',NULL,'2019-07-28 01:14:57','2019-07-28 01:14:57','54.36.148.55',NULL,NULL,NULL,NULL),('56acf839a1bd201e5181596dab71d41a',NULL,'2019-09-02 15:51:18','2019-09-02 15:51:18','54.36.150.142',NULL,NULL,NULL,NULL),('574cfb67431aab8f9e7227b1b5460400',NULL,'2020-01-11 15:25:25','2020-01-11 15:25:25','54.36.150.36',NULL,NULL,NULL,NULL),('57fe529905cae02f41233a42162ed42e',NULL,'2019-07-27 10:56:51','2019-07-27 10:56:51','54.36.150.125',NULL,NULL,NULL,NULL),('5830d0e22895b5cb4250fbad037ea219',NULL,'2019-12-23 00:19:48','2019-12-23 00:19:48','54.36.150.72',NULL,NULL,NULL,NULL),('5831df6d9cfedc22c66cc6e56fe7c873',NULL,'2019-09-28 13:02:41','2019-09-28 13:02:41','54.36.148.34',NULL,NULL,NULL,NULL),('586c78fc9591b739ca2bc2c1335c5354',NULL,'2019-12-29 13:18:06','2019-12-29 13:18:06','54.36.149.65',NULL,NULL,NULL,NULL),('58a3d19c9a158bbec1306aaa3e21ff53',NULL,'2019-08-30 13:02:07','2019-08-30 13:02:07','54.36.150.175',NULL,NULL,NULL,NULL),('5906d4f07f97187ec32e97a25418e4a7',NULL,'2019-06-10 19:58:57','2019-06-10 19:58:57','54.36.150.104',NULL,NULL,NULL,NULL),('5986d1d03605b4891c1de99dbd45c567',NULL,'2020-05-25 05:13:36','2020-05-25 05:13:36','216.244.66.240',NULL,NULL,NULL,NULL),('598fbffaec6d46b3c6d432b25db4c8a6',NULL,'2019-09-03 07:32:14','2019-09-03 07:32:14','54.36.150.143',NULL,NULL,NULL,NULL),('59c6f627d73123b94a7b8c14bb8fd6b3',NULL,'2019-05-31 10:53:27','2019-05-31 10:53:27','54.36.148.5',NULL,NULL,NULL,NULL),('5af1762344a11cf7925248e868b5deca',NULL,'2019-08-24 04:55:48','2019-08-24 04:55:48','54.36.150.14',NULL,NULL,NULL,NULL),('5b2e0438ff3c75596ebdee3e9ca9a47d',NULL,'2019-07-29 22:49:20','2019-07-29 22:49:20','54.36.148.5',NULL,NULL,NULL,NULL),('5c8f5420525db6284dc56d9ddef59eb8',NULL,'2019-07-29 07:40:00','2019-07-29 07:40:00','54.36.148.145',NULL,NULL,NULL,NULL),('5ccc50a67a0c2f59061dfe771c516118',NULL,'2020-05-15 08:48:17','2020-05-15 08:48:17','54.36.150.20',NULL,NULL,NULL,NULL),('5d3b67c716c918cc613443be616dc410',NULL,'2019-07-31 02:04:56','2019-07-31 02:04:56','54.36.149.105',NULL,NULL,NULL,NULL),('5d431392d622f5295dd7156a58407caa',NULL,'2020-01-09 19:37:45','2020-01-09 19:37:45','54.36.148.28',NULL,NULL,NULL,NULL),('5d5fb33bf8f24529f2277e82d40dd3cc',NULL,'2020-04-07 22:05:32','2020-04-07 22:05:32','54.36.150.163',NULL,NULL,NULL,NULL),('5di6vup86vvt0fgpb82el4ggc3',NULL,'2021-12-05 18:14:46','2021-12-05 18:14:46','216.244.66.240',NULL,NULL,NULL,NULL),('5e23b26d31c6500b45c72dad646fdce0',NULL,'2019-06-20 03:16:32','2019-06-20 03:16:32','54.36.148.25',NULL,NULL,NULL,NULL),('5e331fa8fbd3f4a113a1561b60f63bfa',NULL,'2019-09-29 02:04:44','2019-09-29 02:04:44','54.36.150.19',NULL,NULL,NULL,NULL),('5e59fe6825641f7c35719387e62e4cd2',NULL,'2020-02-11 21:27:21','2020-02-11 21:27:21','54.36.148.25',NULL,NULL,NULL,NULL),('5ebe6c2507a678b7ae5a2241adec3724',NULL,'2019-10-08 01:22:54','2019-10-08 01:22:54','54.36.150.152',NULL,NULL,NULL,NULL),('5f3djjc1eit557tbgh6ehmhma4',NULL,'2021-06-10 09:20:57','2021-06-10 09:20:57','216.244.66.240',NULL,NULL,NULL,NULL),('5f687de2eee67d320983a0ea6ae61c6f',NULL,'2019-11-12 07:36:55','2019-11-12 07:36:55','54.36.150.56',NULL,NULL,NULL,NULL),('5fb45b11ffbb51f790afc0d6a14551f3',NULL,'2019-12-26 14:38:41','2019-12-26 14:38:41','54.36.149.24',NULL,NULL,NULL,NULL),('5fe7497e4e4af07d461af9932b21b788',NULL,'2019-10-05 13:10:30','2019-10-05 13:10:30','54.36.148.121',NULL,NULL,NULL,NULL),('5l2tvfn5tknbbt87moc132n3r6',NULL,'2021-02-27 05:52:30','2021-02-27 05:52:30','216.244.66.240',NULL,NULL,NULL,NULL),('5nbf08ssu98vt6mbl2k5mfb4g6',NULL,'2020-11-26 05:39:36','2020-11-26 05:39:36','216.244.66.240',NULL,NULL,NULL,NULL),('5qqh7ci9tkbjguaol6ojbn6ul5',NULL,'2020-11-25 01:17:51','2020-11-25 01:17:51','216.244.66.240',NULL,NULL,NULL,NULL),('5tvkqq0it5498hvq959cl29ur1',NULL,'2021-12-07 12:49:20','2021-12-07 12:49:20','216.244.66.240',NULL,NULL,NULL,NULL),('60csb2bt8jlqpfrjkir8m61sj7',NULL,'2021-06-02 20:05:46','2021-06-02 20:05:46','216.244.66.240',NULL,NULL,NULL,NULL),('6135d198c24a8ca5ce69b9f15774516f',NULL,'2020-04-09 01:18:58','2020-04-09 01:18:58','54.36.150.171',NULL,NULL,NULL,NULL),('61899d5ef6a1c9d73e6df3e40b05c7e6',NULL,'2020-05-02 08:23:34','2020-05-02 08:23:34','54.36.150.14',NULL,NULL,NULL,NULL),('61dc88a0a0af93a01d5b511a8fec4eae',NULL,'2019-11-10 20:29:05','2019-11-10 20:29:05','54.36.150.123',NULL,NULL,NULL,NULL),('62fe861924a0d95c597096e157aa56a3',NULL,'2019-10-04 23:40:42','2019-10-04 23:40:42','54.36.150.130',NULL,NULL,NULL,NULL),('63348a400f1c2a593e149e757137f8bb',NULL,'2019-06-14 04:45:41','2019-06-14 04:45:41','54.36.150.175',NULL,NULL,NULL,NULL),('636697741c8742a16fe6193320fcec6b',NULL,'2019-12-14 11:31:39','2019-12-14 11:31:39','54.36.150.83',NULL,NULL,NULL,NULL),('6406add37f4584dd93d5149db6c53d3a',NULL,'2019-10-03 05:59:56','2019-10-03 05:59:56','54.36.150.141',NULL,NULL,NULL,NULL),('64dab51ad610096ef2dddc9677873f7f',NULL,'2019-10-08 10:20:27','2019-10-08 10:20:27','54.36.150.68',NULL,NULL,NULL,NULL),('6634438501d962789bcb7075351fd7ed',NULL,'2020-02-24 06:46:56','2020-02-24 06:46:56','54.36.148.29',NULL,NULL,NULL,NULL),('66353bb617051f3407c8a95a0cc4de8a',NULL,'2019-05-18 10:19:31','2019-05-18 10:19:31','54.36.148.248',NULL,NULL,NULL,NULL),('668086697cf6d34e460a8bb25d6e1789',NULL,'2020-05-19 23:22:07','2020-05-19 23:22:07','54.36.150.52',NULL,NULL,NULL,NULL),('66878b98091c41094ebd0de45e247c17',NULL,'2019-05-31 13:21:36','2019-05-31 13:21:36','54.36.148.40',NULL,NULL,NULL,NULL),('669229fbde8c96078d1515b71295f692',NULL,'2019-06-12 04:09:59','2019-06-12 04:09:59','54.36.148.253',NULL,NULL,NULL,NULL),('66hs8ob2qja9a2dc772acarui4',NULL,'2021-09-03 11:53:06','2021-09-03 11:53:06','216.244.66.240',NULL,NULL,NULL,NULL),('674f8193187907c17c4e7ca8ed7297ff',NULL,'2019-05-30 22:26:39','2019-05-30 22:26:39','54.36.150.141',NULL,NULL,NULL,NULL),('67507e12a40e904fa39991f5dc7ab64e',NULL,'2019-05-30 22:56:08','2019-05-30 22:56:08','54.36.148.151',NULL,NULL,NULL,NULL),('679401b9fed22bc101420ba1e83b3aad',NULL,'2019-10-03 22:15:34','2019-10-03 22:15:34','54.36.150.28',NULL,NULL,NULL,NULL),('67ce183ff8fb26555fdeba1854836392',NULL,'2019-09-04 21:51:20','2019-09-04 21:51:20','54.36.150.134',NULL,NULL,NULL,NULL),('67de7d120035ea2394ee6d4d5f8a7725',NULL,'2020-01-24 06:52:07','2020-01-24 06:52:07','54.36.150.84',NULL,NULL,NULL,NULL),('681d826eaf712341d59d3ec0e6297d9e',NULL,'2019-05-30 23:10:36','2019-05-30 23:10:36','54.36.150.32',NULL,NULL,NULL,NULL),('68470975acd57ea41f297e732450e027',NULL,'2019-07-22 17:01:01','2019-07-22 17:01:01','54.36.150.130',NULL,NULL,NULL,NULL),('68653b228234b177ba7b30d31a88bd12',NULL,'2019-09-06 05:34:32','2019-09-06 05:34:32','54.36.150.87',NULL,NULL,NULL,NULL),('68724e22cb4e6876ddb79f8ba6f3286b',NULL,'2019-05-25 15:48:59','2019-05-25 15:48:59','54.36.148.22',NULL,NULL,NULL,NULL),('6891174a2b07dc774fcaa7af15a168e8',NULL,'2020-01-28 19:31:18','2020-01-28 19:31:18','54.36.148.141',NULL,NULL,NULL,NULL),('69944f210cc72fa07a1621f3a746f534',NULL,'2020-05-25 16:26:49','2020-05-25 16:26:49','216.244.66.240',NULL,NULL,NULL,NULL),('6a36857d61e0bfb7a140ba8dfbd391fb',NULL,'2019-08-28 23:54:26','2019-08-28 23:54:26','54.36.148.117',NULL,NULL,NULL,NULL),('6a8f63fd212ddd80697f6fb9a1467586',NULL,'2020-03-29 04:51:27','2020-03-29 04:51:27','54.36.149.93',NULL,NULL,NULL,NULL),('6aae8fb8cfa2bc70580e8ef3594abf48',NULL,'2019-06-01 01:04:26','2019-06-01 01:04:26','54.36.150.85',NULL,NULL,NULL,NULL),('6b37adb3b2afa7003103a97cb31049a1',NULL,'2019-05-31 02:28:41','2019-05-31 02:28:41','54.36.150.2',NULL,NULL,NULL,NULL),('6bbb92ea1f1ecd16e6a3b22eeb81bc02',NULL,'2019-09-02 19:10:57','2019-09-02 19:10:57','54.36.149.64',NULL,NULL,NULL,NULL),('6be109bdb5a243b71df309afe2d8dfe6',NULL,'2019-07-23 11:00:24','2019-07-23 11:00:24','54.36.148.90',NULL,NULL,NULL,NULL),('6bf25b68912bea823d81bc74ed19e356',NULL,'2019-11-17 10:42:58','2019-11-17 10:42:58','54.36.149.106',NULL,NULL,NULL,NULL),('6c219e7c3fbc33c84d73f9564c7809d1',NULL,'2019-06-10 15:56:06','2019-06-10 15:56:06','54.36.150.84',NULL,NULL,NULL,NULL),('6c2e43ec085890f52f6f57db61fe0938',NULL,'2019-11-09 23:30:13','2019-11-09 23:30:13','54.36.150.185',NULL,NULL,NULL,NULL),('6c3fc4bcbce16d0d2202918cac86d43d',NULL,'2019-09-16 23:35:51','2019-09-16 23:35:51','54.36.150.19',NULL,NULL,NULL,NULL),('6c566a42ac284fe2807c57fb0333f1a2',NULL,'2020-02-25 05:49:24','2020-02-25 05:49:24','54.36.148.205',NULL,NULL,NULL,NULL),('6c63e4fc7c03573f23531a16ae5595b9',NULL,'2020-01-24 08:36:53','2020-01-24 08:36:53','54.36.149.53',NULL,NULL,NULL,NULL),('6ce4ebebf262ff23706a2aadbce2178f',NULL,'2019-08-31 04:00:42','2019-08-31 04:00:42','54.36.150.1',NULL,NULL,NULL,NULL),('6d34123a73e373c5f32d95a78529bc56',NULL,'2020-04-07 20:49:10','2020-04-07 20:49:10','54.36.150.157',NULL,NULL,NULL,NULL),('6d47fa212c88a9040ba45d2fd4d9a30d',NULL,'2019-07-24 19:17:32','2019-07-24 19:17:32','54.36.150.130',NULL,NULL,NULL,NULL),('6d7b194b6ebca7dbbd7865a97762c9e7',NULL,'2020-05-16 05:54:13','2020-05-16 05:54:13','54.36.150.181',NULL,NULL,NULL,NULL),('6d885693ccb41dc366868fdd0876f126',NULL,'2020-05-25 14:25:49','2020-05-25 14:25:49','216.244.66.240',NULL,NULL,NULL,NULL),('6db5d01274f221e0280ab154c08c76f5',NULL,'2019-06-01 09:38:36','2019-06-01 09:38:36','54.36.148.40',NULL,NULL,NULL,NULL),('6e273f2a6196ce1b433c11e271216ad8',NULL,'2019-07-31 05:10:35','2019-07-31 05:10:35','54.36.148.17',NULL,NULL,NULL,NULL),('6e441f23a843ee025d989abc8f0d70c4',NULL,'2019-11-12 14:08:03','2019-11-12 14:08:03','54.36.150.132',NULL,NULL,NULL,NULL),('6ecfcf3576165f1a7d0ef5b9d9c6d88d',NULL,'2020-04-16 00:46:02','2020-04-16 00:46:02','54.36.150.75',NULL,NULL,NULL,NULL),('6ed8er5f34svojrhrpeto65un5',NULL,'2021-02-28 22:08:06','2021-02-28 22:08:06','216.244.66.240',NULL,NULL,NULL,NULL),('6ef12a860e5c4b817f73f86ef8af3161',NULL,'2019-06-15 04:14:23','2019-06-15 04:14:23','54.36.148.169',NULL,NULL,NULL,NULL),('6ef9bbd3a459e9d806f5061996a3e97c',NULL,'2019-05-31 17:33:50','2019-05-31 17:33:50','54.36.148.46',NULL,NULL,NULL,NULL),('6f923e9af6a9fc68277cbf62e77c397a',NULL,'2019-09-04 07:24:48','2019-09-04 07:24:48','54.36.148.127',NULL,NULL,NULL,NULL),('6fbf22098krrnsko4sdnv11631',NULL,'2021-03-03 00:55:27','2021-03-03 00:55:27','216.244.66.240',NULL,NULL,NULL,NULL),('6fe49e040c3a4fa1433d0bdef3f7d06b',NULL,'2020-05-07 00:05:48','2020-05-07 00:05:48','54.36.148.62',NULL,NULL,NULL,NULL),('6g1oh0run5q6pbrpju6hm9sv54',NULL,'2021-05-31 20:57:34','2021-05-31 20:57:34','216.244.66.240',NULL,NULL,NULL,NULL),('6u784of926h0kn47854a3pg8n0',NULL,'2020-11-25 21:03:51','2020-11-25 21:03:51','216.244.66.240',NULL,NULL,NULL,NULL),('7078b129cad4e79c208118c891cf9d5b',NULL,'2020-05-02 02:42:39','2020-05-02 02:42:39','54.36.148.217',NULL,NULL,NULL,NULL),('70871dc38141b0c4850d4066b2168ba0',NULL,'2019-12-10 09:51:32','2019-12-10 09:51:32','54.36.148.200',NULL,NULL,NULL,NULL),('70aef4223684ec0e0858f0272c8f1512',NULL,'2020-03-25 12:49:26','2020-03-25 12:49:26','54.36.150.160',NULL,NULL,NULL,NULL),('715343d8379d214f18c9bf694cd5df68',NULL,'2020-04-17 21:43:04','2020-04-17 21:43:04','54.36.150.86',NULL,NULL,NULL,NULL),('715e6e47065490d69eac57d70761f3bb',NULL,'2019-11-09 11:26:11','2019-11-09 11:26:11','54.36.150.41',NULL,NULL,NULL,NULL),('7196e0a49f5979d8d898e03b607845f4',NULL,'2020-03-03 22:13:36','2020-03-03 22:13:36','54.36.148.141',NULL,NULL,NULL,NULL),('721f55c328e4c9dcd14b815831444552',NULL,'2020-05-16 02:52:29','2020-05-16 02:52:29','54.36.150.47',NULL,NULL,NULL,NULL),('7250a3ae20afc7c87b8d04ecd26a59c0',NULL,'2019-05-26 02:26:48','2019-05-26 02:26:48','54.36.149.61',NULL,NULL,NULL,NULL),('7257ea86cad60889d930cd968f4c51ab',NULL,'2019-05-31 13:09:11','2019-05-31 13:09:11','54.36.148.71',NULL,NULL,NULL,NULL),('728b37b0f365818640ef73d43d1849d9',NULL,'2020-03-06 16:32:36','2020-03-06 16:32:36','54.36.148.188',NULL,NULL,NULL,NULL),('72f18cf64a1fa95c2412e36b48be5c72',NULL,'2020-04-12 13:15:49','2020-04-12 13:15:49','54.36.150.41',NULL,NULL,NULL,NULL),('734e0025f8f374dd38f28d5172ca50fb',NULL,'2019-05-28 08:22:11','2019-05-28 08:22:11','54.36.148.107',NULL,NULL,NULL,NULL),('73675134da4a21431f0d4025afffd1f6',NULL,'2019-11-14 07:12:40','2019-11-14 07:12:40','54.36.150.154',NULL,NULL,NULL,NULL),('7430793c2c02d8c8c2e44c7bc148a3a2',NULL,'2019-08-11 21:27:57','2019-08-11 21:27:57','54.36.150.12',NULL,NULL,NULL,NULL),('749950447c52ad97e2e3cb03000a1995',NULL,'2019-11-08 17:59:53','2019-11-08 17:59:53','54.36.148.102',NULL,NULL,NULL,NULL),('74dba0aa46ea05447a99e86f32dd625f',NULL,'2019-10-29 20:26:38','2019-10-29 20:26:38','54.36.149.11',NULL,NULL,NULL,NULL),('7511d45033f9c4b50ae7811508636173',NULL,'2019-06-14 19:11:11','2019-06-14 19:11:11','54.36.150.16',NULL,NULL,NULL,NULL),('75297a7a9563007bebeb2a017f57f8b6',NULL,'2019-12-23 23:55:22','2019-12-23 23:55:22','54.36.150.69',NULL,NULL,NULL,NULL),('75c59cef134dd6e5fe4a50dd84868320',NULL,'2020-01-27 12:50:16','2020-01-27 12:50:16','54.36.148.200',NULL,NULL,NULL,NULL),('75ce55cc5982513cbf9a9d83f36df542',NULL,'2020-05-24 12:10:41','2020-05-24 12:10:41','216.244.66.240',NULL,NULL,NULL,NULL),('762c4c527b115a12cb50c9a4eb54bbe3',NULL,'2020-01-21 21:01:27','2020-01-21 21:01:27','54.36.150.157',NULL,NULL,NULL,NULL),('77027b47c6c8488b2b8832a89aa3505f',NULL,'2020-02-27 23:38:56','2020-02-27 23:38:56','54.36.150.175',NULL,NULL,NULL,NULL),('772d07b7d4a26ce8e421dcb321dc00a9',NULL,'2020-03-25 23:57:10','2020-03-25 23:57:10','54.36.148.92',NULL,NULL,NULL,NULL),('7781b1141f139b69ef15af88cef0b9b5',NULL,'2019-11-22 08:35:52','2019-11-22 08:35:52','54.36.150.147',NULL,NULL,NULL,NULL),('77906d0be42eb435f2f63b667137d022',NULL,'2020-02-23 13:52:43','2020-02-23 13:52:43','54.36.150.59',NULL,NULL,NULL,NULL),('77a3576cd2fad98a87fc9e4523222c44',NULL,'2019-05-31 19:25:25','2019-05-31 19:25:25','54.36.149.78',NULL,NULL,NULL,NULL),('77ac3f872dabad7697d76fe25a6208ae',NULL,'2020-01-25 10:14:32','2020-01-25 10:14:32','54.36.148.2',NULL,NULL,NULL,NULL),('77ee11e784ab4d99bc7f151243ad720f',NULL,'2019-12-14 05:08:16','2019-12-14 05:08:16','54.36.148.175',NULL,NULL,NULL,NULL),('783c61e67362e9da62275aaea660fa74',NULL,'2019-12-30 19:55:09','2019-12-30 19:55:37','174.115.103.213',NULL,NULL,NULL,NULL),('784e81966603f9513e7a0bfaebefb9c9',NULL,'2020-03-31 01:06:37','2020-03-31 01:06:37','54.36.148.146',NULL,NULL,NULL,NULL),('78da587f1d47173eb5ecfe60719c7775',NULL,'2019-12-28 02:12:14','2019-12-28 02:12:14','54.36.150.17',NULL,NULL,NULL,NULL),('7920a9116e319a76c25ae8d4bddb53a6',NULL,'2019-10-07 08:40:57','2019-10-07 08:40:57','54.36.150.189',NULL,NULL,NULL,NULL),('792e953d8d78c53e4aaa31a3d354c45f',NULL,'2019-05-18 14:04:56','2019-05-18 14:04:56','54.36.149.93',NULL,NULL,NULL,NULL),('79dacb5d8bc5cccddbf8d17cf8bd8e9b',NULL,'2020-03-16 02:21:41','2020-03-16 02:21:41','54.36.150.26',NULL,NULL,NULL,NULL),('79f31c2a1bf77a00c905b079c335d52c',NULL,'2019-07-27 22:49:54','2019-07-27 22:49:54','54.36.150.165',NULL,NULL,NULL,NULL),('79f636c264f9466bd89cfb3794edbf81',NULL,'2019-11-06 20:39:07','2019-11-06 20:39:07','54.36.149.72',NULL,NULL,NULL,NULL),('7a251b232101ad46c2356a57c17de327',NULL,'2019-10-15 03:40:34','2019-10-15 03:40:34','54.36.150.67',NULL,NULL,NULL,NULL),('7ab88eb5527ca961b548368459c661d4',NULL,'2020-02-29 00:26:19','2020-02-29 00:26:19','54.36.150.189',NULL,NULL,NULL,NULL),('7b1d154987cb09df54cac753c4245d63',NULL,'2019-12-11 09:45:14','2019-12-11 09:45:14','54.36.148.226',NULL,NULL,NULL,NULL),('7b5f9253277f24117dc8a48ce667054d',NULL,'2019-06-11 02:03:08','2019-06-11 02:03:08','54.36.150.121',NULL,NULL,NULL,NULL),('7bffdd0f9dd634fac1ca25410d5ae0a2',NULL,'2019-12-19 05:28:34','2019-12-19 05:28:34','54.36.150.69',NULL,NULL,NULL,NULL),('7c1626869523141ac7f53d10f5f9e697',NULL,'2019-05-26 14:47:15','2019-05-26 14:47:15','54.36.148.36',NULL,NULL,NULL,NULL),('7c2264f36c57115e10a9877ea89eeb05',NULL,'2020-02-04 07:28:32','2020-02-04 07:28:32','54.36.148.8',NULL,NULL,NULL,NULL),('7c6ef48b3d2d982513df9c4c0da21f45',NULL,'2020-05-15 12:23:22','2020-05-15 12:23:22','54.36.148.41',NULL,NULL,NULL,NULL),('7c78445fc600c968dd9d01ef7b0ea005',NULL,'2020-02-29 01:28:52','2020-02-29 01:28:52','54.36.150.59',NULL,NULL,NULL,NULL),('7cb2e51a0b22a42020e965732134bf9e',NULL,'2019-10-08 12:21:36','2019-10-08 12:21:36','54.36.148.16',NULL,NULL,NULL,NULL),('7cc5de16378975ab2dc0641b4fb3b7cb',NULL,'2019-09-29 15:18:44','2019-09-29 15:18:44','54.36.150.182',NULL,NULL,NULL,NULL),('7d1b0fa6ee54b445d6adc11b9e5c51d8',NULL,'2019-09-03 07:58:58','2019-09-03 07:58:58','54.36.149.48',NULL,NULL,NULL,NULL),('7d53be36c6890160d8221f3bb4b0d02c',NULL,'2019-05-25 14:46:30','2019-05-25 14:46:30','54.36.148.132',NULL,NULL,NULL,NULL),('7dad1da34e4b46ca8da3b24dfce5f4f2',NULL,'2019-05-31 16:23:07','2019-05-31 16:23:07','54.36.150.55',NULL,NULL,NULL,NULL),('7dc5490f6e6b6a1f5a7ca810c22c2053',NULL,'2020-03-04 18:11:39','2020-03-04 18:11:39','54.36.150.38',NULL,NULL,NULL,NULL),('7e006eaa384de6e9e96a5d8a3552d043',NULL,'2020-04-11 18:08:34','2020-04-11 18:08:34','54.36.149.82',NULL,NULL,NULL,NULL),('7eaf8529a74d7d5fddbb527843313a4e',NULL,'2019-05-30 23:39:28','2019-05-30 23:39:28','54.36.149.8',NULL,NULL,NULL,NULL),('7ec7e9536dafe317c0c28393bd49dabd',NULL,'2019-12-14 17:07:47','2019-12-14 17:07:47','54.36.148.38',NULL,NULL,NULL,NULL),('7ecdfad08433031ae02a2a2deabe9252',NULL,'2019-05-28 17:50:57','2019-05-28 17:50:57','54.36.150.7',NULL,NULL,NULL,NULL),('7edfbc5f1ab3f65040405b2aed0d33ff',NULL,'2020-05-14 09:03:20','2020-05-14 09:03:20','54.36.148.94',NULL,NULL,NULL,NULL),('7eefcd54a94b75079dd5dea9e6de6e4c',NULL,'2020-03-01 19:08:18','2020-03-01 19:08:18','54.36.148.88',NULL,NULL,NULL,NULL),('7f128f0285a48098ff18cc4cbee9e4fb',NULL,'2020-05-18 05:22:27','2020-05-18 05:22:27','54.36.148.198',NULL,NULL,NULL,NULL),('7fee11840e0711592efe4b1f545f9451',NULL,'2019-05-25 11:30:30','2019-05-25 11:30:30','54.36.149.88',NULL,NULL,NULL,NULL),('7ff3385eff7c6608a17f3e0a787f52e9',NULL,'2019-12-22 09:18:30','2019-12-22 09:18:30','54.36.150.162',NULL,NULL,NULL,NULL),('8002b15ab5a3295028f81eb6fe7fa8ac',NULL,'2020-01-22 13:28:42','2020-01-22 13:28:42','54.36.148.159',NULL,NULL,NULL,NULL),('8022bc576d62847e62c6f93c2f83a03b',NULL,'2020-02-19 20:50:25','2020-02-19 20:50:25','54.36.150.34',NULL,NULL,NULL,NULL),('804fda07a98aaa2d94b6b4cd44568729',NULL,'2019-12-13 19:56:37','2019-12-13 19:56:37','54.36.150.164',NULL,NULL,NULL,NULL),('80664ec2d091a13085ac7db5f29f523a',NULL,'2020-01-21 07:38:45','2020-01-21 07:38:45','54.36.150.53',NULL,NULL,NULL,NULL),('80c058b601ce97e39f7d34d53d30e748',NULL,'2020-05-25 22:43:50','2020-05-25 22:43:50','216.244.66.240',NULL,NULL,NULL,NULL),('811f33ddb0e0992c508419ccc377b7a5',NULL,'2019-06-11 03:07:10','2019-06-11 03:07:10','54.36.150.120',NULL,NULL,NULL,NULL),('81a5688f898e02991cb4f27cb8f9e7dc',NULL,'2019-11-09 17:25:52','2019-11-09 17:25:52','54.36.150.11',NULL,NULL,NULL,NULL),('828f064e8be3ea12efefefac7de6501c',NULL,'2020-04-08 06:07:52','2020-04-08 06:07:52','54.36.150.74',NULL,NULL,NULL,NULL),('83277efec0f76e0b72fb870979281eb8',NULL,'2019-06-14 01:27:44','2019-06-14 01:27:44','54.36.148.12',NULL,NULL,NULL,NULL),('83744d8ad94ed7d06017cb9adc1f4b78',NULL,'2019-11-07 21:56:05','2019-11-07 21:56:05','54.36.150.116',NULL,NULL,NULL,NULL),('83c0d404d802e2284c1802fbbb79b479',NULL,'2019-07-25 22:56:59','2019-07-25 22:56:59','54.36.148.35',NULL,NULL,NULL,NULL),('83d72032142683525d73bae19ff25aeb',NULL,'2019-05-30 19:39:38','2019-05-30 19:39:38','54.36.150.16',NULL,NULL,NULL,NULL),('8438476477f6fa633b145458433a1b0c',NULL,'2019-11-09 09:35:44','2019-11-09 09:35:44','54.36.148.68',NULL,NULL,NULL,NULL),('84c17d2bc7dc0f296975bced740d733f',NULL,'2020-04-11 19:00:00','2020-04-11 19:00:00','54.36.148.145',NULL,NULL,NULL,NULL),('84d02e4b908fdcc14f8f1e9fb630b191',NULL,'2019-11-05 08:24:10','2019-11-05 08:24:10','54.36.150.94',NULL,NULL,NULL,NULL),('84f7f80020e726ed66b1099022951688',NULL,'2020-02-28 08:58:44','2020-02-28 08:58:44','54.36.148.72',NULL,NULL,NULL,NULL),('85584b6732d637f669f1332823c19fda',NULL,'2020-01-25 13:51:16','2020-01-25 13:51:16','54.36.148.121',NULL,NULL,NULL,NULL),('857af94e34877346d5647d4df5d37d56',NULL,'2020-02-25 00:24:46','2020-02-25 00:24:46','54.36.150.95',NULL,NULL,NULL,NULL),('8609e90572c5a80d1220e833340c6609',NULL,'2019-07-23 23:06:21','2019-07-23 23:06:21','54.36.150.138',NULL,NULL,NULL,NULL),('86968487c0ca6c17884c1effff883368',NULL,'2020-01-16 05:03:19','2020-01-16 05:03:19','54.36.150.2',NULL,NULL,NULL,NULL),('86bedb038fed02713e157326c9756b03',NULL,'2019-07-26 14:01:16','2019-07-26 14:01:16','54.36.150.122',NULL,NULL,NULL,NULL),('87d55b1fc84a4621babbbb10ea065ed9',NULL,'2019-12-17 19:44:41','2019-12-17 19:44:41','54.36.148.134',NULL,NULL,NULL,NULL),('881ab2c91b87aa9c0f0986bbbf5f45da',NULL,'2020-04-14 14:04:15','2020-04-14 14:04:15','54.36.148.125',NULL,NULL,NULL,NULL),('88ce98374803d20c6117aa1d94bfdeb2',NULL,'2019-08-31 20:08:18','2019-08-31 20:08:18','54.36.148.124',NULL,NULL,NULL,NULL),('88d0949590427a5af4385ff421539d50',NULL,'2019-09-27 15:07:14','2019-09-27 15:07:14','54.36.150.92',NULL,NULL,NULL,NULL),('892d26c707c858be9e832f243d4de984',NULL,'2019-07-23 09:25:16','2019-07-23 09:25:16','54.36.148.226',NULL,NULL,NULL,NULL),('895b03f79b50dd87f0cdddaa6c188c80',NULL,'2019-08-27 12:12:55','2019-08-27 12:12:55','54.36.150.135',NULL,NULL,NULL,NULL),('898a1ff5d3211c3e4e0aea61d8bd3ea2',NULL,'2019-10-17 19:48:31','2019-10-17 19:48:31','54.36.149.95',NULL,NULL,NULL,NULL),('89bc4f8cc27f076fb719a726908ae5d5',NULL,'2020-01-25 18:02:57','2020-01-25 18:02:57','54.36.148.55',NULL,NULL,NULL,NULL),('89f161d4980b4b56b32e1e2c850ca140',NULL,'2020-03-31 20:53:58','2020-03-31 20:53:58','54.36.150.68',NULL,NULL,NULL,NULL),('8a9a0763ccc947b917964c099e503844',NULL,'2020-04-15 04:20:55','2020-04-15 04:20:55','54.36.148.138',NULL,NULL,NULL,NULL),('8a9da91491a9a72c717cfbd93de58b12',NULL,'2020-01-21 08:58:31','2020-01-21 08:58:31','54.36.148.27',NULL,NULL,NULL,NULL),('8b676752f7fc964e5b27afccbdc69d2f',NULL,'2020-03-26 06:38:18','2020-03-26 06:38:18','54.36.150.28',NULL,NULL,NULL,NULL),('8b7a9aebb05a7341ce9e819f2b905f67',NULL,'2020-03-10 15:35:41','2020-03-10 15:35:41','54.36.148.26',NULL,NULL,NULL,NULL),('8b90286fad0b54b701906c21f3667a83',NULL,'2019-07-31 06:45:20','2019-07-31 06:45:20','54.36.148.56',NULL,NULL,NULL,NULL),('8c3c1b1f6b636f00230f0907a101c6d8',NULL,'2019-06-10 17:48:12','2019-06-10 17:48:12','54.36.148.38',NULL,NULL,NULL,NULL),('8c46eec0c4c245e719cd0b5df53ce678',NULL,'2020-04-10 12:26:06','2020-04-10 12:26:06','54.36.150.157',NULL,NULL,NULL,NULL),('8cf8c1d3b54d37c8976d64020cea749f',NULL,'2019-06-18 18:13:40','2019-06-18 18:13:40','54.36.150.110',NULL,NULL,NULL,NULL),('8d01ffd40e4f0954087a6970a1f21805',NULL,'2019-12-10 00:30:07','2019-12-10 00:30:07','54.36.150.73',NULL,NULL,NULL,NULL),('8d0c8c81c91898788091a17a0b66ddb5',NULL,'2019-10-05 06:25:16','2019-10-05 06:25:16','54.36.148.245',NULL,NULL,NULL,NULL),('8d9b21b5c4a4017ef54a9fb7962d53e4',NULL,'2019-06-10 14:25:55','2019-06-10 14:25:55','54.36.148.115',NULL,NULL,NULL,NULL),('8dae1b943927f4a9738961507559ff1b',NULL,'2020-01-28 08:55:52','2020-01-28 08:55:52','54.36.148.189',NULL,NULL,NULL,NULL),('8db442f808c419447ad395573c5b3f44',NULL,'2019-10-05 04:45:56','2019-10-05 04:45:56','54.36.150.36',NULL,NULL,NULL,NULL),('8dd772b292569f2234336da3daa75bb2',NULL,'2020-02-13 08:32:01','2020-02-13 08:32:01','54.36.148.55',NULL,NULL,NULL,NULL),('8decfafc509da7e95f4ee4d86e0c941e',NULL,'2019-06-01 13:56:37','2019-06-01 13:56:37','54.36.150.160',NULL,NULL,NULL,NULL),('8e99eb3946143a7345df21478fb80230',NULL,'2020-02-22 07:01:00','2020-02-22 07:01:00','54.36.150.16',NULL,NULL,NULL,NULL),('8f251b5dbbc3e08d265141f0e982650a',NULL,'2019-07-23 04:35:12','2019-07-23 04:35:12','54.36.150.167',NULL,NULL,NULL,NULL),('8f307529ab8b17864ae588211b85505f',NULL,'2020-04-01 01:35:26','2020-04-01 01:35:26','54.36.148.250',NULL,NULL,NULL,NULL),('8f4b18bbbd9037b69a3a7a539b32a107',NULL,'2019-05-25 23:44:23','2019-05-25 23:44:23','54.36.149.41',NULL,NULL,NULL,NULL),('8f50cc47e89b9904ebf0b882b22f9832',NULL,'2020-01-25 09:16:54','2020-01-25 09:16:54','54.36.149.64',NULL,NULL,NULL,NULL),('8ff2fb038caab44825195c2372cf3643',NULL,'2019-11-08 03:04:33','2019-11-08 03:04:33','54.36.150.183',NULL,NULL,NULL,NULL),('8udcid3sumrtvb6u76830q6c74',NULL,'2021-03-03 00:07:42','2021-03-03 00:07:42','216.244.66.240',NULL,NULL,NULL,NULL),('901c3da5df5c33d4b230298589a48d77',NULL,'2020-05-23 15:10:44','2020-05-23 15:10:44','216.244.66.240',NULL,NULL,NULL,NULL),('903b61d0c26c83cbb57a81344a5fc356',NULL,'2019-06-01 05:15:29','2019-06-01 05:15:29','54.36.150.125',NULL,NULL,NULL,NULL),('90a91596fb0ac7c7dcf7e865e02469d2',NULL,'2019-10-10 09:56:27','2019-10-10 09:56:27','54.36.149.67',NULL,NULL,NULL,NULL),('90e022482797b2bd47146c3c01f1865e',NULL,'2019-05-25 12:50:24','2019-05-25 12:50:24','54.36.148.209',NULL,NULL,NULL,NULL),('9159d2e41b8cd997c4aa752147da6f19',NULL,'2019-07-26 13:16:39','2019-07-26 13:16:39','54.36.148.251',NULL,NULL,NULL,NULL),('918245a6dba530fcea6717bd2b15109a',NULL,'2019-12-13 01:07:36','2019-12-13 01:07:36','54.36.148.96',NULL,NULL,NULL,NULL),('9309f5d54f7855d0839a13e83e388f9a',NULL,'2019-07-27 08:47:23','2019-07-27 08:47:23','54.36.150.141',NULL,NULL,NULL,NULL),('93242c865a61c6777aa83ab622fb3a93',NULL,'2020-02-29 09:44:21','2020-02-29 09:44:21','54.36.149.44',NULL,NULL,NULL,NULL),('94339c57207e28cd0b7edeb4474418f4',NULL,'2019-08-29 08:01:31','2019-08-29 08:01:31','54.36.150.83',NULL,NULL,NULL,NULL),('944fd71c9842438e3767e39a8030e9c2',NULL,'2019-11-07 09:29:40','2019-11-07 09:29:40','54.36.149.72',NULL,NULL,NULL,NULL),('94dde9fbb9638f155aa5e775ab2a9164',NULL,'2019-10-16 09:16:32','2019-10-16 09:16:32','54.36.150.174',NULL,NULL,NULL,NULL),('94npvv8b7c0lth9nbssvpj5av0',NULL,'2021-02-28 01:39:30','2021-02-28 01:39:30','216.244.66.240',NULL,NULL,NULL,NULL),('955de284f7d1cc11d258aa7f87480867',NULL,'2020-05-13 18:41:44','2020-05-13 18:41:44','54.36.150.121',NULL,NULL,NULL,NULL),('95771e2cbca925f22d179b92e9ee60e6',NULL,'2019-11-08 22:27:02','2019-11-08 22:27:02','54.36.150.62',NULL,NULL,NULL,NULL),('959kspjg5pkp1dd12qu2hl2gi0',NULL,'2021-12-03 09:44:17','2021-12-03 09:44:17','216.244.66.240',NULL,NULL,NULL,NULL),('96175826d9e05b6482dee9f71cd8166b',NULL,'2019-07-28 12:07:49','2019-07-28 12:07:49','54.36.150.188',NULL,NULL,NULL,NULL),('9668fc84378e6559fdbaa48c91048d0a',NULL,'2020-01-16 04:16:40','2020-01-16 04:16:40','54.36.150.1',NULL,NULL,NULL,NULL),('96821e288ad94d3287245092cb9663a5',NULL,'2020-02-26 11:11:33','2020-02-26 11:11:33','54.36.149.93',NULL,NULL,NULL,NULL),('971bb8f4289f135cf82c62dd82f05936',NULL,'2020-02-27 14:59:05','2020-02-27 14:59:05','54.36.150.149',NULL,NULL,NULL,NULL),('974f6ad2f6ffa0da7a98691d03bf71e9',NULL,'2019-06-13 22:56:05','2019-06-13 22:56:05','54.36.148.53',NULL,NULL,NULL,NULL),('976fe1f7b26625e69923fcc9531b9dfc',NULL,'2019-05-31 13:13:10','2019-05-31 13:13:10','54.36.150.102',NULL,NULL,NULL,NULL),('97790a9a502cc8daf71a7dd941bb1ca1',NULL,'2019-05-18 23:41:50','2019-05-18 23:41:50','54.36.148.89',NULL,NULL,NULL,NULL),('977aa56446d667d50e02a0c5a12c0b70',NULL,'2020-02-20 11:53:16','2020-02-20 11:53:16','54.36.150.159',NULL,NULL,NULL,NULL),('97a27b550727418ae39f04552db418bf',NULL,'2020-04-07 17:12:45','2020-04-07 17:12:45','54.36.150.34',NULL,NULL,NULL,NULL),('98d485a6f4cb2b62303d8d31b282d129',NULL,'2020-05-23 15:10:56','2020-05-23 15:10:56','216.244.66.240',NULL,NULL,NULL,NULL),('98dc24d9d8c803eef393d99acb6125e7',NULL,'2019-06-13 07:19:48','2019-06-13 07:19:48','54.36.150.91',NULL,NULL,NULL,NULL),('98efc5f6f2f9d81347104cce531da8a6',NULL,'2019-05-31 04:27:00','2019-05-31 04:27:00','54.36.150.171',NULL,NULL,NULL,NULL),('9908df78c6429de8607af8892e9f52a8',NULL,'2020-04-30 22:30:39','2020-04-30 22:30:39','54.36.150.38',NULL,NULL,NULL,NULL),('99cd1b79721b868fca1b96c7903dffdc',NULL,'2020-01-22 19:23:47','2020-01-22 19:23:47','54.36.150.153',NULL,NULL,NULL,NULL),('99e157b313afe14244cc1fe25af078da',NULL,'2020-01-18 08:29:23','2020-01-18 08:29:23','54.36.150.177',NULL,NULL,NULL,NULL),('9a2ab676d2f817cb363582a0ec7d0dd2',NULL,'2019-06-14 17:06:07','2019-06-14 17:06:07','54.36.150.36',NULL,NULL,NULL,NULL),('9a5c439283566c67b008dfa689e32c1a',NULL,'2019-07-29 23:13:54','2019-07-29 23:13:54','54.36.150.140',NULL,NULL,NULL,NULL),('9a6ee834d136653780fc52c6e516d58b',NULL,'2019-06-17 03:27:09','2019-06-17 03:27:09','54.36.150.91',NULL,NULL,NULL,NULL),('9a83e2cfea964c61569aa9bd847e8b6b',NULL,'2019-05-27 13:53:14','2019-05-27 13:53:14','54.36.149.70',NULL,NULL,NULL,NULL),('9ad44c614c8ef0e3d5a24e38c8af748c',NULL,'2019-05-30 22:02:51','2019-05-30 22:02:51','54.36.148.229',NULL,NULL,NULL,NULL),('9b22653ccefef0490063b22e60d1d0da',NULL,'2019-11-22 12:28:14','2019-11-22 12:28:14','54.36.150.134',NULL,NULL,NULL,NULL),('9b2842c30dafa26f9b274a6d924d794c',NULL,'2019-10-04 20:56:03','2019-10-04 20:56:03','54.36.150.129',NULL,NULL,NULL,NULL),('9b41a74c7600c8b28384595880527dd4',NULL,'2020-05-03 11:21:23','2020-05-03 11:21:23','54.36.150.0',NULL,NULL,NULL,NULL),('9b6db6c8b9e50037a733de7dbaf8f5ff',NULL,'2019-09-03 18:11:06','2019-09-03 18:11:06','54.36.149.67',NULL,NULL,NULL,NULL),('9b7a3e0b0892470349dfaacbd628a773',NULL,'2019-06-13 14:43:23','2019-06-13 14:43:23','54.36.150.90',NULL,NULL,NULL,NULL),('9c48adcaa43aabcdafa83fda756f3f87',NULL,'2019-11-16 23:17:31','2019-11-16 23:17:31','54.36.150.115',NULL,NULL,NULL,NULL),('9c4d16e6f3d02be2126d94dba7d9c782',NULL,'2019-07-24 21:02:59','2019-07-24 21:02:59','54.36.148.71',NULL,NULL,NULL,NULL),('9cb162b43530c25ba6709fa1a3cdad19',NULL,'2020-03-04 18:31:37','2020-03-04 18:31:37','54.36.150.107',NULL,NULL,NULL,NULL),('9cbbc58a829cfa5b9bcef5841fb59835',NULL,'2020-05-24 08:15:55','2020-05-24 08:15:55','216.244.66.240',NULL,NULL,NULL,NULL),('9cf419c04fda9f55608627fd2b5d2389',NULL,'2019-09-07 09:18:57','2019-09-07 09:18:57','54.36.150.113',NULL,NULL,NULL,NULL),('9d000604c24707ce8295c52891ca21c9',NULL,'2019-12-10 02:55:05','2019-12-10 02:55:05','54.36.150.132',NULL,NULL,NULL,NULL),('9da720242fd9388c5996898f65fe84f9',NULL,'2019-11-10 15:58:20','2019-11-10 15:58:20','54.36.149.45',NULL,NULL,NULL,NULL),('9db8fbb561625b57093e641f1fa951ae',NULL,'2019-05-31 04:20:04','2019-05-31 04:20:04','54.36.150.44',NULL,NULL,NULL,NULL),('9dedb7db7bf4bb702291f28ea21265a1',NULL,'2019-08-27 17:55:05','2019-08-27 17:55:05','54.36.149.98',NULL,NULL,NULL,NULL),('9ec2edd79f0361fe8bec4aee1d4f6d75',NULL,'2019-12-12 03:16:18','2019-12-12 03:16:18','54.36.150.137',NULL,NULL,NULL,NULL),('9ee647eeb57950abfd303b3b5ffc82d7',NULL,'2020-04-15 19:34:18','2020-04-15 19:34:18','54.36.148.183',NULL,NULL,NULL,NULL),('9ef28603609b342a614a0dd41a56e67a',NULL,'2020-02-26 14:10:10','2020-02-26 14:10:10','54.36.148.61',NULL,NULL,NULL,NULL),('9fc599654fe15aa01f0efa995df84a4c',NULL,'2019-08-28 07:45:30','2019-08-28 07:45:30','54.36.150.142',NULL,NULL,NULL,NULL),('9fc7637e439a7075deec9f52a9c8754d',NULL,'2020-03-23 06:23:53','2020-03-23 06:23:53','54.36.148.174',NULL,NULL,NULL,NULL),('9fe858f5e52e9621bf370717d4171950',NULL,'2019-10-07 06:35:54','2019-10-07 06:35:54','54.36.150.32',NULL,NULL,NULL,NULL),('9lkp224bth7seouhpupejoaj51',NULL,'2021-02-28 22:07:34','2021-02-28 22:07:34','216.244.66.240',NULL,NULL,NULL,NULL),('a01b19c7e15404fd4194144bdc6053c7',NULL,'2019-12-14 19:27:29','2019-12-14 19:27:29','54.36.148.123',NULL,NULL,NULL,NULL),('a023022d35fdfe4b551dcaf57ebae4e4',NULL,'2020-04-16 17:46:30','2020-04-16 17:46:30','54.36.149.11',NULL,NULL,NULL,NULL),('a0b1627a25b98f48ca19bfdccf037d54',NULL,'2019-12-30 04:21:38','2019-12-30 04:21:38','54.36.149.87',NULL,NULL,NULL,NULL),('a0edaff2cbe4ae41d2842db62d8ea345',NULL,'2019-09-02 18:58:08','2019-09-02 18:58:08','54.36.148.98',NULL,NULL,NULL,NULL),('a0ffb5463b9a0b3c65dc18ca5b2ad7f3',NULL,'2019-11-10 23:26:33','2019-11-10 23:26:33','54.36.150.92',NULL,NULL,NULL,NULL),('a0pj8lmj95r9v4au662lc261c3',NULL,'2021-05-27 23:49:05','2021-05-27 23:49:05','216.244.66.240',NULL,NULL,NULL,NULL),('a1c318313cc6b2fbeae4f1e69058fd8f',NULL,'2019-05-31 15:56:41','2019-05-31 15:56:41','54.36.150.187',NULL,NULL,NULL,NULL),('a20acf0afcc52fc3eda2803638e3c0a2',NULL,'2020-05-24 07:32:47','2020-05-24 07:32:47','216.244.66.240',NULL,NULL,NULL,NULL),('a26219890664b38b6c4cf738f4d26bfd',NULL,'2019-08-23 14:27:51','2019-08-23 14:27:51','54.36.149.57',NULL,NULL,NULL,NULL),('a3c03a2f8e028fd1b0e88ff406bf1415',NULL,'2019-05-26 20:37:12','2019-05-26 20:37:12','54.36.148.42',NULL,NULL,NULL,NULL),('a437458b8d341b59eb97756b012a78fa',NULL,'2019-07-26 02:43:36','2019-07-26 02:43:36','54.36.148.212',NULL,NULL,NULL,NULL),('a43d26c2fd6e83f485d5866e6b9cc68c',NULL,'2019-08-07 14:06:32','2019-08-07 14:06:32','54.36.149.51',NULL,NULL,NULL,NULL),('a455032d402fda06ac103fb51b08e66b',NULL,'2020-04-26 03:18:03','2020-04-26 03:18:03','54.36.148.70',NULL,NULL,NULL,NULL),('a46e540171245bf74c2a5029a3b382c1',NULL,'2020-04-14 21:59:44','2020-04-14 21:59:44','54.36.148.123',NULL,NULL,NULL,NULL),('a4748b632a4b928787a3943bf1cfe76c',NULL,'2019-05-18 17:42:10','2019-05-18 17:42:10','54.36.149.91',NULL,NULL,NULL,NULL),('a4792db5bd8befed9bd2123c7c2447ef',NULL,'2019-05-31 04:16:26','2019-05-31 04:16:26','54.36.150.63',NULL,NULL,NULL,NULL),('a567addd57afb48799ae28624911963e',NULL,'2019-05-29 14:11:38','2019-05-29 14:11:38','54.36.150.64',NULL,NULL,NULL,NULL),('a575f9222e2b181c19f489b6e3839162',NULL,'2019-06-10 16:09:21','2019-06-10 16:09:21','54.36.150.182',NULL,NULL,NULL,NULL),('a5abed6049bed49b6f45428a30d42be0',NULL,'2019-05-28 15:57:21','2019-05-28 15:57:21','54.36.148.23',NULL,NULL,NULL,NULL),('a5d6a25065446a60c0e605091e553ef0',NULL,'2020-02-25 22:50:16','2020-02-25 22:50:16','54.36.149.97',NULL,NULL,NULL,NULL),('a6182bfa0bbd8fdee32d4c4e7f93207a',NULL,'2019-07-26 12:57:26','2019-07-26 12:57:26','54.36.148.38',NULL,NULL,NULL,NULL),('a6b5a1221050b50a8f899fa014a48f5a',NULL,'2019-12-24 13:30:54','2019-12-24 13:30:54','54.36.150.151',NULL,NULL,NULL,NULL),('a6e8fa7021e9f265d661beff831d1ec3',NULL,'2019-09-05 00:02:48','2019-09-05 00:02:48','54.36.150.16',NULL,NULL,NULL,NULL),('a6f2a0b9390ab596ae4349c4940d09f4',NULL,'2019-06-10 07:01:13','2019-06-10 07:01:13','54.36.150.173',NULL,NULL,NULL,NULL),('a721d2cdc97db579143cd234ed2f354b',NULL,'2020-04-30 19:55:26','2020-04-30 19:55:26','54.36.148.118',NULL,NULL,NULL,NULL),('a727ec8d3c74755350599af5df02e4e6',NULL,'2020-02-01 14:32:08','2020-02-01 14:32:08','54.36.150.142',NULL,NULL,NULL,NULL),('a73f9c1c260c61d5d10576fdc6c27e59',NULL,'2019-07-23 07:00:16','2019-07-23 07:00:16','54.36.150.1',NULL,NULL,NULL,NULL),('a76ce2e7b9eee28ed969125645d7d51d',NULL,'2019-05-31 16:59:23','2019-05-31 16:59:23','54.36.150.181',NULL,NULL,NULL,NULL),('a7de5a965983a2274ba9cb168c64048a',NULL,'2019-05-31 08:58:54','2019-05-31 08:58:54','54.36.148.174',NULL,NULL,NULL,NULL),('a836616f88285f182d9113e01e57d2aa',NULL,'2019-07-29 06:47:08','2019-07-29 06:47:08','54.36.150.69',NULL,NULL,NULL,NULL),('a8cee66a389009bdc4deb7bdca402b4c',NULL,'2020-05-24 18:17:26','2020-05-24 18:17:26','216.244.66.240',NULL,NULL,NULL,NULL),('a9a8b6f88e7fdf316097b5ebca53804d',NULL,'2019-10-03 00:47:51','2019-10-03 00:47:51','54.36.148.154',NULL,NULL,NULL,NULL),('aa40aa0bd213db472277f1ae4a0bb177',NULL,'2019-05-30 21:04:55','2019-05-30 21:04:55','54.36.150.142',NULL,NULL,NULL,NULL),('aa68ab36107b75245a41eab9d6e0ff13',NULL,'2020-04-30 22:08:00','2020-04-30 22:08:00','54.36.150.72',NULL,NULL,NULL,NULL),('aa71b23aec0650d04b321cd49bf49109',NULL,'2019-09-06 05:27:26','2019-09-06 05:27:26','54.36.150.99',NULL,NULL,NULL,NULL),('aa98eeaf1cdb117ba5981b6db3925d17',NULL,'2020-05-13 13:45:09','2020-05-13 13:45:09','54.36.149.33',NULL,NULL,NULL,NULL),('ab6c32025474750aeeb062ae2a9cdf07',NULL,'2019-06-11 10:14:10','2019-06-11 10:14:10','54.36.148.91',NULL,NULL,NULL,NULL),('ac23e1b3f0b274f14b39dfbb50030eb3',NULL,'2020-05-18 10:34:09','2020-05-18 10:34:09','54.36.150.20',NULL,NULL,NULL,NULL),('ac5d214adcaf284892edd6ddd2b873d3',NULL,'2020-01-18 20:41:37','2020-01-18 20:41:37','54.36.150.168',NULL,NULL,NULL,NULL),('ac7d77f2b1087c3547c6899e8688ec4e',NULL,'2019-11-11 11:57:21','2019-11-11 11:57:21','54.36.148.250',NULL,NULL,NULL,NULL),('ac9c916ea76ce01b03a6fae3c09ab7c0',NULL,'2019-07-25 14:01:05','2019-07-25 14:01:05','54.36.148.42',NULL,NULL,NULL,NULL),('ad0051308b80868daa22e308cb10d63b',NULL,'2019-05-31 22:31:32','2019-05-31 22:31:32','54.36.148.82',NULL,NULL,NULL,NULL),('ad750c8e3297cb041e9430334fffca79',NULL,'2020-02-20 12:31:33','2020-02-20 12:31:33','54.36.150.58',NULL,NULL,NULL,NULL),('ad7dc4b3c57fe131a3302d8c3fdf4719',NULL,'2020-04-09 06:24:30','2020-04-09 06:24:30','54.36.150.10',NULL,NULL,NULL,NULL),('adad79a404fd49b339200e29aeaee422',NULL,'2020-03-04 16:49:39','2020-03-04 16:49:39','54.36.148.74',NULL,NULL,NULL,NULL),('adbc54af8398c953c6ae3f4a9cfc0bef',NULL,'2019-11-05 12:37:01','2019-11-05 12:37:01','54.36.150.75',NULL,NULL,NULL,NULL),('aee3d61d94207b19b83653ed6101c248',NULL,'2019-12-09 10:52:14','2019-12-09 10:52:14','54.36.148.145',NULL,NULL,NULL,NULL),('af0bbb91eca999c2f39917d4d3057964',NULL,'2020-01-17 00:43:30','2020-01-17 00:43:30','54.36.150.22',NULL,NULL,NULL,NULL),('afb92a75cb8a895ef20a141539caf655',NULL,'2019-07-22 02:12:15','2019-07-22 02:12:15','54.36.148.54',NULL,NULL,NULL,NULL),('afd6f6729dee2a3105ab79c6a2392a80',NULL,'2019-09-13 17:54:17','2019-09-13 17:54:17','54.36.150.177',NULL,NULL,NULL,NULL),('afe53vi45t35v8889742s72c87',NULL,'2021-05-31 13:18:36','2021-05-31 13:18:36','216.244.66.240',NULL,NULL,NULL,NULL),('aff2651fad8f1372aa30b85cf74b30c0',NULL,'2019-10-11 17:44:04','2019-10-11 17:44:04','54.36.149.48',NULL,NULL,NULL,NULL),('asf77k2iovhfdntt66o4tlpi20',NULL,'2020-11-27 11:43:19','2020-11-27 11:43:19','216.244.66.240',NULL,NULL,NULL,NULL),('b162bb0fd1add9b259e5001c32c3ca82',NULL,'2019-05-31 08:47:57','2019-05-31 08:47:57','54.36.148.88',NULL,NULL,NULL,NULL),('b17c952f3ffe66e8e64843b494bb9873',NULL,'2019-10-13 14:02:25','2019-10-13 14:02:25','54.36.148.90',NULL,NULL,NULL,NULL),('b19c985c6db15bbba542a4a73acaf413',NULL,'2019-07-28 22:08:31','2019-07-28 22:08:31','54.36.150.156',NULL,NULL,NULL,NULL),('b1ed47d12c5f6a2f4f0fa54f50efbeb6',NULL,'2019-09-09 00:48:50','2019-09-09 00:48:50','54.36.149.35',NULL,NULL,NULL,NULL),('b1f1215ca20f6f1c4c4181d6e0bc5bb5',NULL,'2019-05-26 01:55:30','2019-05-26 01:55:30','54.36.149.53',NULL,NULL,NULL,NULL),('b25c4d7992dc7c53466d61b3ec2205db',NULL,'2019-05-25 16:46:59','2019-05-25 16:46:59','54.36.148.87',NULL,NULL,NULL,NULL),('b29fc30b6f6a547462cf9380e335adba',NULL,'2019-05-18 10:19:32','2019-05-18 10:19:32','54.36.148.254',NULL,NULL,NULL,NULL),('b34a38d337721e4963856d20c6ce9d13',NULL,'2019-05-31 17:13:02','2019-05-31 17:13:02','54.36.149.106',NULL,NULL,NULL,NULL),('b36fa777e7ef2f23d5cdd95a37fd8719',NULL,'2019-05-31 10:50:04','2019-05-31 10:50:04','54.36.148.217',NULL,NULL,NULL,NULL),('b3723a9755900de0e3a0397f969e7025',NULL,'2019-09-10 21:26:09','2019-09-10 21:26:09','54.36.150.122',NULL,NULL,NULL,NULL),('b37b4d4d9f62138e666864d15af31f80',NULL,'2019-08-28 21:45:43','2019-08-28 21:45:43','54.36.150.117',NULL,NULL,NULL,NULL),('b3988aafbe3895aece6a8c57c4744291',NULL,'2019-12-12 21:26:05','2019-12-12 21:26:05','54.36.149.49',NULL,NULL,NULL,NULL),('b3dfef0acb4ade6807a2d6f71ccc96dd',NULL,'2019-12-22 23:35:12','2019-12-22 23:35:12','54.36.150.74',NULL,NULL,NULL,NULL),('b3f8dc7a912ecad7b58a4e62c60ba35d',NULL,'2019-11-22 06:47:33','2019-11-22 06:47:33','54.36.148.198',NULL,NULL,NULL,NULL),('b48db5e5cf1d9bf90848355aa5751576',NULL,'2020-05-16 21:16:32','2020-05-16 21:16:32','54.36.150.49',NULL,NULL,NULL,NULL),('b4b1fb42f2cab45dab2fdfd66a51e7e4',NULL,'2019-08-27 02:31:49','2019-08-27 02:31:49','54.36.148.123',NULL,NULL,NULL,NULL),('b4f6320895c57ee26525575539dcb5d6',NULL,'2019-05-31 16:02:56','2019-05-31 16:02:56','54.36.149.20',NULL,NULL,NULL,NULL),('b556f772debf0ddf852670a92076b265',NULL,'2020-04-07 04:48:38','2020-04-07 04:48:38','54.36.150.8',NULL,NULL,NULL,NULL),('b55e0228ab4f463890a6e338555ee64b',NULL,'2019-05-31 18:17:45','2019-05-31 18:17:45','54.36.150.157',NULL,NULL,NULL,NULL),('b587edec93c5cace4822580e7debe8e0',NULL,'2019-05-25 12:00:36','2019-05-25 12:00:36','54.36.148.41',NULL,NULL,NULL,NULL),('b5d05cc23dd9fdb23ccd9c4b3d50e18f',NULL,'2020-03-04 04:43:02','2020-03-04 04:43:02','54.36.150.27',NULL,NULL,NULL,NULL),('b5d66b7720788f4370737ac25370d2ca',NULL,'2019-11-08 00:36:21','2019-11-08 00:36:21','54.36.150.108',NULL,NULL,NULL,NULL),('b5f534f26ca4fade4a2b9ee4d8a5ff06',NULL,'2020-05-13 18:14:30','2020-05-13 18:14:30','54.36.148.188',NULL,NULL,NULL,NULL),('b61f19b8acac56587f74ef5ee0e1c264',NULL,'2019-09-28 08:25:11','2019-09-28 08:25:11','54.36.148.68',NULL,NULL,NULL,NULL),('b64faab082064ff65a2cd3ef6642decd',NULL,'2019-12-15 07:02:17','2019-12-15 07:02:17','54.36.149.83',NULL,NULL,NULL,NULL),('b68892e080b6aac6790ef766f6d514e0',NULL,'2019-12-15 06:48:06','2019-12-15 06:48:06','54.36.150.78',NULL,NULL,NULL,NULL),('b6e5c53d879fac32beea20d9917669b7',NULL,'2019-11-16 14:14:04','2019-11-16 14:14:04','54.36.150.78',NULL,NULL,NULL,NULL),('b72fdf8572209219475e29a5a28db2e5',NULL,'2019-12-17 05:29:20','2019-12-17 05:29:20','54.36.148.167',NULL,NULL,NULL,NULL),('b73961a3b442a99bacbba77683a37e2c',NULL,'2020-01-25 09:09:32','2020-01-25 09:09:32','54.36.150.69',NULL,NULL,NULL,NULL),('b82296cc5f2359a0d42ed1e21dd87469',NULL,'2019-11-19 19:41:30','2019-11-19 19:41:30','54.36.149.46',NULL,NULL,NULL,NULL),('b8bfe9835b18726652d00d2de4dbdb97',NULL,'2019-10-07 01:48:15','2019-10-07 01:48:15','54.36.148.12',NULL,NULL,NULL,NULL),('ba190108684cb7c15058543f909cc0cb',NULL,'2019-07-24 20:55:57','2019-07-24 20:55:57','54.36.148.188',NULL,NULL,NULL,NULL),('ba2044d3d85bad01d1d7f7f1e34a3483',NULL,'2020-05-16 18:14:00','2020-05-16 18:14:00','54.36.150.151',NULL,NULL,NULL,NULL),('babf9cf53110ba6289689163333e88df',NULL,'2019-08-03 22:09:07','2019-08-03 22:09:07','54.36.150.59',NULL,NULL,NULL,NULL),('bb1ea5611900fd97f94ac966800c1cda',NULL,'2020-02-22 22:21:43','2020-02-22 22:21:43','54.36.149.30',NULL,NULL,NULL,NULL),('bb2becd1b77a27448dec3c2aa9b6afa1',NULL,'2019-05-18 19:06:20','2019-05-18 19:06:20','54.36.148.195',NULL,NULL,NULL,NULL),('bbbfd0889fff1e8bdb0013396c467674',NULL,'2020-01-24 05:21:39','2020-01-24 05:21:39','54.36.148.41',NULL,NULL,NULL,NULL),('bc5107fa4c367acb995c9ff171f40b49',NULL,'2019-06-13 07:05:09','2019-06-13 07:05:09','54.36.150.119',NULL,NULL,NULL,NULL),('bccf3bc071c83640e6ba00df4158cd0b',NULL,'2019-07-27 08:00:56','2019-07-27 08:00:56','54.36.148.137',NULL,NULL,NULL,NULL),('bd3b5baad71fd1525f7a1a64df52b867',NULL,'2020-03-04 16:10:25','2020-03-04 16:10:25','54.36.148.126',NULL,NULL,NULL,NULL),('bd66e5f466f6ddeea9ab7e5a3a35cb54',NULL,'2019-10-18 11:43:06','2019-10-18 11:43:06','54.36.150.84',NULL,NULL,NULL,NULL),('bd84d81bd409616ea0ed175e356725c2',NULL,'2019-10-01 08:57:47','2019-10-01 08:57:47','54.36.148.17',NULL,NULL,NULL,NULL),('bdedee65a7ebfc2677c8b091bcb67b00',NULL,'2019-07-24 13:06:36','2019-07-24 13:06:36','54.36.148.104',NULL,NULL,NULL,NULL),('be42d0de327173761eb18852cc2cbcb0',NULL,'2018-09-23 01:22:36','2018-09-23 01:22:36',NULL,NULL,NULL,NULL,NULL),('bf0cbc4390d4f27ee2251fca6301db60',NULL,'2019-06-13 16:49:19','2019-06-13 16:49:19','54.36.148.184',NULL,NULL,NULL,NULL),('bf235dfc6d3dc738c4186e7a06cf25ad',NULL,'2019-05-18 14:45:53','2019-05-18 14:45:53','54.36.148.79',NULL,NULL,NULL,NULL),('bf4ea3b6544715c97d4053c9aa8f8d7b',NULL,'2020-03-18 00:03:37','2020-03-18 00:03:37','54.36.150.122',NULL,NULL,NULL,NULL),('bf73a139e6b1e22c78e01aaac318b9cf',NULL,'2020-03-04 08:41:30','2020-03-04 08:41:30','54.36.148.131',NULL,NULL,NULL,NULL),('bffccca5ba20207c038a438d4089845c',NULL,'2020-05-07 14:27:22','2020-05-07 14:27:22','54.36.148.177',NULL,NULL,NULL,NULL),('bhe3d1u4fddocjh9f091n8pfp4',NULL,'2021-03-01 20:17:30','2021-03-01 20:17:30','216.244.66.240',NULL,NULL,NULL,NULL),('bmktkbv4f0ftsbs3ji295pf6h6',NULL,'2021-02-27 01:33:39','2021-02-27 01:33:39','216.244.66.240',NULL,NULL,NULL,NULL),('c06a8eb64c3855586881cf64c51bd893',NULL,'2019-12-10 09:55:35','2019-12-10 09:55:35','54.36.150.172',NULL,NULL,NULL,NULL),('c0931b887709c39e3bfada371f4dc4b2',NULL,'2019-07-21 21:16:26','2019-07-21 21:16:26','54.36.150.89',NULL,NULL,NULL,NULL),('c09e144d364cf8be9aad3c24fdd2cd24',NULL,'2020-03-01 20:39:48','2020-03-01 20:39:48','54.36.149.9',NULL,NULL,NULL,NULL),('c0d00b40160ecabb42ce2457b3e120e3',NULL,'2019-11-08 21:25:12','2019-11-08 21:25:12','54.36.148.28',NULL,NULL,NULL,NULL),('c12b9329bf27546692bd1bb4f92fac0a',NULL,'2019-10-15 11:32:10','2019-10-15 11:32:10','54.36.149.106',NULL,NULL,NULL,NULL),('c180598889a9f03e7a90c6f55b788652',NULL,'2020-01-28 21:19:50','2020-01-28 21:19:50','54.36.150.60',NULL,NULL,NULL,NULL),('c1d4bca882bd77f46564dec10eb3d041',NULL,'2020-05-24 06:44:33','2020-05-24 06:44:33','216.244.66.240',NULL,NULL,NULL,NULL),('c21089c890e7ebb71499f011afe13538',NULL,'2019-08-30 12:59:56','2019-08-30 12:59:56','54.36.148.12',NULL,NULL,NULL,NULL),('c2cf47e69f409e70841f06c2f909b1c7',NULL,'2019-07-23 21:27:39','2019-07-23 21:27:39','54.36.150.42',NULL,NULL,NULL,NULL),('c2qd1necb8askbg9grvg9j1i52',NULL,'2020-11-29 12:40:03','2020-11-29 12:40:03','216.244.66.240',NULL,NULL,NULL,NULL),('c364cf6d9d97da063795c631f0f47f8b',NULL,'2020-04-18 09:55:28','2020-04-18 09:55:28','54.36.150.94',NULL,NULL,NULL,NULL),('c3c520052951182f5b91a20ff7441082',NULL,'2019-05-18 07:18:33','2019-05-18 07:18:33','54.36.148.150',NULL,NULL,NULL,NULL),('c3e0d9a723dfb0542a03997e9bf47cfe',NULL,'2019-05-19 00:41:38','2019-05-19 00:41:38','54.36.148.49',NULL,NULL,NULL,NULL),('c43d43800101b5a0f989dbe0b7bb246e',NULL,'2019-12-22 01:27:09','2019-12-22 01:27:09','54.36.148.156',NULL,NULL,NULL,NULL),('c4775ec930f3c8a195877ed14e48c7ed',NULL,'2020-01-30 12:30:54','2020-01-30 12:30:54','54.36.148.35',NULL,NULL,NULL,NULL),('c489663aadd2c657a2a882cc7d0890c3',NULL,'2019-05-31 02:28:30','2019-05-31 02:28:30','54.36.149.44',NULL,NULL,NULL,NULL),('c48c03e72ec707f327be841a3be73ebb',NULL,'2019-08-14 08:44:53','2019-08-14 08:44:53','54.36.150.110',NULL,NULL,NULL,NULL),('c51fd68235626956d881af1102c7775a',NULL,'2019-10-05 12:50:46','2019-10-05 12:50:46','54.36.148.184',NULL,NULL,NULL,NULL),('c57d53493614308e4781879acfa7f7b3',NULL,'2020-05-13 17:31:05','2020-05-13 17:31:05','54.36.149.76',NULL,NULL,NULL,NULL),('c5ab7fff5ffe8cd1c4100001e52ee123',NULL,'2019-09-02 19:37:57','2019-09-02 19:37:57','54.36.150.171',NULL,NULL,NULL,NULL),('c60e73b4db2361aedfe51fbf407b66bc',NULL,'2019-10-07 02:50:14','2019-10-07 02:50:14','54.36.148.29',NULL,NULL,NULL,NULL),('c6491b9496f9a81b983cf957a28ecb8d',NULL,'2019-06-01 15:27:26','2019-06-01 15:27:26','54.36.150.43',NULL,NULL,NULL,NULL),('c674f0d925bafc9f25332642d577afd3',NULL,'2019-10-11 07:11:38','2019-10-11 07:11:38','54.36.148.51',NULL,NULL,NULL,NULL),('c679527802bbb3a420b99142ef297c16',NULL,'2020-02-27 15:08:19','2020-02-27 15:08:19','54.36.150.112',NULL,NULL,NULL,NULL),('c6905063165962c3aa8ca6178e9a8d56',NULL,'2019-06-15 23:21:10','2019-06-15 23:21:10','54.36.148.85',NULL,NULL,NULL,NULL),('c6fedcadf132f82f49d667e99a2bd99b',NULL,'2019-06-01 16:02:47','2019-06-01 16:02:47','54.36.150.113',NULL,NULL,NULL,NULL),('c74d0bf6f321a633deb5acdede3d15e7',NULL,'2020-03-05 03:22:13','2020-03-05 03:22:13','54.36.148.132',NULL,NULL,NULL,NULL),('c78f5bac6985173c24bb9febd0692469',NULL,'2020-04-19 05:35:05','2020-04-19 05:35:05','54.36.150.175',NULL,NULL,NULL,NULL),('c81ccfff1d8d80097122072b89f0f211',NULL,'2019-12-01 03:22:39','2019-12-01 03:22:39','54.36.148.215',NULL,NULL,NULL,NULL),('c89ba48223d63e9e4971d4e75bba265e',NULL,'2020-05-16 19:45:29','2020-05-16 19:45:29','54.36.150.31',NULL,NULL,NULL,NULL),('c8c3b6a28a78bc757dc05ea08319dee4',NULL,'2019-10-16 02:07:26','2019-10-16 02:07:26','54.36.148.172',NULL,NULL,NULL,NULL),('c8e2df3aa06b080d3bf9013f28fa0043',NULL,'2019-09-29 02:13:10','2019-09-29 02:13:10','54.36.150.52',NULL,NULL,NULL,NULL),('c96469e0fb00e9ba53899648a9bd1fec',NULL,'2020-04-11 06:50:09','2020-04-11 06:50:09','54.36.150.144',NULL,NULL,NULL,NULL),('c96ff057d0bf4afbb5825eb3e58c9fec',NULL,'2019-10-04 13:07:54','2019-10-04 13:07:54','54.36.150.140',NULL,NULL,NULL,NULL),('c9868c2709a0dfba4255d3a0c54e8e3d',NULL,'2020-04-12 06:38:58','2020-04-12 06:38:58','54.36.150.72',NULL,NULL,NULL,NULL),('c99078b2835a2c578ca2635d298f43c5',NULL,'2019-06-13 06:05:49','2019-06-13 06:05:49','54.36.150.48',NULL,NULL,NULL,NULL),('ca3f5efcb329d5ec5ebbce8def9d5159',NULL,'2020-03-20 23:30:43','2020-03-20 23:30:43','54.36.150.75',NULL,NULL,NULL,NULL),('ca848391f948ef6c50045e5580c4ac86',NULL,'2020-01-16 19:43:22','2020-01-16 19:43:22','54.36.150.61',NULL,NULL,NULL,NULL),('cacf1b62c6d976f0f7ad9e9b35329312',NULL,'2020-03-24 12:47:18','2020-03-24 12:47:18','54.36.149.68',NULL,NULL,NULL,NULL),('cb6cabc1a54827830ea2454645ade8b7',NULL,'2019-08-29 13:53:36','2019-08-29 13:53:36','54.36.148.243',NULL,NULL,NULL,NULL),('cbn333k9rphp4ef1343eshrve6',NULL,'2021-11-27 11:34:25','2021-11-27 11:34:25','216.244.66.240',NULL,NULL,NULL,NULL),('cc5cbb85a1e9ac481f1cfb8b6f4b5cbc',NULL,'2019-12-18 04:47:01','2019-12-18 04:47:01','54.36.148.7',NULL,NULL,NULL,NULL),('cc5d947c4cdd2336c91d7517df30c26c',NULL,'2020-05-05 23:29:36','2020-05-05 23:29:36','54.36.148.65',NULL,NULL,NULL,NULL),('ccbab6b22d2aa43a615076371e71bee0',NULL,'2019-11-04 15:36:41','2019-11-04 15:36:41','54.36.150.24',NULL,NULL,NULL,NULL),('ccdb9ef50aaeaa76264aab0270f031ba',NULL,'2020-05-28 08:08:37','2020-05-28 08:08:37','216.244.66.240',NULL,NULL,NULL,NULL),('ccf219952ee665c4e1ae6f428f43c0ba',NULL,'2019-11-26 18:54:53','2019-11-26 18:54:53','54.36.150.65',NULL,NULL,NULL,NULL),('cd4834434f9fe270a7f661f87ff5a71a',NULL,'2020-02-08 00:25:23','2020-02-08 00:25:23','54.36.150.162',NULL,NULL,NULL,NULL),('cd4e1c03bc030e6ab7456108b1687f6f',NULL,'2020-03-29 21:18:26','2020-03-29 21:18:26','54.36.149.24',NULL,NULL,NULL,NULL),('cd52226f218818b3dd7074126bea76e9',NULL,'2019-05-31 04:53:12','2019-05-31 04:53:12','54.36.148.243',NULL,NULL,NULL,NULL),('cdf4e186c5b396a6cb11bfca905f50d4',NULL,'2019-11-18 17:23:51','2019-11-18 17:23:51','54.36.150.186',NULL,NULL,NULL,NULL),('cdff5746369555b6a8102176f77c9cff',NULL,'2019-05-25 11:40:00','2019-05-25 11:40:00','54.36.148.199',NULL,NULL,NULL,NULL),('cehspvrfs31tvod6og6kn649p4',NULL,'2021-06-11 08:12:53','2021-06-11 08:12:53','216.244.66.240',NULL,NULL,NULL,NULL),('cf507b7e7057324ca50ca0bf879afa7a',NULL,'2019-07-27 05:08:51','2019-07-27 05:08:51','54.36.149.31',NULL,NULL,NULL,NULL),('cf74b72428aa8f32af2644618e14d6ef',NULL,'2019-12-18 17:33:38','2019-12-18 17:33:38','54.36.150.120',NULL,NULL,NULL,NULL),('d0021d6dfd9ac507d24f6e4b43d3575b',NULL,'2019-05-26 07:03:33','2019-05-26 07:03:33','54.36.149.52',NULL,NULL,NULL,NULL),('d0069928ea6163619fbf2b4a5ad36c76',NULL,'2019-11-11 00:56:43','2019-11-11 00:56:43','54.36.150.145',NULL,NULL,NULL,NULL),('d032ca1c6dfba0a02baac5fb610558da',NULL,'2019-08-28 23:10:50','2019-08-28 23:10:50','54.36.148.14',NULL,NULL,NULL,NULL),('d072dd82a88d959484aefbb4e3d9d237',NULL,'2019-09-06 10:43:17','2019-09-06 10:43:17','54.36.149.61',NULL,NULL,NULL,NULL),('d09fe8b9f3addf5502345b08a80cf08a',NULL,'2019-12-14 20:01:23','2019-12-14 20:01:23','54.36.149.42',NULL,NULL,NULL,NULL),('d0ca6868a0ff9cfc4c88fad3abec5d71',NULL,'2020-01-08 21:28:27','2020-01-08 21:28:27','54.36.148.220',NULL,NULL,NULL,NULL),('d0ce7da973c18ad9304742ddca5c1fcd',NULL,'2019-08-23 07:15:20','2019-08-23 07:15:20','54.36.148.3',NULL,NULL,NULL,NULL),('d0d623630ae93dd8b57c8eebb3f4f51d',NULL,'2020-01-18 10:13:13','2020-01-18 10:13:13','54.36.148.163',NULL,NULL,NULL,NULL),('d115ba00f63958cb7719a8893cc19ebc',NULL,'2019-09-28 15:28:16','2019-09-28 15:28:16','54.36.149.42',NULL,NULL,NULL,NULL),('d1c14a2c763bb58c6a9e5e76cf7963d9',NULL,'2019-07-23 15:49:47','2019-07-23 15:49:47','54.36.148.241',NULL,NULL,NULL,NULL),('d1d59242b93f0e6c3d46933916c4e308',NULL,'2019-12-09 23:50:38','2019-12-09 23:50:38','54.36.149.105',NULL,NULL,NULL,NULL),('d1d81027cc37d2eb8174f21f03190eaa',NULL,'2020-05-19 06:22:16','2020-05-19 06:22:16','54.36.150.44',NULL,NULL,NULL,NULL),('d200143386f371492cf0857873569ef1',NULL,'2019-07-26 09:06:28','2019-07-26 09:06:28','54.36.150.73',NULL,NULL,NULL,NULL),('d210c2a4eab4480345fc8a959f2355a8',NULL,'2020-05-28 08:09:57','2020-05-28 08:09:57','216.244.66.240',NULL,NULL,NULL,NULL),('d28744eec47885702763eae88a5b6f80',NULL,'2019-12-24 08:43:22','2019-12-24 08:43:22','54.36.149.50',NULL,NULL,NULL,NULL),('d2941719c562b0a5b09c297f93ee41ab',NULL,'2019-06-15 15:12:22','2019-06-15 15:12:22','51.255.65.46',NULL,NULL,NULL,NULL),('d2b9980ae27ece23891956099e21afe1',NULL,'2019-06-12 15:27:47','2019-06-12 15:27:47','54.36.148.114',NULL,NULL,NULL,NULL),('d2d6bc3daa7e7477767b611e7d82c3d4',NULL,'2020-05-17 20:22:39','2020-05-17 20:22:39','54.36.149.106',NULL,NULL,NULL,NULL),('d3c3073217fa3f006bf35b50fac9d80a',NULL,'2019-11-09 08:16:59','2019-11-09 08:16:59','54.36.148.233',NULL,NULL,NULL,NULL),('d3cc2a46d8d6fcdd53042c7552f26140',NULL,'2019-06-14 09:52:36','2019-06-14 09:52:36','54.36.148.108',NULL,NULL,NULL,NULL),('d3e1aba4e773cace49988c7f88f24a0d',NULL,'2019-09-11 23:33:55','2019-09-11 23:33:55','54.36.148.132',NULL,NULL,NULL,NULL),('d41086cf901e2ca23c5d3cd6f1bf4df6',NULL,'2019-07-31 17:50:12','2019-07-31 17:50:12','54.36.148.166',NULL,NULL,NULL,NULL),('d47107cfdba58ff56415899798e16794',NULL,'2019-06-14 06:59:49','2019-06-14 06:59:49','54.36.150.163',NULL,NULL,NULL,NULL),('d48374fda823652baa36ba1326469d70',NULL,'2019-09-05 01:46:16','2019-09-05 01:46:16','54.36.148.118',NULL,NULL,NULL,NULL),('d48a3424607cb1e6dbff84c730144b74',NULL,'2019-11-03 04:58:25','2019-11-03 04:58:25','54.36.150.32',NULL,NULL,NULL,NULL),('d49152fc85dfb121ed6373a1fe4f69b4',NULL,'2019-08-27 01:02:01','2019-08-27 01:02:01','54.36.149.70',NULL,NULL,NULL,NULL),('d49c47edc4f7d98bdf3ac362bdbfb42b',NULL,'2019-08-27 23:32:57','2019-08-27 23:32:57','54.36.148.68',NULL,NULL,NULL,NULL),('d4a40dbbd03fa0fd4a8a59ebf8862586',NULL,'2019-12-05 22:36:39','2019-12-05 22:36:39','54.36.148.254',NULL,NULL,NULL,NULL),('d4b538d00fd312bd90c3e19ce8fc72a1',NULL,'2019-10-31 04:57:57','2019-10-31 04:57:57','54.36.148.53',NULL,NULL,NULL,NULL),('d51f4de65f9adf03d4a6fee5ec74e49b',NULL,'2019-07-18 18:56:19','2019-07-18 18:56:19','54.36.150.60',NULL,NULL,NULL,NULL),('d5255931196bbb4f707fea5f2576ff43',NULL,'2020-01-27 14:15:32','2020-01-27 14:15:32','54.36.150.61',NULL,NULL,NULL,NULL),('d52fe0856c59dc9189daa72cff811997',NULL,'2019-10-09 23:29:58','2019-10-09 23:29:58','54.36.150.127',NULL,NULL,NULL,NULL),('d5a0ffd864a08bcf4cf1322b5c35faf1',NULL,'2019-07-21 21:53:40','2019-07-21 21:53:40','54.36.150.141',NULL,NULL,NULL,NULL),('d5d399b190499052dd1026134018c919',NULL,'2019-07-30 15:29:13','2019-07-30 15:29:13','54.36.148.16',NULL,NULL,NULL,NULL),('d6fe78fb30dab0061919a4d53fa0a035',NULL,'2019-06-10 10:27:32','2019-06-10 10:27:32','54.36.150.70',NULL,NULL,NULL,NULL),('d7d48cfa4133918ba283c434853c574b',NULL,'2020-05-15 00:32:07','2020-05-15 00:32:07','54.36.150.71',NULL,NULL,NULL,NULL),('d83bvdd2kijkdh696frf96pds2',NULL,'2021-03-06 09:15:19','2021-03-06 09:15:19','216.244.66.240',NULL,NULL,NULL,NULL),('d841a859beddc59a063f8b3a36e7cd7a',NULL,'2020-05-06 16:54:24','2020-05-06 16:54:24','54.36.150.78',NULL,NULL,NULL,NULL),('d85iea0nrtp1a6puorecu79ko2',NULL,'2021-03-02 23:18:42','2021-03-02 23:18:42','216.244.66.240',NULL,NULL,NULL,NULL),('d8e68544f8455e556e1fadd80901dca9',NULL,'2020-01-10 06:06:19','2020-01-10 06:06:19','54.36.150.168',NULL,NULL,NULL,NULL),('d95f068a0652d2a76c762b772634e6b4',NULL,'2020-03-04 23:31:31','2020-03-04 23:31:31','54.36.150.55',NULL,NULL,NULL,NULL),('d97c1ed42485a73dbb6c9057a309d2da',NULL,'2019-05-26 00:14:52','2019-05-26 00:14:52','54.36.148.59',NULL,NULL,NULL,NULL),('d9bo9gbc92a89v6p4kif5ecsr0',NULL,'2020-08-30 05:58:54','2020-08-30 05:58:54','216.244.66.240',NULL,NULL,NULL,NULL),('d9db2631bc1cc8485b9422cdf165bcba',NULL,'2019-05-18 21:51:07','2019-05-18 21:51:07','54.36.148.240',NULL,NULL,NULL,NULL),('da4c3ce4da52ef4a2fbbffd28e728d65',NULL,'2019-12-10 13:06:38','2019-12-10 13:06:38','54.36.149.28',NULL,NULL,NULL,NULL),('da95fd48cd67f518dcd8cb97f1a9b0b8',NULL,'2020-02-27 22:53:29','2020-02-27 22:53:29','54.36.150.74',NULL,NULL,NULL,NULL),('dcd268442780c68eab35962f4e515143',NULL,'2019-05-27 09:13:29','2019-05-27 09:13:29','54.36.149.68',NULL,NULL,NULL,NULL),('dd0326d9bc46a8e55370db718617aef1',NULL,'2020-04-13 07:55:54','2020-04-13 07:55:54','54.36.150.63',NULL,NULL,NULL,NULL),('dd38f3a2bde3a474f77b8fc8a86cd303',NULL,'2020-05-25 20:38:56','2020-05-25 20:38:56','216.244.66.240',NULL,NULL,NULL,NULL),('dde5bebcd9700325eea2262bc0518759',NULL,'2019-07-31 01:04:30','2019-07-31 01:04:30','54.36.148.246',NULL,NULL,NULL,NULL),('de4a0ac979c96d63f227cf5038d3acc6',NULL,'2019-09-02 03:33:19','2019-09-02 03:33:19','54.36.148.109',NULL,NULL,NULL,NULL),('de7b195e592fd9e360ae858157d1de14',NULL,'2019-09-07 20:55:43','2019-09-07 20:55:43','54.36.150.25',NULL,NULL,NULL,NULL),('de9c2eced8fc356edf31aa53ad6ee77e',NULL,'2019-08-30 04:40:15','2019-08-30 04:40:15','54.36.150.62',NULL,NULL,NULL,NULL),('dead2c037c0a3bbf322b08688854d718',NULL,'2020-01-25 19:59:49','2020-01-25 19:59:49','54.36.148.16',NULL,NULL,NULL,NULL),('dece96861d0ba7f11724517d49f90291',NULL,'2020-01-17 17:08:46','2020-01-17 17:08:46','54.36.150.32',NULL,NULL,NULL,NULL),('dee8cdb76825e8f1d741d4da4089b947',NULL,'2019-11-13 20:11:16','2019-11-13 20:11:16','54.36.150.108',NULL,NULL,NULL,NULL),('df60739138611a0a731b8b2e9eab169a',NULL,'2019-05-28 01:36:44','2019-05-28 01:36:44','54.36.150.117',NULL,NULL,NULL,NULL),('disb37ue3ou973r18a2i9m9pt7',NULL,'2021-12-07 12:49:52','2021-12-07 12:49:52','216.244.66.240',NULL,NULL,NULL,NULL),('ds8eck78rthere2cpm6j1kbjh5',NULL,'2021-06-04 12:46:05','2021-06-04 12:46:05','216.244.66.240',NULL,NULL,NULL,NULL),('e006dc5063e85ff2b9559ce39f0b5aa2',NULL,'2019-12-31 01:32:36','2019-12-31 01:32:36','54.36.150.135',NULL,NULL,NULL,NULL),('e05b48ea5b18d882645f2ba289c034f0',NULL,'2019-11-16 04:35:22','2019-11-16 04:35:22','54.36.148.73',NULL,NULL,NULL,NULL),('e09daf33cae6875e119383e06031fed3',NULL,'2020-04-29 16:23:16','2020-04-29 16:23:16','54.36.148.19',NULL,NULL,NULL,NULL),('e0a001a6c4490d7168d5b4e1adaff592',NULL,'2020-05-13 23:54:17','2020-05-13 23:54:17','54.36.150.145',NULL,NULL,NULL,NULL),('e160c77373bd481df9a003a20423f88f',NULL,'2019-05-25 13:42:52','2019-05-25 13:42:52','54.36.149.84',NULL,NULL,NULL,NULL),('e1bf944ebb9a7835b48d5d8f12c4224e',NULL,'2019-12-23 07:38:34','2019-12-23 07:38:34','54.36.148.249',NULL,NULL,NULL,NULL),('e22299c80750438a6ddc42794bc3e3d5',NULL,'2019-08-31 04:16:45','2019-08-31 04:16:45','54.36.150.114',NULL,NULL,NULL,NULL),('e312e9b299d3d60676b1c47bef898ac1',NULL,'2019-05-28 03:48:27','2019-05-28 03:48:27','54.36.148.59',NULL,NULL,NULL,NULL),('e358b28c98b3ac06c320283932d0b288',NULL,'2019-05-26 05:56:26','2019-05-26 05:56:26','54.36.149.30',NULL,NULL,NULL,NULL),('e378d36567617c8606a661f169b67fe5',NULL,'2020-01-01 06:51:05','2020-01-01 06:51:05','54.36.148.226',NULL,NULL,NULL,NULL),('e439afcdc786b563b107a0fa185ade7c',NULL,'2019-11-12 13:26:47','2019-11-12 13:26:47','54.36.150.13',NULL,NULL,NULL,NULL),('e440095ad661ca138db5b914bcbc05ed',NULL,'2019-11-05 16:19:33','2019-11-05 16:19:33','54.36.149.30',NULL,NULL,NULL,NULL),('e467d973a2277c2f7e091ade56ce7227',NULL,'2019-05-26 12:44:08','2019-05-26 12:44:08','54.36.148.31',NULL,NULL,NULL,NULL),('e4684939d09d0054bd1bc6c6adbdc37c',NULL,'2020-04-09 17:35:59','2020-04-09 17:35:59','54.36.150.145',NULL,NULL,NULL,NULL),('e520650d2829b987ed40a9618fee8258',NULL,'2019-12-05 04:00:40','2019-12-05 04:00:40','54.36.148.16',NULL,NULL,NULL,NULL),('e5971b3c4af118db9995d90e7d523c1a',NULL,'2020-05-19 19:32:07','2020-05-19 19:32:07','54.36.150.21',NULL,NULL,NULL,NULL),('e5cd5e21a9a1446ba0eecf836bbd2815',NULL,'2018-09-23 01:22:35','2018-09-23 01:22:35',NULL,NULL,NULL,NULL,NULL),('e5ee29f03a58f4d8191b78b184af8aa6',NULL,'2019-05-26 07:55:40','2019-05-26 07:55:40','54.36.148.55',NULL,NULL,NULL,NULL),('e6e0cec54b6b09cf8a4046571787d400',NULL,'2020-02-28 03:28:29','2020-02-28 03:28:29','54.36.150.64',NULL,NULL,NULL,NULL),('e70241d182919eb689adf0ca97d4c1b1',NULL,'2019-05-27 15:04:51','2019-05-27 15:04:51','54.36.148.156',NULL,NULL,NULL,NULL),('e765301035f2cc59526daffb5728684c',NULL,'2020-03-30 18:14:18','2020-03-30 18:14:18','54.36.148.114',NULL,NULL,NULL,NULL),('e7b8bb284630da8450d87fc5e37869e9',NULL,'2019-05-18 20:37:38','2019-05-18 20:37:38','54.36.149.47',NULL,NULL,NULL,NULL),('e7bd4dac1b89b9fa9c217991fb15de0f',NULL,'2019-11-19 08:49:29','2019-11-19 08:49:29','54.36.148.28',NULL,NULL,NULL,NULL),('e7d85ea52e080484c84794a85866ce55',NULL,'2019-07-30 04:33:06','2019-07-30 04:33:06','54.36.150.133',NULL,NULL,NULL,NULL),('e7f21fbce712fcbea008b125c7591e09',NULL,'2019-05-31 04:07:04','2019-05-31 04:07:04','54.36.148.202',NULL,NULL,NULL,NULL),('e80892e298e865523cd1a617641b6878',NULL,'2020-04-16 13:04:25','2020-04-16 13:04:25','54.36.149.34',NULL,NULL,NULL,NULL),('e84dde3a5b3ced21226ddd8416426780',NULL,'2019-05-31 04:37:08','2019-05-31 04:37:08','54.36.150.54',NULL,NULL,NULL,NULL),('e8q8ao30bqud2qak9l54ftctj4',NULL,'2021-09-01 04:28:36','2021-09-01 04:28:36','216.244.66.240',NULL,NULL,NULL,NULL),('e93260a2f8fd8d5171ba63414be1a5c7',NULL,'2020-02-27 18:52:09','2020-02-27 18:52:09','54.36.150.102',NULL,NULL,NULL,NULL),('e952b54e3cd9872d7b9aaf2c440491ea',NULL,'2019-12-13 18:42:23','2019-12-13 18:42:23','54.36.150.111',NULL,NULL,NULL,NULL),('e9bf352e988451159d74748688b11b07',NULL,'2019-07-07 23:45:47','2019-07-07 23:45:47','54.36.148.119',NULL,NULL,NULL,NULL),('e9fd549a4d58343cb71928c8210a80a9',NULL,'2019-05-26 04:20:48','2019-05-26 04:20:48','54.36.148.197',NULL,NULL,NULL,NULL),('ea4d1bc707959722260146bf9c10dffd',NULL,'2020-03-31 04:39:43','2020-03-31 04:39:43','54.36.148.61',NULL,NULL,NULL,NULL),('eaaa2f1bfeffcc978eaf35a27a64043d',NULL,'2019-10-08 17:06:18','2019-10-08 17:06:18','54.36.150.59',NULL,NULL,NULL,NULL),('eb6e8268c97aab7f57d05fdb305372ac',NULL,'2020-02-20 04:45:53','2020-02-20 04:45:53','54.36.150.14',NULL,NULL,NULL,NULL),('eb6f6441a8965d27c77633d6fd1e1f5e',NULL,'2019-06-13 21:46:57','2019-06-13 21:46:57','54.36.150.89',NULL,NULL,NULL,NULL),('eb8057db44f24eac4f7c048c0fb0c0ef',NULL,'2019-05-25 09:48:01','2019-05-25 09:48:01','54.36.148.54',NULL,NULL,NULL,NULL),('ebb57172ed66dedbbcf07bac48659b1e',NULL,'2019-10-02 01:28:18','2019-10-02 01:28:18','54.36.150.42',NULL,NULL,NULL,NULL),('ebd052937c48065eaa1ca3f042360e42',NULL,'2020-02-22 14:25:15','2020-02-22 14:25:15','54.36.149.6',NULL,NULL,NULL,NULL),('ec8f399643da0430b2e857131a4bb29d',NULL,'2020-03-05 08:20:00','2020-03-05 08:20:00','54.36.149.63',NULL,NULL,NULL,NULL),('ecc4d72bdc3a503cccba1ebb55f97fd4',NULL,'2020-02-21 14:07:01','2020-02-21 14:07:01','54.36.148.78',NULL,NULL,NULL,NULL),('eccad80ab82f6a99820bf41069890ba1',NULL,'2019-12-16 08:56:52','2019-12-16 08:56:52','54.36.150.75',NULL,NULL,NULL,NULL),('ed0b3a32ac86576d3da53e363db587d1',NULL,'2019-11-19 06:06:00','2019-11-19 06:06:00','54.36.150.48',NULL,NULL,NULL,NULL),('ed5250a80f9ae304147f5af8bc41f663',NULL,'2019-11-12 08:27:24','2019-11-12 08:27:24','54.36.148.47',NULL,NULL,NULL,NULL),('ed5f1c16903b14c905995c37b2bdde56',NULL,'2020-04-19 03:38:45','2020-04-19 03:38:45','54.36.150.181',NULL,NULL,NULL,NULL),('ed97cb5c0fcf3cc73319b9690a630658',NULL,'2019-09-02 01:21:59','2019-09-02 01:21:59','54.36.150.23',NULL,NULL,NULL,NULL),('edad34951e54444dd9becccb45e4e511',NULL,'2019-10-07 09:31:36','2019-10-07 09:31:36','54.36.148.116',NULL,NULL,NULL,NULL),('edanluqh6rk5a1stcqh81u6706',NULL,'2021-12-16 21:45:51','2021-12-16 21:45:51','216.244.66.240',NULL,NULL,NULL,NULL),('ee301994a08711e0c059e256ddf96af0',NULL,'2020-04-13 11:54:44','2020-04-13 11:54:44','54.36.148.130',NULL,NULL,NULL,NULL),('ee868acf321e613a00c9eb16a76c6d86',NULL,'2019-05-29 09:14:42','2019-05-29 09:14:42','54.36.150.9',NULL,NULL,NULL,NULL),('eef37d93ba3a3b79c8a92c5f3a21a7cc',NULL,'2020-01-25 22:19:11','2020-01-25 22:19:11','54.36.150.169',NULL,NULL,NULL,NULL),('ef978150fc61808926a16bf436ecbc2f',NULL,'2019-12-09 15:38:03','2019-12-09 15:38:03','54.36.150.120',NULL,NULL,NULL,NULL),('ef98b0b26167a6d5397a6e1354afd241',NULL,'2020-04-14 05:59:37','2020-04-14 05:59:37','54.36.150.113',NULL,NULL,NULL,NULL),('efa2f533a533b0ae8f98d6b6105d1c56',NULL,'2019-11-14 18:59:29','2019-11-14 18:59:29','54.36.150.148',NULL,NULL,NULL,NULL),('efbpf3otfgoq6c62pne3ik90q7',NULL,'2021-02-23 04:12:58','2021-02-23 04:12:58','216.244.66.240',NULL,NULL,NULL,NULL),('ern8q2u0b23c95hgj448ntv1t1',NULL,'2020-08-25 15:25:53','2020-08-25 15:25:53','216.244.66.240',NULL,NULL,NULL,NULL),('evlsi6565oktk06k2pfijb3en1',NULL,'2021-05-27 23:49:38','2021-05-27 23:49:38','216.244.66.240',NULL,NULL,NULL,NULL),('evv6jv7smgl8aisafac0ckvvb2',NULL,'2021-06-14 13:11:43','2021-06-14 13:11:43','216.244.66.240',NULL,NULL,NULL,NULL),('f04327c3938d421a35d56fbb995d69ee',NULL,'2019-08-29 16:31:31','2019-08-29 16:31:31','54.36.150.137',NULL,NULL,NULL,NULL),('f0899dd19a5f76a04bc87cf62a6f1a9c',NULL,'2019-12-15 07:11:39','2019-12-15 07:11:39','54.36.150.60',NULL,NULL,NULL,NULL),('f16addaa8f3e123fd6aef100a18bce27',NULL,'2020-05-03 08:45:50','2020-05-03 08:45:50','54.36.150.143',NULL,NULL,NULL,NULL),('f1ae0b968af2c7aba354b602ed583b53',NULL,'2019-12-11 01:27:28','2019-12-11 01:27:28','54.36.148.183',NULL,NULL,NULL,NULL),('f33d63141178976b12fdadae91768c64',NULL,'2020-05-24 21:22:28','2020-05-24 21:22:28','216.244.66.240',NULL,NULL,NULL,NULL),('f385f2859775d654ad0bc1adc8262430',NULL,'2019-06-02 18:03:35','2019-06-02 18:03:35','54.36.148.128',NULL,NULL,NULL,NULL),('f3b240d70827e06c1c6221a370e1941f',NULL,'2019-10-07 10:16:29','2019-10-07 10:16:29','54.36.150.135',NULL,NULL,NULL,NULL),('f4084b09454c0777b88bd1d1df96d0f7',NULL,'2020-01-14 14:28:33','2020-01-14 14:28:33','54.36.148.115',NULL,NULL,NULL,NULL),('f41e4bf14c269a8743960aa5531703ad',NULL,'2020-01-28 06:14:34','2020-01-28 06:14:34','54.36.150.33',NULL,NULL,NULL,NULL),('f4afd437ecc7f0c3de9723592cd61d77',NULL,'2019-10-03 16:20:06','2019-10-03 16:20:06','54.36.148.189',NULL,NULL,NULL,NULL),('f4d2c578cb4f5f6d8b6ae3ef55c1c123',NULL,'2019-05-31 06:33:07','2019-05-31 06:33:07','54.36.150.89',NULL,NULL,NULL,NULL),('f531a701e831ec7170d18dc0d153ef5e',NULL,'2020-02-08 13:51:26','2020-02-08 13:51:26','54.36.148.155',NULL,NULL,NULL,NULL),('f55d3fd4aa9a1f6bbfefd74489415bed',NULL,'2019-08-31 20:34:29','2019-08-31 20:34:29','54.36.150.111',NULL,NULL,NULL,NULL),('f569b22505de8c96823844149b0ed8c0',NULL,'2020-03-10 09:37:17','2020-03-10 09:37:17','54.36.149.70',NULL,NULL,NULL,NULL),('f5c03669eadea276e03efc9fbcd1c559',NULL,'2019-12-23 15:41:20','2019-12-23 15:41:20','54.36.149.79',NULL,NULL,NULL,NULL),('f5df9abd2d146e039972925f750dd60e',NULL,'2020-01-30 11:05:17','2020-01-30 11:05:17','54.36.150.59',NULL,NULL,NULL,NULL),('f60acf72a7c7c5f3185e52de69daae9d',NULL,'2019-11-16 09:44:40','2019-11-16 09:44:40','54.36.150.188',NULL,NULL,NULL,NULL),('f60e3143a4a655a817a52c02b0c41499',NULL,'2019-05-26 00:13:56','2019-05-26 00:13:56','54.36.148.207',NULL,NULL,NULL,NULL),('f635mrm746t229cif512p7f5s2',NULL,'2021-05-31 09:13:02','2021-05-31 09:13:02','216.244.66.240',NULL,NULL,NULL,NULL),('f643cd6af26c3be8609e504ee4b28d3a',NULL,'2020-05-25 14:24:51','2020-05-25 14:24:51','216.244.66.240',NULL,NULL,NULL,NULL),('f73bdf0172db1996a2aaf55cafc94e96',NULL,'2019-08-29 15:29:53','2019-08-29 15:29:53','54.36.150.15',NULL,NULL,NULL,NULL),('f74c2b335ed5be7dd57c59fd9f259846',NULL,'2019-08-28 09:51:53','2019-08-28 09:51:53','54.36.150.125',NULL,NULL,NULL,NULL),('f759c23ed778c7dab13c1d745eb85afd',NULL,'2019-07-26 13:29:49','2019-07-26 13:29:49','54.36.150.54',NULL,NULL,NULL,NULL),('f75b2c5a8dd7ad9dc602282b1712a670',NULL,'2019-06-15 04:09:37','2019-06-15 04:09:37','54.36.150.112',NULL,NULL,NULL,NULL),('f8d26120e08c682cdf408fdda793264d',NULL,'2019-12-08 14:31:48','2019-12-08 14:31:48','54.36.148.95',NULL,NULL,NULL,NULL),('f9da848fd005d27a7286cb7e787e9512',NULL,'2020-03-01 11:36:37','2020-03-01 11:36:37','54.36.150.48',NULL,NULL,NULL,NULL),('f9fbeb11df2219715ce86ef4ed3fca2b',NULL,'2020-03-13 04:42:44','2020-03-13 04:42:44','54.36.148.111',NULL,NULL,NULL,NULL),('fa530a0dea492b1ca8582c49ad26ad6f',NULL,'2020-04-08 16:54:11','2020-04-08 16:54:11','54.36.150.160',NULL,NULL,NULL,NULL),('faa70561d2f4cccd2eada888e5a12c8c',NULL,'2019-11-25 15:33:13','2019-11-25 15:33:13','54.36.148.131',NULL,NULL,NULL,NULL),('faa79c7945823b2e4d4cce60a9bf1de5',NULL,'2020-03-12 12:27:31','2020-03-12 12:27:31','54.36.150.183',NULL,NULL,NULL,NULL),('fadfe9a34dbaa86092b8a62c3cc0fc8d',NULL,'2019-08-24 12:23:53','2019-08-24 12:23:53','54.36.150.139',NULL,NULL,NULL,NULL),('fb4fa2366919ed998db8448ee08760f0',NULL,'2019-07-27 14:51:20','2019-07-27 14:51:20','54.36.148.14',NULL,NULL,NULL,NULL),('fb9f434e920cd72ffb65ecc04b38c2dd',NULL,'2019-05-31 07:00:18','2019-05-31 07:00:18','54.36.149.52',NULL,NULL,NULL,NULL),('fbdd60fdc1bab1709056dc2bc095400a',NULL,'2020-02-08 12:39:46','2020-02-08 12:39:46','54.36.149.71',NULL,NULL,NULL,NULL),('fc2cc9dab90f4393e1cd926254ef0074',NULL,'2019-07-04 20:48:16','2019-07-04 20:48:16','54.36.148.145',NULL,NULL,NULL,NULL),('fc4a5662da88e656c0fc1ab0497cdf0e',NULL,'2020-05-23 19:23:50','2020-05-23 19:23:50','216.244.66.240',NULL,NULL,NULL,NULL),('fc5be53a825cf7e97b43618575c14193',NULL,'2020-02-28 06:15:07','2020-02-28 06:15:07','54.36.150.8',NULL,NULL,NULL,NULL),('fc67bc48d23df6fa9104893244bb0ec5',NULL,'2019-08-31 14:11:18','2019-08-31 14:11:18','54.36.150.134',NULL,NULL,NULL,NULL),('fca48363fd22cfa5921c19bdde935c6c',NULL,'2019-11-08 08:07:08','2019-11-08 08:07:08','54.36.148.50',NULL,NULL,NULL,NULL),('fcfc90056575b39b376ffb4dcba4ca00',NULL,'2020-05-23 05:04:24','2020-05-23 05:04:24','216.244.66.240',NULL,NULL,NULL,NULL),('fd47b76e11fa2a3a87ce64bf8d4147a8',NULL,'2020-04-13 00:39:41','2020-04-13 00:39:41','54.36.150.51',NULL,NULL,NULL,NULL),('fd7f8b3bc0422e45bcee50002b856073',NULL,'2019-10-06 08:25:26','2019-10-06 08:25:26','54.36.150.119',NULL,NULL,NULL,NULL),('fd9689d86479531912b9772a69a30fb0',NULL,'2020-01-19 23:42:06','2020-01-19 23:42:06','54.36.150.176',NULL,NULL,NULL,NULL),('fde52ec40cb8c9a0a0845e5863cda4b9',NULL,'2019-09-01 22:49:56','2019-09-01 22:49:56','54.36.148.51',NULL,NULL,NULL,NULL),('fe01b5c688e536420fea29e1d4171656',NULL,'2019-08-28 18:22:53','2019-08-28 18:22:53','54.36.148.61',NULL,NULL,NULL,NULL),('fe7ab950c3697e498f25fe12c28b54b0',NULL,'2020-04-29 07:10:34','2020-04-29 07:10:34','54.36.148.9',NULL,NULL,NULL,NULL),('fec98e5387346ba867e17bb19b345dd3',NULL,'2019-05-18 17:55:00','2019-05-18 17:55:00','54.36.148.102',NULL,NULL,NULL,NULL),('fed5ba8f56d5efb35ddde3d29cf4a2b1',NULL,'2019-05-31 10:24:18','2019-05-31 10:24:18','54.36.150.104',NULL,NULL,NULL,NULL),('ff6764b6cccdca828caf335d6b444b9c',NULL,'2020-05-23 06:29:49','2020-05-23 06:29:49','216.244.66.240',NULL,NULL,NULL,NULL),('ffbb1a8f798df5f21d0579cba67dd66c',NULL,'2019-12-10 23:27:18','2019-12-10 23:27:18','54.36.150.120',NULL,NULL,NULL,NULL),('fnd6j6252n8ifkfuuame4dhv15',NULL,'2020-08-26 16:48:15','2020-08-26 16:48:15','216.244.66.240',NULL,NULL,NULL,NULL),('fuhavhcb8571r6510tbal242k1',NULL,'2021-12-12 18:24:03','2021-12-12 18:24:03','216.244.66.240',NULL,NULL,NULL,NULL),('gjpjb0n2oc5ref3cdrk6r233g4',NULL,'2021-12-06 19:26:42','2021-12-06 19:26:42','216.244.66.240',NULL,NULL,NULL,NULL),('gmdcnd3prb4vlv65nvu6325n64',NULL,'2021-09-05 18:27:14','2021-09-05 18:27:14','216.244.66.240',NULL,NULL,NULL,NULL),('gmpbmjknf9sja5i720ms3f5945',NULL,'2020-11-28 05:34:38','2020-11-28 05:34:38','216.244.66.240',NULL,NULL,NULL,NULL),('h01asnophaim1g4n9o5r3qg574',NULL,'2021-12-12 14:37:40','2021-12-12 14:37:40','216.244.66.240',NULL,NULL,NULL,NULL),('h627c5e21ojntgnascp574snu7',NULL,'2021-06-07 00:56:20','2021-06-07 00:56:20','216.244.66.240',NULL,NULL,NULL,NULL),('h743q6ecj46k1ntnanpogqjid4',NULL,'2020-08-29 07:36:03','2020-08-29 07:36:03','216.244.66.240',NULL,NULL,NULL,NULL),('hd1vl4mlmpq367p376lc7a9c32',NULL,'2021-12-12 22:54:00','2021-12-12 22:54:00','216.244.66.240',NULL,NULL,NULL,NULL),('hqknp4d2popmiu7q81qp13unn2',NULL,'2021-02-27 13:32:39','2021-02-27 13:32:39','216.244.66.240',NULL,NULL,NULL,NULL),('hs7p6iree63s8gllb8g1uqfrt7',NULL,'2021-12-07 20:24:13','2021-12-07 20:24:13','216.244.66.240',NULL,NULL,NULL,NULL),('i4tart3rb94e9uu30nqnsuags0',NULL,'2020-11-26 08:54:45','2020-11-26 08:54:45','216.244.66.240',NULL,NULL,NULL,NULL),('ir9elccuqq4rqr0rqg4asgrij4',NULL,'2021-03-06 10:12:10','2021-03-06 10:12:10','216.244.66.240',NULL,NULL,NULL,NULL),('irkms40r50l9jg5ne6pr13r703',NULL,'2021-09-01 04:29:08','2021-09-01 04:29:08','216.244.66.240',NULL,NULL,NULL,NULL),('iu57mv7dn4b819eamsu5i822v7',NULL,'2021-12-05 18:14:19','2021-12-05 18:14:19','216.244.66.240',NULL,NULL,NULL,NULL),('jmvbfh11l5juj4kd5g363hd6l5',NULL,'2021-09-04 20:12:54','2021-09-04 20:12:54','216.244.66.240',NULL,NULL,NULL,NULL),('jn14d1ii31u90ekhlid5rr2fp1',NULL,'2021-05-31 04:23:43','2021-05-31 04:23:43','216.244.66.240',NULL,NULL,NULL,NULL),('jqkj6bekjfid84u8bofet7crd0',NULL,'2020-11-25 01:18:21','2020-11-25 01:18:21','216.244.66.240',NULL,NULL,NULL,NULL),('k5h527sncnhgatd7h9o9arsne7',NULL,'2021-09-03 04:38:21','2021-09-03 04:38:21','216.244.66.240',NULL,NULL,NULL,NULL),('kan1nlqeg3cim8jep8not1bhi5',NULL,'2021-06-02 08:07:38','2021-06-02 08:07:38','216.244.66.240',NULL,NULL,NULL,NULL),('kblo399qedthppb72em2fa8kt1',NULL,'2021-09-04 16:19:43','2021-09-04 16:19:43','216.244.66.240',NULL,NULL,NULL,NULL),('kkv84esg270q24iefoap7qga26',NULL,'2021-02-27 22:17:21','2021-02-27 22:17:21','216.244.66.240',NULL,NULL,NULL,NULL),('l5sd80ktnesh200d7nl0m19q77',NULL,'2021-03-01 06:42:33','2021-03-01 06:42:33','216.244.66.240',NULL,NULL,NULL,NULL),('l9ebmgb7m8vdttc8v1ofoibg45',NULL,'2021-06-02 01:34:07','2021-06-02 01:34:07','216.244.66.240',NULL,NULL,NULL,NULL),('leagb72f7f84epdg3htj5lfii4',NULL,'2021-06-02 01:33:36','2021-06-02 01:33:36','216.244.66.240',NULL,NULL,NULL,NULL),('lpoh5lidf6epejqdt2qpvpb784',NULL,'2021-09-01 19:58:00','2021-09-01 19:58:00','216.244.66.240',NULL,NULL,NULL,NULL),('lr392aopttm0plfa7423lj42d6',NULL,'2020-11-29 11:42:44','2020-11-29 11:42:44','216.244.66.240',NULL,NULL,NULL,NULL),('lrsk2if5o6qso38uuehdi6kc34',NULL,'2021-03-07 10:40:45','2021-03-07 10:40:45','216.244.66.240',NULL,NULL,NULL,NULL),('lsrvcc5ajoutfkvfpol1qgs203',NULL,'2021-08-27 16:50:01','2021-08-27 16:50:01','216.244.66.240',NULL,NULL,NULL,NULL),('m1hpfp3g9a7soto1o9u72uncg7',NULL,'2021-03-03 14:53:40','2021-03-03 14:53:40','216.244.66.240',NULL,NULL,NULL,NULL),('m71b24vmd78miek9nmp4l3f3g1',NULL,'2021-08-29 17:03:05','2021-08-29 17:03:05','216.244.66.240',NULL,NULL,NULL,NULL),('mjgdj6ulbb7bm2utmgl4vs0i80',NULL,'2021-09-04 16:20:13','2021-09-04 16:20:13','216.244.66.240',NULL,NULL,NULL,NULL),('mkgi6ca82g1c74r5epmcgdckq4',NULL,'2021-03-03 04:58:10','2021-03-03 04:58:10','216.244.66.240',NULL,NULL,NULL,NULL),('mlhgrr484hrv3ocute3t66bnt7',NULL,'2020-11-28 03:32:09','2020-11-28 03:32:09','216.244.66.240',NULL,NULL,NULL,NULL),('mpsr1mn1n482naurmsmgtft5s6',NULL,'2021-12-12 19:08:06','2021-12-12 19:08:06','216.244.66.240',NULL,NULL,NULL,NULL),('mtdcu7j01h4hf1jmdavbnbe9k7',NULL,'2020-08-26 06:02:26','2020-08-26 06:02:26','216.244.66.240',NULL,NULL,NULL,NULL),('n655qo7o3apohk2qdf1o1r7j46',NULL,'2020-08-25 10:51:20','2020-08-25 10:51:20','216.244.66.240',NULL,NULL,NULL,NULL),('n90s7bbiut7ab8ubm3ndk58q62',NULL,'2020-08-25 02:33:11','2020-08-25 02:33:11','216.244.66.240',NULL,NULL,NULL,NULL),('ni4s36fs052rn42ai00u2emrf4',NULL,'2021-11-27 18:27:59','2021-11-27 18:27:59','216.244.66.240',NULL,NULL,NULL,NULL),('nqrt3j387hl5hhk2n53euplql5',NULL,'2021-05-29 05:20:54','2021-05-29 05:20:54','216.244.66.240',NULL,NULL,NULL,NULL),('nsv1tjh7cqbevuafs9uupqdbn1',NULL,'2021-03-02 20:00:34','2021-03-02 20:00:34','216.244.66.240',NULL,NULL,NULL,NULL),('nu6mhee7kh3ctef2o0v2ds9n51',NULL,'2021-06-02 21:36:30','2021-06-02 21:36:30','216.244.66.240',NULL,NULL,NULL,NULL),('oacuejkfdqtcqmfbar08hpbcv7',NULL,'2021-03-07 10:41:13','2021-03-07 10:41:13','216.244.66.240',NULL,NULL,NULL,NULL),('ocatansumj2h7qdog775h6plv1',NULL,'2021-02-26 21:17:00','2021-02-26 21:17:00','216.244.66.240',NULL,NULL,NULL,NULL),('oe124mcp8vp2u46fgj7i53pbq0',NULL,'2021-05-28 21:48:09','2021-05-28 21:48:09','216.244.66.240',NULL,NULL,NULL,NULL),('oljo09erioivkljd3oghv7nbm4',NULL,'2021-03-01 22:00:38','2021-03-01 22:00:38','216.244.66.240',NULL,NULL,NULL,NULL),('oskoepo2qsks5k4k99bl9sr7g3',NULL,'2020-08-29 13:01:36','2020-08-29 13:01:36','216.244.66.240',NULL,NULL,NULL,NULL),('ovvq6lr1ps1hcthgjkuk6b8jh2',NULL,'2020-08-26 13:44:24','2020-08-26 13:44:24','216.244.66.240',NULL,NULL,NULL,NULL),('p6sh05ebjas2qvq4kstek43fd4',NULL,'2020-11-27 03:47:43','2020-11-27 03:47:43','216.244.66.240',NULL,NULL,NULL,NULL),('pelvmgeenrlnh0ig6en9jmaer3',NULL,'2021-09-04 01:20:58','2021-09-04 01:20:58','216.244.66.240',NULL,NULL,NULL,NULL),('pfc1jq4stacqjbs2kht2vi8121',NULL,'2021-08-30 00:41:37','2021-08-30 00:41:37','216.244.66.240',NULL,NULL,NULL,NULL),('pha1lf01dtsjgbpktpknm7rbc2',NULL,'2021-09-04 02:56:33','2021-09-04 02:56:33','216.244.66.240',NULL,NULL,NULL,NULL),('pkb66en7o054lav3e7uran1v77',NULL,'2021-02-26 21:16:32','2021-02-26 21:16:32','216.244.66.240',NULL,NULL,NULL,NULL),('psbjrog5fqfavkdaoofoi4ked5',NULL,'2020-11-27 03:47:12','2020-11-27 03:47:12','216.244.66.240',NULL,NULL,NULL,NULL),('pvcaov5bhb5duuaoeeq3t95ci2',NULL,'2020-11-25 06:50:20','2020-11-25 06:50:20','216.244.66.240',NULL,NULL,NULL,NULL),('q441mg5nqp41eornme7l9famh7',NULL,'2020-08-25 15:25:57','2020-08-25 15:25:57','216.244.66.240',NULL,NULL,NULL,NULL),('qajqhqfdj2666gibh280k177t1',NULL,'2020-08-25 23:04:20','2020-08-25 23:04:20','216.244.66.240',NULL,NULL,NULL,NULL),('qbcmurgt2iip21eg486iva3qs1',NULL,'2021-12-02 05:08:21','2021-12-02 05:08:21','216.244.66.240',NULL,NULL,NULL,NULL),('qd13flglqc92m1bb9ubrpk1ij2',NULL,'2020-11-29 17:24:54','2020-11-29 17:24:54','216.244.66.240',NULL,NULL,NULL,NULL),('qmqldnefpv0der5rs907tu9ns4',NULL,'2021-12-02 05:07:50','2021-12-02 05:07:50','216.244.66.240',NULL,NULL,NULL,NULL),('qtoas6lsnll4lvm0nlkil84hr7',NULL,'2021-08-28 00:08:37','2021-08-28 00:08:37','216.244.66.240',NULL,NULL,NULL,NULL),('rb0hnbnbsq40a48rsp015fvjn4',NULL,'2021-06-07 17:36:58','2021-06-07 17:36:58','216.244.66.240',NULL,NULL,NULL,NULL),('rhaq5t3909e14u1h7k93ijuf56',NULL,'2021-09-11 16:29:52','2021-09-11 16:29:52','216.244.66.240',NULL,NULL,NULL,NULL),('rht64houafgl4tigl4lgikvn57',NULL,'2021-09-15 19:10:52','2021-09-15 19:10:52','216.244.66.240',NULL,NULL,NULL,NULL),('rhuce3jk5132glmvalrj03nn17',NULL,'2021-05-31 09:13:19','2021-05-31 09:13:19','216.244.66.240',NULL,NULL,NULL,NULL),('rlnk4jruqgopp49be3o0th8187',NULL,'2021-05-31 04:24:14','2021-05-31 04:24:14','216.244.66.240',NULL,NULL,NULL,NULL),('rrscl784ac99e10cki6q2pbeu1',NULL,'2020-08-29 09:09:14','2020-08-29 09:09:14','216.244.66.240',NULL,NULL,NULL,NULL),('shjt6h8h3837glsnh9lh0egpb0',NULL,'2020-11-24 19:01:55','2020-11-24 19:01:55','216.244.66.240',NULL,NULL,NULL,NULL),('spbjv2t1bb6lot5i8fhqjshg43',NULL,'2021-09-11 21:15:27','2021-09-11 21:15:27','216.244.66.240',NULL,NULL,NULL,NULL),('sppg49g1fd44fadj0hnh9jc5t0',NULL,'2021-06-03 19:26:18','2021-06-03 19:26:18','216.244.66.240',NULL,NULL,NULL,NULL),('sqtgsj80jg47ideoo3jnlbl5l6',NULL,'2021-11-29 13:40:15','2021-11-29 13:40:15','216.244.66.240',NULL,NULL,NULL,NULL),('sv9oo3njd6767gdpbltru0pv45',NULL,'2020-08-22 23:56:33','2020-08-22 23:56:33','216.244.66.240',NULL,NULL,NULL,NULL),('t3gpdfi3lll1as0vha9hdejmq0',NULL,'2020-08-25 10:51:15','2020-08-25 10:51:15','216.244.66.240',NULL,NULL,NULL,NULL),('t80irg101ipa5cj1ld2vd52qv3',NULL,'2020-08-26 07:37:10','2020-08-26 07:37:10','216.244.66.240',NULL,NULL,NULL,NULL),('tb9nahctis4iod8cbt2c6o26r2',NULL,'2021-03-06 14:57:46','2021-03-06 14:57:46','216.244.66.240',NULL,NULL,NULL,NULL),('tgcb5bpng9q7saoobqduc8r9r5',NULL,'2020-08-30 06:00:15','2020-08-30 06:00:15','216.244.66.240',NULL,NULL,NULL,NULL),('ukojaal9si37csggov9i02spk0',NULL,'2021-12-16 21:44:34','2021-12-16 21:44:34','216.244.66.240',NULL,NULL,NULL,NULL),('vagnrm5gm6b2mm2s9j3tuem5n7',NULL,'2021-12-02 21:19:24','2021-12-02 21:19:24','216.244.66.240',NULL,NULL,NULL,NULL),('vir7nrhtb8s0tqee4a2v7ikgq3',NULL,'2021-06-10 08:29:30','2021-06-10 08:29:30','216.244.66.240',NULL,NULL,NULL,NULL),('vtrsslqaprvr8jsmu85u3g6qm2',NULL,'2021-02-23 04:12:27','2021-02-23 04:12:27','216.244.66.240',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `session_twilio`
--

DROP TABLE IF EXISTS `session_twilio`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `session_twilio` (
  `id_session_twilio` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `twilio_id` varchar(255) DEFAULT NULL,
  `phone` varchar(30) DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id_session_twilio`),
  CONSTRAINT `session_twilio_ibfk_2` FOREIGN KEY (`id_session_twilio`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `session_twilio`
--

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

--
-- Table structure for table `site`
--

DROP TABLE IF EXISTS `site`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `site` (
  `id_site` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `domain` varchar(255) DEFAULT NULL,
  `theme` varchar(255) DEFAULT NULL,
  `name` varchar(40) DEFAULT NULL,
  `sort` int(11) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_site`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `site`
--

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

--
-- Table structure for table `stripe_dispute`
--

DROP TABLE IF EXISTS `stripe_dispute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stripe_dispute` (
  `id_stripe_dispute` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_order` int(11) unsigned DEFAULT NULL,
  `reason` varchar(255) DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  `due_to` datetime DEFAULT NULL,
  `submission_count` int(5) unsigned DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id_stripe_dispute`),
  KEY `stripe_dispute_ibfk1` (`id_order`),
  CONSTRAINT `stripe_dispute_ibfk1` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stripe_dispute`
--

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

--
-- Table structure for table `stripe_dispute_evidence`
--

DROP TABLE IF EXISTS `stripe_dispute_evidence`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stripe_dispute_evidence` (
  `id_stripe_dispute_evidence` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_stripe_dispute` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `status` enum('draft','sent') DEFAULT 'draft',
  `datetime` datetime DEFAULT NULL,
  `product_description` text DEFAULT NULL,
  `customer_name` varchar(255) DEFAULT NULL,
  `customer_email_address` varchar(255) DEFAULT NULL,
  `customer_purchase_ip` varchar(15) DEFAULT NULL,
  `customer_signature` varchar(255) DEFAULT NULL,
  `billing_address` text DEFAULT NULL,
  `receipt` varchar(255) DEFAULT NULL,
  `receipt_url` text DEFAULT NULL,
  `shipping_address` text DEFAULT NULL,
  `shipping_date` datetime DEFAULT NULL,
  `shipping_carrier` varchar(255) DEFAULT NULL,
  `shipping_tracking_number` varchar(255) DEFAULT NULL,
  `shipping_documentation` text DEFAULT NULL,
  `access_activity_log` text DEFAULT NULL,
  `service_date` datetime DEFAULT NULL,
  `service_documentation` text DEFAULT NULL,
  `duplicate_charge_id` datetime DEFAULT NULL,
  `duplicate_charge_explanation` text DEFAULT NULL,
  `duplicate_charge_documentation` varchar(255) DEFAULT NULL,
  `refund_policy` text DEFAULT NULL,
  `refund_policy_disclosure` text DEFAULT NULL,
  `refund_refusal_explanation` text DEFAULT NULL,
  `cancellation_policy` text DEFAULT NULL,
  `cancellation_policy_disclosure` text DEFAULT NULL,
  `cancellation_rebuttal` text DEFAULT NULL,
  `customer_communication` text DEFAULT NULL,
  `uncategorized_text` text DEFAULT NULL,
  `uncategorized_file` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_stripe_dispute_evidence`),
  KEY `stripe_dispute_evidence_ibfk1` (`id_stripe_dispute`),
  KEY `stripe_dispute_evidence_ibfk2` (`id_admin`),
  CONSTRAINT `stripe_dispute_evidence_ibfk1` FOREIGN KEY (`id_stripe_dispute`) REFERENCES `stripe_dispute` (`id_stripe_dispute`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `stripe_dispute_evidence_ibfk2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stripe_dispute_evidence`
--

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

--
-- Table structure for table `stripe_dispute_log`
--

DROP TABLE IF EXISTS `stripe_dispute_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stripe_dispute_log` (
  `id_stripe_dispute_log` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_stripe_dispute` int(11) unsigned DEFAULT NULL,
  `id_stripe_webhook` int(11) unsigned DEFAULT NULL,
  `id_stripe_dispute_evidence` int(11) unsigned DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  PRIMARY KEY (`id_stripe_dispute_log`),
  KEY `stripe_dispute_log_ibfk1` (`id_stripe_dispute`),
  KEY `stripe_dispute_log_ibfk2` (`id_stripe_webhook`),
  KEY `stripe_dispute_log_ibfk3` (`id_stripe_dispute_evidence`),
  CONSTRAINT `stripe_dispute_log_ibfk1` FOREIGN KEY (`id_stripe_dispute`) REFERENCES `stripe_dispute` (`id_stripe_dispute`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `stripe_dispute_log_ibfk2` FOREIGN KEY (`id_stripe_webhook`) REFERENCES `stripe_webhook` (`id_stripe_webhook`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `stripe_dispute_log_ibfk3` FOREIGN KEY (`id_stripe_dispute_evidence`) REFERENCES `stripe_dispute_evidence` (`id_stripe_dispute_evidence`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stripe_dispute_log`
--

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

--
-- Table structure for table `stripe_webhook`
--

DROP TABLE IF EXISTS `stripe_webhook`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stripe_webhook` (
  `id_stripe_webhook` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_stripe_webhook_type` int(11) unsigned DEFAULT NULL,
  `event_id` varchar(255) DEFAULT NULL,
  `object_id` varchar(255) DEFAULT NULL,
  `created` int(11) DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id_stripe_webhook`),
  KEY `stripe_webhook_ibfk1` (`id_stripe_webhook_type`),
  KEY `stripe_webhook_object_id` (`object_id`),
  CONSTRAINT `stripe_webhook_ibfk1` FOREIGN KEY (`id_stripe_webhook_type`) REFERENCES `stripe_webhook_type` (`id_stripe_webhook_type`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stripe_webhook`
--

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

--
-- Table structure for table `stripe_webhook_type`
--

DROP TABLE IF EXISTS `stripe_webhook_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `stripe_webhook_type` (
  `id_stripe_webhook_type` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id_stripe_webhook_type`),
  UNIQUE KEY `type` (`type`),
  UNIQUE KEY `stripe_webhook_type_ui` (`type`),
  KEY `stripe_webhook_type_type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stripe_webhook_type`
--

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

--
-- Table structure for table `suggestion`
--

DROP TABLE IF EXISTS `suggestion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `suggestion` (
  `id_suggestion` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  `type` enum('dish','restaurant','email','suggestion') NOT NULL DEFAULT 'dish',
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `ip` varchar(15) DEFAULT NULL,
  `status` enum('new','deleted','applied') NOT NULL DEFAULT 'new',
  PRIMARY KEY (`id_suggestion`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `id_community` (`id_community`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `suggestion_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `suggestion_ibfk_2` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE SET NULL,
  CONSTRAINT `suggestion_ibfk_3` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `suggestion`
--

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

--
-- Table structure for table `support`
--

DROP TABLE IF EXISTS `support`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `support` (
  `id_support` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `status` enum('open','closed') NOT NULL DEFAULT 'open',
  `id_user` int(11) unsigned DEFAULT NULL,
  `id_community` int(11) unsigned DEFAULT NULL,
  `id_session_twilio` int(10) unsigned DEFAULT NULL,
  `name` varchar(50) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `phone` varchar(30) DEFAULT NULL,
  `type` enum('SMS','BOX_NEED_HELP','WARNING','TICKET','COCKPIT_CHAT','EMAIL') DEFAULT NULL,
  `datetime` datetime NOT NULL,
  `ip` varchar(20) DEFAULT NULL,
  `id_order` int(10) unsigned DEFAULT NULL,
  `id_restaurant` int(11) unsigned DEFAULT NULL,
  `id_github` int(10) unsigned DEFAULT NULL,
  `description_client` varchar(2000) DEFAULT NULL,
  `description_cb` varchar(2000) DEFAULT NULL,
  `fault_of` enum('restaurant','customer','crunchbutton','other') DEFAULT NULL,
  `refunded` tinyint(1) NOT NULL DEFAULT 0,
  `customer_happy` tinyint(1) DEFAULT NULL,
  `how_to_prevent` varchar(2000) DEFAULT NULL,
  `user_perspective` varchar(100) DEFAULT NULL,
  `user_perspective_other` varchar(200) DEFAULT NULL,
  `id_admin` int(10) unsigned DEFAULT NULL,
  `id_phone` int(11) unsigned DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id_support`),
  KEY `support_ibfk_1` (`id_user`),
  KEY `support_ibfk_2` (`id_session_twilio`),
  KEY `id_order` (`id_order`,`id_github`),
  KEY `status` (`status`),
  KEY `id_restaurant` (`id_restaurant`),
  KEY `id_admin` (`id_admin`),
  KEY `id_admin_2` (`id_admin`),
  KEY `id_phone` (`id_phone`),
  KEY `id_community` (`id_community`),
  CONSTRAINT `support_ibfk_10` FOREIGN KEY (`id_community`) REFERENCES `community` (`id_community`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `support_ibfk_3` FOREIGN KEY (`id_order`) REFERENCES `order` (`id_order`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `support_ibfk_4` FOREIGN KEY (`id_restaurant`) REFERENCES `restaurant` (`id_restaurant`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `support_ibfk_6` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `support_ibfk_7` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `support_ibfk_8` FOREIGN KEY (`id_session_twilio`) REFERENCES `session_twilio` (`id_session_twilio`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `support_ibfk_9` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `support`
--

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

--
-- Table structure for table `support_action`
--

DROP TABLE IF EXISTS `support_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `support_action` (
  `id_support_action` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_support` int(11) unsigned DEFAULT NULL,
  `action` enum('message-received','message-replied','notification-sent','ticket-closed') DEFAULT NULL,
  `type` enum('replied-by-driver','replied-by-cs','sent-driver','sent-drivers','sent-cs') DEFAULT NULL,
  `data` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_support_action`),
  KEY `support_action_ibfk_1` (`id_support`),
  CONSTRAINT `support_action_ibfk_1` FOREIGN KEY (`id_support`) REFERENCES `support` (`id_support`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `support_action`
--

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

--
-- Table structure for table `support_change`
--

DROP TABLE IF EXISTS `support_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `support_change` (
  `id_support_change` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_support_change_set` int(11) unsigned DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id_support_change`),
  KEY `id_support_change_set` (`id_support_change_set`),
  CONSTRAINT `support_change_ibfk_1` FOREIGN KEY (`id_support_change_set`) REFERENCES `support_change_set` (`id_support_change_set`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `support_change`
--

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

--
-- Table structure for table `support_change_set`
--

DROP TABLE IF EXISTS `support_change_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `support_change_set` (
  `id_support_change_set` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_support` int(11) unsigned DEFAULT NULL,
  `timestamp` timestamp NULL DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `id_user` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_support_change_set`),
  KEY `id_support` (`id_support`),
  KEY `id_admin` (`id_admin`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `support_change_set_ibfk_1` FOREIGN KEY (`id_support`) REFERENCES `support` (`id_support`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `support_change_set_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `support_change_set_ibfk_3` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `support_change_set`
--

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

--
-- Table structure for table `support_message`
--

DROP TABLE IF EXISTS `support_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `support_message` (
  `id_support_message` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_support` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `from` enum('client','rep','system') DEFAULT NULL,
  `type` enum('sms','note','auto-reply','warning','email','first-party-delivery-auto-reply') DEFAULT NULL,
  `visibility` enum('internal','external') NOT NULL DEFAULT 'internal',
  `phone` varchar(25) DEFAULT NULL,
  `name` varchar(50) DEFAULT NULL,
  `body` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `media` text DEFAULT NULL,
  `id_phone` int(11) unsigned DEFAULT NULL,
  `subject` varchar(100) DEFAULT NULL,
  `id_phone_log` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id_support_message`),
  KEY `support_message_ibfk_1` (`id_support`),
  KEY `id_admin` (`id_admin`),
  KEY `id_phone` (`id_phone`),
  KEY `support_message_ibfk_4` (`id_phone_log`),
  CONSTRAINT `support_message_ibfk_1` FOREIGN KEY (`id_support`) REFERENCES `support` (`id_support`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `support_message_ibfk_2` FOREIGN KEY (`id_admin`) REFERENCES `admin` (`id_admin`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `support_message_ibfk_3` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `support_message_ibfk_4` FOREIGN KEY (`id_phone_log`) REFERENCES `phone_log` (`id_phone_log`) ON DELETE SET NULL ON UPDATE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `support_message`
--

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

--
-- Table structure for table `tag`
--

DROP TABLE IF EXISTS `tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tag` (
  `id_tag` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`id_tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tag`
--

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

--
-- Table structure for table `tmp_driver_shift`
--

DROP TABLE IF EXISTS `tmp_driver_shift`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `tmp_driver_shift` (
  `id_tmp_driver_shift` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_community` int(11) unsigned DEFAULT NULL,
  `id_admin` int(11) unsigned DEFAULT NULL,
  `date_start` datetime DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  PRIMARY KEY (`id_tmp_driver_shift`),
  KEY `id_admin_idx` (`id_admin`),
  KEY `id_community_idx` (`id_community`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tmp_driver_shift`
--

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

--
-- Table structure for table `user`
--

DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user` (
  `id_user` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `stripe_id` varchar(255) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `card` varchar(16) DEFAULT NULL,
  `delivery_type` enum('takeout','delivery') DEFAULT NULL,
  `card_type` enum('visa','mastercard','amex','discover') DEFAULT NULL,
  `uuid` char(36) DEFAULT NULL,
  `pay_type` enum('cash','card') DEFAULT NULL,
  `balanced_id` varchar(255) DEFAULT NULL,
  `location_lat` float DEFAULT NULL,
  `location_lon` float DEFAULT NULL,
  `card_exp_year` int(4) DEFAULT NULL,
  `card_exp_month` int(2) DEFAULT NULL,
  `invite_code` varchar(50) DEFAULT NULL,
  `debug` tinyint(1) NOT NULL DEFAULT 0,
  `saving_from` varchar(255) DEFAULT NULL,
  `id_phone` int(11) unsigned DEFAULT NULL,
  `invite_code_bkp` varchar(50) DEFAULT NULL,
  `invite_code_updated` int(1) DEFAULT NULL,
  PRIMARY KEY (`id_user`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `id_phone` (`id_phone`),
  CONSTRAINT `user_ibfk_1` FOREIGN KEY (`id_phone`) REFERENCES `phone` (`id_phone`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user`
--

LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client      = @@character_set_client */ ;
/*!50003 SET @saved_cs_results     = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client  = utf8mb3 */ ;
/*!50003 SET character_set_results = utf8mb3 */ ;
/*!50003 SET collation_connection  = utf8mb3_general_ci */ ;
/*!50003 SET @saved_sql_mode       = @@sql_mode */ ;
/*!50003 SET sql_mode              = 'NO_AUTO_VALUE_ON_ZERO' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`dd67555`@`localhost`*/ /*!50003 TRIGGER `snappy16_lchow`.`user_uuid` BEFORE INSERT ON `snappy16_lchow`.`user` FOR EACH ROW SET NEW.uuid =  REPLACE(UUID(),'-','') */;;
DELIMITER ;
/*!50003 SET sql_mode              = @saved_sql_mode */ ;
/*!50003 SET character_set_client  = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection  = @saved_col_connection */ ;

--
-- Table structure for table `user_auth`
--

DROP TABLE IF EXISTS `user_auth`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_auth` (
  `id_user_auth` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(11) unsigned DEFAULT NULL,
  `type` enum('facebook','local') DEFAULT NULL,
  `auth` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `hash` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `reset_code` varchar(255) DEFAULT NULL,
  `reset_date` datetime DEFAULT NULL,
  PRIMARY KEY (`id_user_auth`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `user_auth_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_auth`
--

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

--
-- Table structure for table `user_notification`
--

DROP TABLE IF EXISTS `user_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_notification` (
  `id_user_notification` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(10) unsigned DEFAULT NULL,
  `type` enum('sms','email','push-ios','push-android') DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id_user_notification`),
  KEY `id_user` (`id_user`),
  CONSTRAINT `user_notification_ibfk_1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_notification`
--

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

--
-- Table structure for table `user_payment_type`
--

DROP TABLE IF EXISTS `user_payment_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_payment_type` (
  `id_user_payment_type` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id_user` int(11) unsigned DEFAULT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 1,
  `stripe_id` varchar(255) DEFAULT NULL,
  `card` varchar(16) DEFAULT NULL,
  `card_type` enum('visa','mastercard','amex','discover','campus_cash','american express') DEFAULT NULL,
  `balanced_id` varchar(255) DEFAULT NULL,
  `card_exp_year` int(4) DEFAULT NULL,
  `card_exp_month` int(2) DEFAULT NULL,
  `date` datetime NOT NULL,
  `stripe_customer` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id_user_payment_type`),
  KEY `user_payment_type_ibfk1` (`id_user`),
  CONSTRAINT `user_payment_type_ibfk1` FOREIGN KEY (`id_user`) REFERENCES `user` (`id_user`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_payment_type`
--

LOCK TABLES `user_payment_type` WRITE;
/*!40000 ALTER TABLE `user_payment_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_payment_type` 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 2026-05-09  1:09:32
