-- MariaDB dump 10.19  Distrib 10.5.24-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: wwwagury_dbhmstel
-- ------------------------------------------------------
-- Server version	10.5.24-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 `agent_transfers`
--

DROP TABLE IF EXISTS `agent_transfers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `agent_transfers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `from_agent` int(11) NOT NULL,
  `to_agent` int(11) NOT NULL,
  `amount` varchar(100) NOT NULL,
  `remark` text NOT NULL,
  `transfer_date` date NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `agent_transfers`
--

LOCK TABLES `agent_transfers` WRITE;
/*!40000 ALTER TABLE `agent_transfers` DISABLE KEYS */;
INSERT INTO `agent_transfers` VALUES (1,1,1,4,'900','test test','2021-10-08',1,'2021-10-08 10:46:26','2021-10-08 10:46:26'),(2,1,2,1,'500','test123','2021-10-07',1,'2021-10-08 10:46:54','2021-10-08 14:51:16'),(3,1,2,1,'680','test 480','2021-10-08',1,'2021-10-08 11:01:48','2021-10-08 15:00:10'),(4,1,2,1,'1001','etsttetst','2021-10-08',1,'2021-10-08 13:08:17','2021-10-08 15:00:01'),(6,1,2,1,'250','3rt7346','2021-10-08',1,'2021-10-08 15:29:15','2021-10-08 15:30:01');
/*!40000 ALTER TABLE `agent_transfers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `amenities`
--

DROP TABLE IF EXISTS `amenities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `amenities` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `amenity_name` text NOT NULL,
  `image` varchar(100) NOT NULL,
  `status` enum('1','2') NOT NULL COMMENT '1=Active/ 2= Deactive',
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `amenities`
--

LOCK TABLES `amenities` WRITE;
/*!40000 ALTER TABLE `amenities` DISABLE KEYS */;
INSERT INTO `amenities` VALUES (1,'Hygenic Food','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(2,'Daily Newspaper','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(3,'Power Backup','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(4,'Free Wi-fi','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(5,'Fully Furnished','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(6,'R.O. Water','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(7,'Cold Water','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(8,'Parking','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(9,'CCTV','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(10,'Attach Let-bath','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(11,'A.C.','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(12,'Geyser','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(13,'Peacefull environment','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(14,'Balcony','','1','2021-04-14 14:35:53','0000-00-00 00:00:00'),(15,'Desert Cooler','','1','2021-04-14 14:35:53','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `amenities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `beds`
--

DROP TABLE IF EXISTS `beds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `beds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `tarrif` varchar(100) NOT NULL,
  `bed_number` varchar(20) NOT NULL,
  `availability` enum('1','2') NOT NULL COMMENT '1=yes,2=no',
  `status` enum('1','2') NOT NULL COMMENT '1=active,2=inactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `beds`
--

LOCK TABLES `beds` WRITE;
/*!40000 ALTER TABLE `beds` DISABLE KEYS */;
INSERT INTO `beds` VALUES (1,1,1,'3400','bed-001','2','1',1,'2021-04-17 11:38:58','2022-01-31 10:14:13'),(2,1,1,'2400','bed 003','2','1',1,'2021-04-17 11:58:46','2021-07-20 13:02:01'),(3,1,1,'3567','bed-089','2','1',1,'2021-04-19 10:22:46','2021-09-18 18:17:56'),(4,1,2,'8000','bed-001','2','1',1,'2021-04-19 10:23:32','2021-07-20 05:47:51'),(5,1,2,'5000','Bed 02','2','1',1,'2021-04-26 12:07:23','2021-08-11 10:11:40'),(6,1,4,'5005','Bed 1','2','1',1,'2021-04-30 10:08:35','2021-08-11 10:07:32'),(7,1,4,'4500','Bed 2','2','1',1,'2021-04-30 10:08:51','2021-09-21 15:31:37'),(8,1,4,'4700','Bed 3','2','1',1,'2021-04-30 10:09:01','2021-08-10 11:40:58'),(9,1,4,'5000','Bed 4','2','1',1,'2021-04-30 10:09:13','2021-10-16 11:35:49'),(10,2,7,'2500','001','2','1',1,'2021-05-01 10:30:02','2021-07-19 17:23:32'),(11,2,7,'2600','002','2','1',1,'2021-05-01 10:30:10','2021-07-19 17:30:54'),(12,2,7,'2500','003','2','1',1,'2021-05-01 10:30:17','2021-05-04 18:34:37'),(13,1,2,'5699','bed-076','2','1',1,'0000-00-00 00:00:00','2021-09-04 10:57:22'),(14,1,3,'6000','001','2','1',1,'2021-05-06 09:31:10','2021-09-17 11:07:27'),(15,1,3,'6000','002','2','1',1,'2021-05-06 09:31:19','2021-09-16 18:14:24'),(16,1,5,'5000','001','2','1',1,'2021-05-06 09:31:47','2021-08-09 11:07:46'),(17,1,8,'3500','1','1','2',1,'2021-05-06 17:28:32','2021-05-06 17:29:10'),(18,1,6,'3600','Bed 01','2','1',1,'2021-05-21 16:55:43','2021-11-30 16:42:21'),(19,1,8,'5000','Bed 2','2','1',1,'2021-05-21 17:15:30','2021-08-10 11:42:45'),(20,4,18,'5000','B 01','2','1',2,'2021-05-22 14:46:59','2021-09-23 10:54:18'),(21,4,22,'5000','B 01','2','1',2,'2021-05-22 15:39:13','2021-10-08 18:36:51'),(22,4,22,'5800','B 02','2','1',2,'2021-05-22 15:40:00','2021-10-08 18:42:29'),(23,4,19,'5400','B01','2','1',2,'2021-05-22 15:43:46','2021-09-23 10:55:21'),(24,4,20,'4600','B 01','2','1',2,'2021-05-22 15:47:31','2021-10-08 18:32:23'),(25,1,1,'2500','76','2','1',1,'2021-07-03 15:01:29','2021-07-20 13:03:48'),(26,1,25,'3000','B1','2','1',1,'2021-07-23 16:45:53','2021-09-17 10:52:07'),(27,1,25,'3000','B2','2','1',1,'2021-07-23 16:46:03','2021-11-30 17:04:52'),(28,1,25,'5000','B4','2','1',1,'2021-07-24 15:37:24','2021-09-17 10:43:43'),(29,1,25,'5000','B5','2','1',1,'2021-07-24 15:37:34','2021-09-17 10:54:57'),(30,1,26,'6000','B4','2','1',1,'2021-07-24 15:37:48','2021-09-17 10:54:08'),(31,1,16,'5000','B1','2','1',1,'2021-07-24 16:20:22','2021-09-04 11:22:15'),(32,1,16,'1000','B2','2','1',1,'2021-07-24 16:20:30','2021-08-11 10:09:49'),(33,1,16,'1000','B3','2','1',1,'2021-07-24 16:20:38','2021-08-28 16:27:10'),(34,1,16,'1000','B4','2','1',1,'2021-07-24 16:20:50','2021-11-30 16:38:54'),(35,1,16,'1000','B5','2','1',1,'2021-07-24 16:21:03','2021-08-10 11:43:40'),(36,1,16,'1000','B6','2','1',1,'2021-07-24 16:21:11','2021-09-04 12:53:27'),(37,1,24,'5000','B1','2','1',1,'2021-07-24 17:47:50','2021-09-17 11:30:25'),(38,1,24,'3500','B2','2','1',1,'2021-07-24 17:48:02','2021-09-17 11:23:12'),(39,1,24,'5000','B3','2','1',1,'2021-07-24 17:48:10','2021-09-17 10:50:48'),(40,1,24,'5000','B4','2','1',1,'2021-07-24 17:48:17','2021-09-17 11:26:41'),(41,1,24,'6500','B5','2','1',1,'2021-07-24 17:48:28','2021-09-04 10:24:57'),(42,1,24,'5000','B6','2','1',1,'2021-07-24 17:48:46','2021-09-04 12:47:08'),(43,1,24,'3500','B7','2','1',1,'2021-07-24 17:48:54','2021-09-07 16:31:54'),(44,1,24,'3500','B8','2','1',1,'2021-07-24 17:49:02','2021-09-17 12:39:26'),(45,2,27,'4000','Gi-2','2','1',1,'2021-07-29 10:35:43','2021-07-29 10:38:06'),(46,2,28,'4500','bed-39','2','1',1,'2021-07-29 10:36:05','2021-07-29 10:39:06'),(47,2,28,'5000','gi-4','2','1',1,'2021-07-29 10:36:17','2021-08-04 17:57:17'),(48,2,27,'4000','gi-23','2','1',1,'2021-07-29 10:36:31','2021-08-05 16:08:56'),(49,2,29,'6000','gi-90','2','1',1,'2021-07-29 10:36:53','2021-08-07 12:10:43'),(50,1,3,'2300','32','2','1',1,'2021-07-29 17:59:19','2021-08-10 11:42:04'),(51,1,4,'1200','233','2','1',1,'2021-07-29 17:59:30','2021-08-28 16:48:11'),(52,1,30,'1200','123','1','1',1,'2021-07-29 18:01:31','2021-12-06 12:42:34'),(53,1,30,'2400','12','2','1',1,'2021-07-29 18:01:39','2021-11-30 16:44:17'),(54,1,1,'3400','Bed-68','2','1',1,'2021-07-29 18:24:06','2021-08-04 16:22:33'),(55,1,1,'7000','Bed-90','2','1',1,'2021-07-29 18:31:41','2021-09-21 12:45:31'),(56,1,1,'2211','Bed-200','2','1',1,'2021-07-29 18:39:09','2021-09-21 12:38:11'),(57,1,1,'2211','Bed-00','2','1',1,'2021-07-29 18:39:23','2021-09-17 11:05:38'),(58,1,1,'9009','brd-89','2','1',1,'2021-07-29 18:40:39','2021-09-17 11:22:26'),(59,1,1,'2345','bed-77','1','1',1,'2021-07-29 18:43:48','2021-12-06 12:58:34'),(60,1,3,'3000','newBed-90','2','1',1,'2021-07-29 18:53:37','2021-09-17 11:05:57'),(61,1,2,'1200','Bed-Kittu','2','1',1,'2021-07-29 18:54:03','2021-09-04 11:20:19'),(62,1,3,'1233','Bed-Gu','2','1',1,'2021-07-29 18:54:46','2021-09-17 11:08:57'),(63,1,2,'8000','Bed-500','2','1',1,'2021-09-04 10:27:51','2021-09-04 10:28:48'),(64,1,5,'1200','Bed-120','2','1',1,'2021-09-04 10:28:08','2021-09-17 11:13:04'),(65,2,31,'1299','b1','2','1',2,'2021-09-23 23:56:55','2021-10-08 18:20:59'),(66,2,31,'2400','b2','2','1',2,'2021-09-23 23:57:07','2021-10-08 18:31:15'),(67,1,1,'200','bed-212','1','1',1,'2022-01-31 10:26:12','2022-01-31 10:26:12'),(68,1,33,'200','bed 1','1','1',1,'2022-03-29 11:18:16','2022-03-29 11:18:16'),(69,1,33,'300','bed 2','1','1',1,'2022-03-29 11:18:26','2022-03-29 11:18:26'),(70,1,2,'465','dddd','1','1',1,'2022-03-29 11:47:26','2022-03-29 11:47:26'),(71,1,34,'22','2','1','1',1,'2022-03-29 11:58:44','2022-03-29 11:58:44');
/*!40000 ALTER TABLE `beds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branch_amenities`
--

DROP TABLE IF EXISTS `branch_amenities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `branch_amenities` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `amenity_id` int(11) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branch_amenities`
--

LOCK TABLES `branch_amenities` WRITE;
/*!40000 ALTER TABLE `branch_amenities` DISABLE KEYS */;
INSERT INTO `branch_amenities` VALUES (17,2,1,1,'2021-05-04 18:50:44','2021-05-04 18:50:44'),(18,2,4,1,'2021-05-04 18:50:44','2021-05-04 18:50:44'),(19,2,5,1,'2021-05-04 18:50:44','2021-05-04 18:50:44'),(20,2,9,1,'2021-05-04 18:50:44','2021-05-04 18:50:44'),(21,2,10,1,'2021-05-04 18:50:44','2021-05-04 18:50:44'),(22,2,12,1,'2021-05-04 18:50:44','2021-05-04 18:50:44'),(182,4,3,2,'2021-05-22 14:37:10','2021-05-22 14:37:10'),(183,4,5,2,'2021-05-22 14:37:10','2021-05-22 14:37:10'),(184,4,6,2,'2021-05-22 14:37:10','2021-05-22 14:37:10'),(185,4,8,2,'2021-05-22 14:37:10','2021-05-22 14:37:10'),(203,1,2,1,'2021-09-23 23:27:20','2021-09-23 23:27:20'),(204,1,4,1,'2021-09-23 23:27:20','2021-09-23 23:27:20'),(205,1,7,1,'2021-09-23 23:27:20','2021-09-23 23:27:20'),(206,1,9,1,'2021-09-23 23:27:20','2021-09-23 23:27:20'),(207,1,12,1,'2021-09-23 23:27:20','2021-09-23 23:27:20'),(208,1,15,1,'2021-09-23 23:27:20','2021-09-23 23:27:20');
/*!40000 ALTER TABLE `branch_amenities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branch_holidays`
--

DROP TABLE IF EXISTS `branch_holidays`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `branch_holidays` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `holiday_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branch_holidays`
--

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

--
-- Table structure for table `branch_managers`
--

DROP TABLE IF EXISTS `branch_managers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `branch_managers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `manager_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branch_managers`
--

LOCK TABLES `branch_managers` WRITE;
/*!40000 ALTER TABLE `branch_managers` DISABLE KEYS */;
INSERT INTO `branch_managers` VALUES (5,21,11,0,'2021-09-23 11:58:19','0000-00-00 00:00:00'),(6,26,17,0,'2021-09-23 11:58:19','0000-00-00 00:00:00'),(7,31,36,0,'2021-09-23 11:58:19','0000-00-00 00:00:00'),(8,32,36,0,'2021-09-23 11:58:19','0000-00-00 00:00:00'),(9,33,36,0,'2021-09-23 11:58:19','0000-00-00 00:00:00'),(10,34,36,0,'2021-09-23 11:58:19','0000-00-00 00:00:00'),(11,35,36,0,'2021-09-23 11:58:19','0000-00-00 00:00:00'),(19,39,1,1,'2021-10-01 18:11:01','2021-10-01 18:11:01'),(39,40,2,0,'2021-10-02 08:39:01','2021-10-02 08:39:01'),(51,4,1,0,'2021-10-08 17:19:54','2021-10-08 17:19:54'),(52,4,4,0,'2021-10-08 17:19:54','2021-10-08 17:19:54'),(56,41,4,0,'2021-10-08 17:40:00','2021-10-08 17:40:00'),(59,2,2,0,'2021-10-08 18:02:56','2021-10-08 18:02:56'),(60,2,4,0,'2021-10-08 18:02:56','2021-10-08 18:02:56');
/*!40000 ALTER TABLE `branch_managers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branches`
--

DROP TABLE IF EXISTS `branches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `branches` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `branch_name` varchar(50) NOT NULL,
  `branch_slug` text NOT NULL DEFAULT '\'\'',
  `branch_type` int(11) NOT NULL DEFAULT 1 COMMENT '1 for boys 2 for girls 3 for co-ed',
  `mobile` varchar(20) NOT NULL,
  `email` varchar(50) NOT NULL,
  `address` text NOT NULL,
  `state` int(11) NOT NULL DEFAULT 0,
  `description` text NOT NULL DEFAULT '',
  `city` int(11) NOT NULL DEFAULT 0,
  `status` enum('1','2','3') NOT NULL COMMENT '1=active,2=inactive, 3 = Pending',
  `latitude` varchar(20) NOT NULL,
  `longitude` varchar(20) NOT NULL,
  `approved_by` int(11) NOT NULL DEFAULT 0,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branches`
--

LOCK TABLES `branches` WRITE;
/*!40000 ALTER TABLE `branches` DISABLE KEYS */;
INSERT INTO `branches` VALUES (1,1,'Unique Pg - Boys','unique-pg-boys',1,'9782939007','gunjan@gmail.com','17- manav asaram ,near gopalpura puliya ,Jaipur',22,'',26,'1','','',0,1,'2021-04-15 17:47:57','2021-09-22 10:52:44'),(2,1,'Unique Pg - Girls','unique-pg-girls',2,'9782939007','gunjan@gmail.com','20 - manav asaram ,near gopalpura puliya ,Jaipur',22,'',26,'1','5464.559.40','3423.657.90',0,1,'2021-04-15 17:47:57','2021-09-22 10:52:44'),(4,1,'Unique PG - CoEd','unique-pg-coed',1,'9863892995','','Sultan Nagar, near Gurjar ki thadi Underpass\nJaipur, Rajasthan',22,'',26,'1','','',0,1,'2021-05-20 15:18:19','2021-09-22 10:52:44'),(6,3,'Gulati PG','gulati-pg',1,'7412011777','himanshu.gulati@bthawk.com','Dadi ka Phatak, Jaipiur, Rajasthan',22,'',26,'1','','',0,0,'2021-06-23 14:26:31','2021-09-22 10:52:44'),(7,4,'Malik House','malik-house',1,'9667783662','aadil.husain@bthawk.com','Vaishali Nagar, Jaipiur, Rajasthan',22,'',26,'1','','',0,0,'2021-06-24 11:27:09','2021-09-22 10:52:44'),(8,4,'Malik House 2','malik-house-2',1,'7849904537','aadil.malik@btrestro.com','kishanpura road ms school',22,'',26,'1','','',0,6,'2021-06-24 12:56:17','2021-09-22 10:52:44'),(9,5,'Royal PG','royal-pg',1,'8529547249','mumtaz.khan@bthawk.com','Jaipur, Rajasthan',22,'',51,'1','','',0,0,'2021-06-24 18:05:23','2021-09-22 10:52:44'),(10,6,'Easypg','easypg',1,'8529379900','sakshi.khandelwal@bthawk.com','BB-50Milap nagar,jaipur',22,'',26,'1','','',0,0,'2021-06-24 22:25:02','2021-09-22 10:52:44'),(11,7,'Vadic Kanya','vadic-kanya',1,'7412016633','ankita.agarwal@bthawk.com','37, Shyam Marg, Krishna Sarovar, Mansarovar, Jaipur',22,'',26,'1','','',0,0,'2021-06-24 22:25:38','2021-09-22 10:52:44'),(12,8,'KS house','ks-house',1,'8890625020','shristi.shekhawat@bthawk.com','64 A Durgapura jaipur',22,'',26,'1','','',0,0,'2021-06-24 22:26:34','2021-09-22 10:52:44'),(13,9,'Mannat PG','mannat-pg',1,'8890624277','raj.bhojak@bthawk.com','Ram tirth marg, Mansarover, jaipur',22,'',26,'1','','',0,11,'2021-06-24 22:27:14','2021-09-22 10:52:44'),(14,10,'PGVG','pgvg',1,'8529547245','bhagyashree.agarwal@bthawk.com','Jaipur, Rajasthan',22,'',26,'1','','',0,0,'2021-06-24 22:27:44','2021-09-22 10:52:44'),(15,11,'PG hub','pg-hub',1,'6375175966','sunil.pareek@bthawk.com','201, Manglam Signeture Tower, lalkothi, jaipur 302015',22,'',26,'1','','',0,0,'2021-06-24 22:33:04','2021-09-22 10:52:44'),(16,12,'BT PG','bt-pg',1,'7412036334','ayushi.jain@bthawk.com','201, Manglam Signeture Tower, lalkothi, jaipur 302015',22,'',26,'1','','',0,0,'2021-06-24 22:33:33','2021-09-22 10:52:44'),(17,13,'Xeniahub','xeniahub',1,'+919811031183','pankajc909@gmail.com','D-88 sector 56 gurgaon',22,'',26,'1','','',0,15,'2021-06-24 22:34:16','2021-09-22 10:52:44'),(18,14,'Sky PG','sky-pg',1,'7849904536','gurmit.kaur@bthawk.com','201, Manglam Signeture Tower, lalkothi, jaipur 302015',22,'',26,'1','','',0,0,'2021-06-24 22:35:21','2021-09-22 10:52:44'),(19,15,'PG Finder','pg-finder',1,'7877343607','sandeep.rathi@bthawk.com','201, Manglam signature tower, lal kothi , Jaipur , 302015',22,'',26,'1','','',0,0,'2021-06-24 22:35:57','2021-09-22 10:52:44'),(20,16,'PG Zone','pg-zone',1,'8529547231','sonu.chandani@bthawk.com','205, Manglam signature tower, lal kothi , Jaipur , 302015',22,'',26,'1','','',0,0,'2021-06-24 22:36:31','2021-09-22 10:52:44'),(21,17,'PG Nest','pg-nest',1,'7412063323','ghanshyam.vyas@bthawk.com','205, Manglam signature tower, lal kothi , Jaipur , 302015',22,'',26,'2','','',0,0,'2021-06-24 22:37:01','2021-09-22 10:52:44'),(22,7,'Vadic Kanya 2','vadic-kanya-2',1,'7412016633','ankita.agarwal@bthawk.com','Patel Marg, Mansarovar',22,'',26,'1','','',0,9,'2021-06-25 12:54:40','2021-09-22 10:52:44'),(23,18,'Agarwal House','agarwal-house',1,'7412016633','ankita.agarwal@bthawk.com','205, Manglam signature tower, lal kothi , Jaipur , 302015',22,'',26,'1','','',0,0,'2021-06-25 16:06:40','2021-09-22 10:52:44'),(24,18,'Agarwal Farm','agarwal-farm',1,'7412016633','ankita.agarwal@bthawk.com','Mansarovar',22,'',26,'1','','',0,20,'2021-06-25 16:23:18','2021-09-22 10:52:44'),(25,3,'TECH GIRLS PG','tech-girls-pg',1,'7777733333','7777733333@BTHAWK.COM','LAL KHOTHI',22,'',26,'1','','',0,5,'2021-06-29 12:13:26','2021-09-22 10:52:44'),(26,19,'Shyam PG','shyam-pg',1,'9414001123','pankaj.yadav1977@gmail.com','Plot no. 154, himmat Nagar, Gopal Pura Mod, Tonk Road, Jaipur, 302018',22,'',26,'1','','',0,0,'2021-07-01 11:22:52','2021-09-22 10:52:44'),(27,20,'Navya Girls PG','navya-girls-pg',1,'8005810321','niteshmehra2222@gmail.com','Shop no 3, 4, 5 Keshav vihar Near Gopal pura by pass Jaipur 302018',22,'',26,'1','','',0,0,'2021-07-01 12:23:20','2021-09-22 10:52:44'),(28,13,'vijay villa','vijay-villa',1,'9856843432','koshik@gmail.com','gurgaon',22,'',26,'1','','',1,15,'2021-07-01 14:57:17','2021-09-22 10:52:44'),(29,21,'Shree Vinayak Homes','shree-vinayak-homes',1,'9414363656','engg.mpchoudhary@gmail.com','Plot No 292. Surya nagar, mahesh nager road gopalpura baypass jaipur 302015',22,'',26,'1','','',0,0,'2021-07-01 16:49:34','2021-09-22 10:52:44'),(30,9,'Jannat PG','jannat-pg',1,'7849908843','raj.bhojak@bthawk.com','ABC Complex, Bundi',22,'',26,'3','','',0,11,'2021-07-01 18:21:39','2021-09-22 10:52:44'),(32,13,'dlf-3','dlf-3',1,'+919811031183','pankajc909@gmail.com','gurgaon',22,'',26,'3','','',0,15,'2021-07-03 16:44:13','2021-09-22 10:52:44'),(33,7,'Sonia Residency','sonia-residency',1,'9836584735','Sonia.gupta@gamil.com','201, C-scheme, Jaipur, Rajasthan',22,'',26,'3','','',0,9,'2021-07-06 17:25:48','2021-09-22 10:52:44'),(34,23,'Mansa Girls PG','mansa-girls-pg',1,'7014337725','imkajal1603@gmail.com','678, Dayal Nagar, Gopalpura Bypass, Jaipur',22,'',26,'1','','',0,0,'2021-07-08 17:18:27','2021-09-22 10:52:44'),(35,24,'KRC Boys pg','krc-boys-pg',1,'9462510911','krcclasses@gmail.com','180 Dr. Rajender Prasad nager mansarovar jaipur 302019',22,'',26,'1','','',0,0,'2021-07-09 12:18:07','2021-09-22 10:52:44'),(36,25,'Executive PG','executive-pg',1,'9029644455','madhujavkar@gmail.com','Executive PG, Shop No.1,Plot No.5,Sector 8, Airoli Navi Mumbai 400 708, Maharashtra',15,'',230,'1','','',0,0,'2021-07-13 17:51:36','2021-09-22 10:52:44'),(37,26,'Karni Pg','karni-pg',1,'6988856327','karni@gmail.com','Sodala, Jaipur',22,'',1,'1','26.8815377','75.7684794',1,1,'2021-07-22 07:35:17','2021-09-22 10:52:44'),(38,1,'gunjan hostel','gunjan-hostel',2,'1111111111','gunjan@gmail.com','goa',0,'',0,'3','12.322.9032.0','232.2888.9',0,1,'2021-07-22 17:41:13','2021-09-22 10:52:44'),(39,1,'uni kids','uni-kids',3,'9782939008','rr@gmail.com','sfsafas',4,'',282,'3','','',0,1,'2021-07-22 18:38:05','2021-09-22 11:01:30'),(40,27,'Preeti Pg','preeti-pg',3,'1111111111','preeti@gmail.com','Ajmer',22,'',2,'1','','',0,0,'2021-07-29 15:20:22','2021-09-22 10:52:44'),(41,28,'Gunjan Pg','gunjan-pg',3,'2222222222','abd@gmial.com','jaipur',1,'',156,'1','','',0,0,'2021-07-30 12:02:22','2021-09-22 10:52:44'),(42,29,'Gunjan@','gunjan-at',1,'9782839000','gunjan.bhatra@bthawk.com','Test',3,'',268,'1','','',0,0,'2021-07-30 16:02:31','2021-09-22 10:52:44'),(44,30,'Vish PG','vish-pg',2,'5867984576','vishnugmail@gmail.com','zucol jaipur',22,'',1,'1','','',0,0,'2022-02-12 11:17:22','2022-02-12 11:17:22');
/*!40000 ALTER TABLE `branches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bulk_uploads`
--

DROP TABLE IF EXISTS `bulk_uploads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `bulk_uploads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL DEFAULT 54,
  `resident_name` text NOT NULL,
  `contact` text NOT NULL,
  `gender` text NOT NULL,
  `address` text NOT NULL,
  `room_name` text NOT NULL,
  `bed` text NOT NULL,
  `rent` text NOT NULL,
  `registration_date` date DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `father_name` text NOT NULL,
  `father_contact` text NOT NULL,
  `mother_name` text NOT NULL,
  `mother_contact` text NOT NULL,
  `id_proof` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bulk_uploads`
--

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

--
-- Table structure for table `cash_entries`
--

DROP TABLE IF EXISTS `cash_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cash_entries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `date` date NOT NULL,
  `amount` varchar(255) NOT NULL DEFAULT '0',
  `description` text NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cash_entries`
--

LOCK TABLES `cash_entries` WRITE;
/*!40000 ALTER TABLE `cash_entries` DISABLE KEYS */;
INSERT INTO `cash_entries` VALUES (17,1,'2021-07-02','8000','test',0,'2021-07-02 07:27:25','2021-07-02 07:27:25'),(18,1,'2021-07-03','10','table expenses add cash',1,'2021-07-03 16:18:52','2021-07-03 16:18:52'),(19,1,'2021-07-03','15','cash',1,'2021-07-03 16:25:31','2021-07-03 16:25:31'),(20,1,'2021-07-15','1200','',1,'2021-07-15 16:36:11','2021-07-15 16:36:11'),(21,1,'2021-07-17','1200','extra',1,'2021-07-17 12:31:56','2021-07-17 12:31:56'),(22,1,'2021-07-19','1000','Gunjan Testing',1,'2021-07-19 12:37:38','2021-07-19 12:37:38'),(23,1,'2021-07-20','9','Extra',1,'2021-07-20 06:45:32','2021-07-20 06:45:32'),(24,2,'2021-07-21','5000','Test',1,'2021-07-21 10:34:56','2021-07-21 10:34:56'),(25,1,'2021-11-15','5000','Testing',1,'2021-11-15 15:27:39','2021-11-15 15:27:39');
/*!40000 ALTER TABLE `cash_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cash_out_entries`
--

DROP TABLE IF EXISTS `cash_out_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cash_out_entries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `date` date NOT NULL DEFAULT current_timestamp(),
  `amount` varchar(255) NOT NULL DEFAULT '0',
  `description` text NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cash_out_entries`
--

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

--
-- Table structure for table `cash_stocks`
--

DROP TABLE IF EXISTS `cash_stocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cash_stocks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `date` date DEFAULT NULL,
  `opening` varchar(255) NOT NULL DEFAULT '0',
  `closing` varchar(255) NOT NULL DEFAULT '0',
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  `created_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cash_stocks`
--

LOCK TABLES `cash_stocks` WRITE;
/*!40000 ALTER TABLE `cash_stocks` DISABLE KEYS */;
INSERT INTO `cash_stocks` VALUES (20,1,'2021-07-02','0','6881','2021-07-02 09:44:48','2021-07-02 09:44:48'),(21,1,'2021-07-03','6881','6000','2021-07-03 16:26:54','2021-07-03 16:26:54'),(22,1,'2021-07-04','6000','9881','2021-07-04 19:09:25','2021-07-04 19:09:25'),(23,1,'2021-07-05','9881','9781','2021-07-05 13:24:28','2021-07-05 13:24:28'),(24,1,'2021-07-07','9781','13462','2021-07-07 16:08:54','2021-07-07 16:08:54'),(25,1,'2021-07-08','13462','13362','2021-07-08 09:40:08','2021-07-08 09:40:08'),(26,1,'2021-07-15','13362','20830','2021-07-15 16:38:14','2021-07-15 16:38:14'),(27,1,'2021-07-17','20830','17597','2021-07-17 18:25:30','2021-07-17 18:25:30'),(28,1,'2021-07-19','17597','37431','2021-07-19 18:53:06','2021-07-19 18:53:06'),(29,2,'2021-07-19','0','1000','2021-07-19 17:30:54','2021-07-19 17:30:54'),(30,1,'2021-07-20','37431','41940','2021-07-20 06:47:38','2021-07-20 06:47:38'),(31,2,'2021-07-21','1000','5998','2021-07-21 10:39:53','2021-07-21 10:39:53'),(32,1,'2021-07-21','41940','41910','2021-07-21 10:41:08','2021-07-21 10:41:08'),(33,1,'2021-07-22','41910','39110','2021-07-22 01:05:29','2021-07-22 01:05:29'),(34,1,'2021-07-23','39110','39110','2021-07-23 16:43:13','2021-07-23 16:43:13'),(35,1,'2021-07-24','39110','129960','2021-07-24 17:51:15','2021-07-24 17:51:15'),(36,1,'2021-07-26','129960','179027','2021-07-26 19:02:49','2021-07-26 19:02:49'),(37,1,'2021-07-27','179027','201760','2021-07-27 10:29:10','2021-07-27 10:29:10'),(38,1,'2021-07-29','201760','251943','2021-07-29 18:03:10','2021-07-29 18:03:10'),(39,2,'2021-07-29','5998','18398','2021-07-29 10:39:06','2021-07-29 10:39:06'),(40,1,'2021-07-30','251943','322446','2021-07-30 18:02:27','2021-07-30 18:02:27'),(41,1,'2021-08-02','322446','322446','2021-08-02 18:52:14','2021-08-02 18:52:14'),(42,1,'2021-08-03','322446','349026','2021-08-03 18:10:34','2021-08-03 18:10:34'),(43,1,'2021-08-04','349026','464426','2021-08-04 18:55:57','2021-08-04 18:55:57'),(44,2,'2021-08-04','18398','32798','2021-08-04 17:58:02','2021-08-04 17:58:02'),(45,1,'2021-08-05','464426','507035','2021-08-05 18:23:31','2021-08-05 18:23:31'),(46,2,'2021-08-05','32798','32798','2021-08-05 16:08:56','2021-08-05 16:08:56'),(47,1,'2021-08-06','507035','527435','2021-08-06 19:26:29','2021-08-06 19:26:29'),(48,1,'2021-08-07','527435','684355','2021-08-07 17:41:21','2021-08-07 17:41:21'),(49,2,'2021-08-07','32798','35798','2021-08-07 12:10:43','2021-08-07 12:10:43'),(50,1,'2021-08-09','684355','777383','2021-08-09 19:03:58','2021-08-09 19:03:58'),(51,1,'2021-08-10','777383','842607','2021-08-10 18:12:04','2021-08-10 18:12:04'),(52,1,'2021-08-11','842607','876637','2021-08-11 10:11:40','2021-08-11 10:11:40'),(53,1,'2021-08-12','876637','893237','2021-08-12 17:24:06','2021-08-12 17:24:06'),(54,1,'2021-08-13','893237','911437','2021-08-13 17:29:11','2021-08-13 17:29:11'),(55,1,'2021-08-14','911437','914837','2021-08-14 17:34:15','2021-08-14 17:34:15'),(56,1,'2021-08-18','914837','923337','2021-08-18 11:10:02','2021-08-18 11:10:02'),(57,1,'2021-08-20','923337','923737','2021-08-20 17:17:43','2021-08-20 17:17:43'),(58,1,'2021-08-21','923737','925537','2021-08-21 15:48:04','2021-08-21 15:48:04'),(59,1,'2021-08-28','925537','931537','2021-08-28 17:22:21','2021-08-28 17:22:21'),(60,1,'2021-08-31','931537','939870','2021-08-31 19:04:36','2021-08-31 19:04:36'),(61,1,'2021-09-04','939870','986314','2021-09-04 11:22:15','2021-09-04 11:22:15'),(62,1,'2021-09-06','986314','981838','2021-09-06 13:11:21','2021-09-06 13:11:21'),(63,1,'2021-09-15','981838','988838','2021-09-15 14:34:10','2021-09-15 14:34:10'),(64,1,'2021-10-04','988838','995238','2021-10-04 19:37:22','2021-10-04 19:37:22'),(65,1,'2021-10-05','995238','1037188','2021-12-09 16:15:26','2021-12-09 16:15:26'),(66,1,'2021-10-06','1037188','1058688','2021-12-09 16:15:26','2021-12-09 16:15:26'),(67,1,'2021-10-07','1058688','1061488','2021-12-09 16:15:26','2021-12-09 16:15:26'),(68,1,'2021-10-08','1061488','1063888','2021-12-09 16:15:26','2021-12-09 16:15:26'),(69,1,'2021-10-16','1063888','1068888','2021-12-09 16:15:26','2021-12-09 16:15:26'),(70,1,'2021-10-21','1068888','1080888','2021-12-09 16:15:26','2021-12-09 16:15:26'),(71,1,'2021-11-02','1080888','1080000','2021-12-09 16:15:26','2021-12-09 16:15:26'),(72,2,'2021-11-02','35798','35198','2021-11-02 15:53:44','2021-11-02 15:53:44'),(73,1,'2021-11-15','1090805','1102505','2021-12-09 16:15:26','2021-12-09 16:15:26'),(74,1,'2021-11-12','1084222','1083022','2021-12-09 16:15:26','2021-12-09 16:15:26'),(75,1,'2021-11-13','1083022','1085000','2021-12-09 16:15:26','2021-12-09 16:15:26'),(76,1,'2021-11-14','1085000','1090805','2021-12-09 16:15:26','2021-12-09 16:15:26'),(77,1,'2021-11-10','1084400','1080822','2021-12-09 16:15:26','2021-12-09 16:15:26'),(78,1,'2021-11-16','1102505','1103505','2021-12-09 16:15:26','2021-12-09 16:15:26'),(79,1,'2021-11-11','1080822','1084222','2021-12-09 16:15:26','2021-12-09 16:15:26'),(80,1,'2021-11-09','1081000','1084400','2021-12-09 16:15:26','2021-12-09 16:15:26'),(81,1,'2021-11-07','1079800','1081000','2021-12-09 16:15:26','2021-12-09 16:15:26'),(82,1,'2021-11-06','1079800','1079800','2021-12-09 16:15:26','2021-12-09 16:15:26'),(83,1,'2021-11-04','1080000','1079800','2021-12-09 16:15:26','2021-12-09 16:15:26'),(84,1,'2021-12-07','1114505','1124505','2021-12-09 16:15:26','2021-12-09 16:15:26'),(85,1,'2021-12-04','1103505','1114505','2021-12-09 16:15:26','2021-12-09 16:15:26'),(86,1,'2022-01-27','1124505','1142838','2022-01-27 17:56:23','2022-01-27 17:56:23');
/*!40000 ALTER TABLE `cash_stocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cities`
--

DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cities` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state_id` int(11) NOT NULL,
  `city_name` varchar(100) NOT NULL,
  `city_slug` text NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=760 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cities`
--

LOCK TABLES `cities` WRITE;
/*!40000 ALTER TABLE `cities` DISABLE KEYS */;
INSERT INTO `cities` VALUES (1,22,'Abu Road','abu-road','2021-07-19 01:04:15','2021-09-23 16:20:30'),(2,22,'Ajmer','ajmer','2021-07-19 01:04:15','2021-09-23 16:20:30'),(3,22,'Alwar','alwar','2021-07-19 01:04:15','2021-09-23 16:20:30'),(4,22,'Amet','amet','2021-07-19 01:04:15','2021-09-23 16:20:30'),(5,22,'Banswara','banswara','2021-07-19 01:04:15','2021-09-23 16:20:30'),(6,22,'Baran','baran','2021-07-19 01:04:15','2021-09-23 16:20:30'),(7,22,'Barmer','barmer','2021-07-19 01:04:15','2021-09-23 16:20:30'),(8,22,'Beawar','beawar','2021-07-19 01:04:15','2021-09-23 16:20:30'),(9,22,'Behror','behror','2021-07-19 01:04:15','2021-09-23 16:20:30'),(10,22,'Bharatpur','bharatpur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(11,22,'Bhilwara','bhilwara','2021-07-19 01:04:15','2021-09-23 16:20:30'),(12,22,'Bhiwadi','bhiwadi','2021-07-19 01:04:15','2021-09-23 16:20:30'),(13,22,'Bikaner','bikaner','2021-07-19 01:04:15','2021-09-23 16:20:30'),(14,22,'Bissau','bissau','2021-07-19 01:04:15','2021-09-23 16:20:30'),(15,22,'Bundi','bundi','2021-07-19 01:04:15','2021-09-23 16:20:30'),(16,22,'Chittorgarh','chittorgarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(17,22,'Churu','churu','2021-07-19 01:04:15','2021-09-23 16:20:30'),(18,22,'Deeg','deeg','2021-07-19 01:04:15','2021-09-23 16:20:30'),(19,22,'Deogarh','deogarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(20,22,'Dholpur','dholpur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(21,22,'Didwana','didwana','2021-07-19 01:04:15','2021-09-23 16:20:30'),(22,22,'Dungarpur','dungarpur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(23,22,'Gangapur','gangapur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(24,22,'Hanumangarh','hanumangarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(25,22,'Hindaun','hindaun','2021-07-19 01:04:15','2021-09-23 16:20:30'),(26,22,'Jaipur','jaipur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(27,22,'Jaisalmer','jaisalmer','2021-07-19 01:04:15','2021-09-23 16:20:30'),(28,22,'Jhalawar','jhalawar','2021-07-19 01:04:15','2021-09-23 16:20:30'),(29,22,'Jhunjhunu','jhunjhunu','2021-07-19 01:04:15','2021-09-23 16:20:30'),(30,22,'Jodhpur','jodhpur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(31,22,'Kishangarh','kishangarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(32,22,'Kota','kota','2021-07-19 01:04:15','2021-09-23 16:20:30'),(33,22,'Kushalgarh','kushalgarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(34,22,'Laxmangarh','laxmangarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(35,22,'Makrana','makrana','2021-07-19 01:04:15','2021-09-23 16:20:30'),(36,22,'Mandawa','mandawa','2021-07-19 01:04:15','2021-09-23 16:20:30'),(37,22,'Merta','merta','2021-07-19 01:04:15','2021-09-23 16:20:30'),(38,22,'Nagaur','nagaur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(39,22,'Nathdwara','nathdwara','2021-07-19 01:04:15','2021-09-23 16:20:30'),(40,22,'Nawalgarh','nawalgarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(41,22,'Neemrana','neemrana','2021-07-19 01:04:15','2021-09-23 16:20:30'),(42,22,'Phalodi','phalodi','2021-07-19 01:04:15','2021-09-23 16:20:30'),(43,22,'Pushkar','pushkar','2021-07-19 01:04:15','2021-09-23 16:20:30'),(44,22,'Ranakpur','ranakpur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(45,22,'Sagwara','sagwara','2021-07-19 01:04:15','2021-09-23 16:20:30'),(46,22,'Sawai Madhopur','sawai-madhopur','2021-07-19 01:04:15','2021-09-23 16:20:30'),(47,22,'Sikar','sikar','2021-07-19 01:04:15','2021-09-23 16:20:30'),(48,22,'Sojat','sojat','2021-07-19 01:04:15','2021-09-23 16:20:30'),(49,22,'Sri Ganganagar','sri-ganganagar','2021-07-19 01:04:15','2021-09-23 16:20:30'),(50,22,'Sujangarh','sujangarh','2021-07-19 01:04:15','2021-09-23 16:20:30'),(51,22,'Udaipur','udaipur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(52,7,'Ahmedabad','ahmedabad','2021-07-19 01:04:15','2021-09-23 16:20:31'),(53,7,'Ambaji','ambaji','2021-07-19 01:04:15','2021-09-23 16:20:31'),(54,7,'Amreli','amreli','2021-07-19 01:04:15','2021-09-23 16:20:31'),(55,7,'Anand','anand','2021-07-19 01:04:15','2021-09-23 16:20:31'),(56,7,'Ankleshwar','ankleshwar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(57,7,'Barodli','barodli','2021-07-19 01:04:15','2021-09-23 16:20:31'),(58,7,'Bharuch','bharuch','2021-07-19 01:04:15','2021-09-23 16:20:31'),(59,7,'Bhavnagar','bhavnagar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(60,7,'Bhuj','bhuj','2021-07-19 01:04:15','2021-09-23 16:20:31'),(61,7,'Botad','botad','2021-07-19 01:04:15','2021-09-23 16:20:31'),(62,7,'Dahod','dahod','2021-07-19 01:04:15','2021-09-23 16:20:31'),(63,7,'Dakor','dakor','2021-07-19 01:04:15','2021-09-23 16:20:31'),(64,7,'Deesa','deesa','2021-07-19 01:04:15','2021-09-23 16:20:31'),(65,7,'Dudhrej','dudhrej','2021-07-19 01:04:15','2021-09-23 16:20:31'),(66,7,'Dwarka','dwarka','2021-07-19 01:04:15','2021-09-23 16:20:31'),(67,7,'Gandhidham','gandhidham','2021-07-19 01:04:15','2021-09-23 16:20:31'),(68,7,'Gandhinagar','gandhinagar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(69,7,'Godhara','godhara','2021-07-19 01:04:15','2021-09-23 16:20:31'),(70,7,'Gondal','gondal','2021-07-19 01:04:15','2021-09-23 16:20:31'),(71,7,'Himatnagar','himatnagar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(72,7,'Jamnagar','jamnagar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(73,7,'Jetpur','jetpur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(74,7,'Junagadh','junagadh','2021-07-19 01:04:15','2021-09-23 16:20:31'),(75,7,'Kalol','kalol','2021-07-19 01:04:15','2021-09-23 16:20:31'),(76,7,'Kandla','kandla','2021-07-19 01:04:15','2021-09-23 16:20:31'),(77,7,'Khambat','khambat','2021-07-19 01:04:15','2021-09-23 16:20:31'),(78,7,'Kheda','kheda','2021-07-19 01:04:15','2021-09-23 16:20:31'),(79,7,'Mehsana','mehsana','2021-07-19 01:04:15','2021-09-23 16:20:31'),(80,7,'Modasa','modasa','2021-07-19 01:04:15','2021-09-23 16:20:31'),(81,7,'Morbi','morbi','2021-07-19 01:04:15','2021-09-23 16:20:31'),(82,7,'Nadiad','nadiad','2021-07-19 01:04:15','2021-09-23 16:20:31'),(83,7,'Navsari','navsari','2021-07-19 01:04:15','2021-09-23 16:20:31'),(84,7,'Palanpur','palanpur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(85,7,'Palitana','palitana','2021-07-19 01:04:15','2021-09-23 16:20:31'),(86,7,'Patan','patan','2021-07-19 01:04:15','2021-09-23 16:20:31'),(87,7,'Porbandar','porbandar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(88,7,'Radhanpur','radhanpur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(89,7,'Rajkot','rajkot','2021-07-19 01:04:15','2021-09-23 16:20:31'),(90,7,'Sanand','sanand','2021-07-19 01:04:15','2021-09-23 16:20:31'),(91,7,'Saputara','saputara','2021-07-19 01:04:15','2021-09-23 16:20:31'),(92,7,'Surat','surat','2021-07-19 01:04:15','2021-09-23 16:20:31'),(93,7,'Surendranagar','surendranagar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(94,7,'Vadnagar','vadnagar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(95,7,'Vadodara','vadodara','2021-07-19 01:04:15','2021-09-23 16:20:31'),(96,7,'Valsad','valsad','2021-07-19 01:04:15','2021-09-23 16:20:31'),(97,7,'Vapi','vapi','2021-07-19 01:04:15','2021-09-23 16:20:31'),(98,7,'Veraval','veraval','2021-07-19 01:04:15','2021-09-23 16:20:31'),(99,7,'Viramgam','viramgam','2021-07-19 01:04:15','2021-09-23 16:20:31'),(100,7,'Visnagar','visnagar','2021-07-19 01:04:15','2021-09-23 16:20:31'),(101,7,'Wankaner','wankaner','2021-07-19 01:04:15','2021-09-23 16:20:31'),(102,6,'Aldona','aldona','2021-07-19 01:04:15','2021-09-23 16:20:31'),(103,6,'Anjuna','anjuna','2021-07-19 01:04:15','2021-09-23 16:20:31'),(104,6,'Aquem','aquem','2021-07-19 01:04:15','2021-09-23 16:20:31'),(105,6,'Arambol','arambol','2021-07-19 01:04:15','2021-09-23 16:20:31'),(106,6,'Baga','baga','2021-07-19 01:04:15','2021-09-23 16:20:31'),(107,6,'Bambolim','bambolim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(108,6,'Bandoda','bandoda','2021-07-19 01:04:15','2021-09-23 16:20:31'),(109,6,'Bardez','bardez','2021-07-19 01:04:15','2021-09-23 16:20:31'),(110,6,'Benaulim','benaulim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(111,6,'Bichloim','bichloim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(112,6,'Calangute','calangute','2021-07-19 01:04:15','2021-09-23 16:20:31'),(113,6,'Canacona','canacona','2021-07-19 01:04:15','2021-09-23 16:20:31'),(114,6,'Candolim','candolim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(115,6,'Cavelossim','cavelossim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(116,6,'Chaudi','chaudi','2021-07-19 01:04:15','2021-09-23 16:20:31'),(117,6,'Chicalim','chicalim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(118,6,'Chimbel','chimbel','2021-07-19 01:04:15','2021-09-23 16:20:31'),(119,6,'Colva','colva','2021-07-19 01:04:15','2021-09-23 16:20:31'),(120,6,'Cumbarjua','cumbarjua','2021-07-19 01:04:15','2021-09-23 16:20:31'),(121,6,'Cuncolim','cuncolim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(122,6,'Dabolim','dabolim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(123,6,'Davorlim','davorlim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(124,6,'Goa Velha','goa-velha','2021-07-19 01:04:15','2021-09-23 16:20:31'),(125,6,'Karapur','karapur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(126,6,'Mapusa','mapusa','2021-07-19 01:04:15','2021-09-23 16:20:31'),(127,6,'Margao','margao','2021-07-19 01:04:15','2021-09-23 16:20:31'),(128,6,'Morjim','morjim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(129,6,'Mormugao','mormugao','2021-07-19 01:04:15','2021-09-23 16:20:31'),(130,6,'Nabelim','nabelim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(131,6,'Netravali','netravali','2021-07-19 01:04:15','2021-09-23 16:20:31'),(132,6,'Panji','panji','2021-07-19 01:04:15','2021-09-23 16:20:31'),(133,6,'Pernem','pernem','2021-07-19 01:04:15','2021-09-23 16:20:31'),(134,6,'Pernem','pernem','2021-07-19 01:04:15','2021-09-23 16:20:31'),(135,6,'Ponda','ponda','2021-07-19 01:04:15','2021-09-23 16:20:31'),(136,6,'Porvorim','porvorim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(137,6,'Quepem','quepem','2021-07-19 01:04:15','2021-09-23 16:20:31'),(138,6,'Reis Magos','reis-magos','2021-07-19 01:04:15','2021-09-23 16:20:31'),(139,6,'Salcete','salcete','2021-07-19 01:04:15','2021-09-23 16:20:31'),(140,6,'Saligao','saligao','2021-07-19 01:04:15','2021-09-23 16:20:31'),(141,6,'Sancoale','sancoale','2021-07-19 01:04:15','2021-09-23 16:20:31'),(142,6,'Sanguem','sanguem','2021-07-19 01:04:15','2021-09-23 16:20:31'),(143,6,'Sanquelim','sanquelim','2021-07-19 01:04:15','2021-09-23 16:20:31'),(144,6,'Sanvordem','sanvordem','2021-07-19 01:04:15','2021-09-23 16:20:31'),(145,6,'Sao Jose de Areal','sao-jose-de-areal','2021-07-19 01:04:15','2021-09-23 16:20:31'),(146,6,'Satari','satari','2021-07-19 01:04:15','2021-09-23 16:20:31'),(147,6,'St. Cruz','st-cruz','2021-07-19 01:04:15','2021-09-23 16:20:31'),(148,6,'Valopi','valopi','2021-07-19 01:04:15','2021-09-23 16:20:31'),(149,6,'Varca','varca','2021-07-19 01:04:15','2021-09-23 16:20:31'),(150,6,'Vasco da Gama','vasco-da-gama','2021-07-19 01:04:15','2021-09-23 16:20:31'),(151,6,'Verna','verna','2021-07-19 01:04:15','2021-09-23 16:20:31'),(152,6,'Vodlemol Cacora','vodlemol-cacora','2021-07-19 01:04:15','2021-09-23 16:20:31'),(153,1,'Adoni','adoni','2021-07-19 01:04:15','2021-09-23 16:20:31'),(154,1,'Amalapuram','amalapuram','2021-07-19 01:04:15','2021-09-23 16:20:31'),(155,1,'Amaravati','amaravati','2021-07-19 01:04:15','2021-09-23 16:20:31'),(156,1,'Anakapalle','anakapalle','2021-07-19 01:04:15','2021-09-23 16:20:31'),(157,1,'Anantapur','anantapur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(158,1,'Bheemunipatnam','bheemunipatnam','2021-07-19 01:04:15','2021-09-23 16:20:31'),(159,1,'Bhimavaram','bhimavaram','2021-07-19 01:04:15','2021-09-23 16:20:31'),(160,1,'Bobbili','bobbili','2021-07-19 01:04:15','2021-09-23 16:20:31'),(161,1,'Chilakaluripet','chilakaluripet','2021-07-19 01:04:15','2021-09-23 16:20:31'),(162,1,'Chirala','chirala','2021-07-19 01:04:15','2021-09-23 16:20:31'),(163,1,'Chittoor','chittoor','2021-07-19 01:04:15','2021-09-23 16:20:31'),(164,1,'Dharmavaram','dharmavaram','2021-07-19 01:04:15','2021-09-23 16:20:31'),(165,1,'Eluru','eluru','2021-07-19 01:04:15','2021-09-23 16:20:31'),(166,1,'Gooty','gooty','2021-07-19 01:04:15','2021-09-23 16:20:31'),(167,1,'Gudivada','gudivada','2021-07-19 01:04:15','2021-09-23 16:20:31'),(168,1,'Guntakal','guntakal','2021-07-19 01:04:15','2021-09-23 16:20:31'),(169,1,'Guntur','guntur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(170,1,'Hindupur','hindupur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(171,1,'Jaggaiahpet','jaggaiahpet','2021-07-19 01:04:15','2021-09-23 16:20:31'),(172,1,'Kadapa','kadapa','2021-07-19 01:04:15','2021-09-23 16:20:31'),(173,1,'Kakinada','kakinada','2021-07-19 01:04:15','2021-09-23 16:20:31'),(174,1,'Kondapalli','kondapalli','2021-07-19 01:04:15','2021-09-23 16:20:31'),(175,1,'Kurnool','kurnool','2021-07-19 01:04:15','2021-09-23 16:20:31'),(176,1,'Machilipatnam','machilipatnam','2021-07-19 01:04:15','2021-09-23 16:20:31'),(177,1,'Madanapalle','madanapalle','2021-07-19 01:04:15','2021-09-23 16:20:31'),(178,1,'Mangalagiri','mangalagiri','2021-07-19 01:04:15','2021-09-23 16:20:31'),(179,1,'Nandyal','nandyal','2021-07-19 01:04:15','2021-09-23 16:20:31'),(180,1,'Narasaraopet','narasaraopet','2021-07-19 01:04:15','2021-09-23 16:20:31'),(181,1,'Nellore','nellore','2021-07-19 01:04:15','2021-09-23 16:20:31'),(182,1,'Nuzividu','nuzividu','2021-07-19 01:04:15','2021-09-23 16:20:31'),(183,1,'Ongole','ongole','2021-07-19 01:04:15','2021-09-23 16:20:31'),(184,1,'Palakollu','palakollu','2021-07-19 01:04:15','2021-09-23 16:20:31'),(185,1,'Proddatur','proddatur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(186,1,'Punganur','punganur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(187,1,'Puttaparthi','puttaparthi','2021-07-19 01:04:15','2021-09-23 16:20:31'),(188,1,'Puttur','puttur','2021-07-19 01:04:15','2021-09-23 16:20:31'),(189,1,'Rajahmundry','rajahmundry','2021-07-19 01:04:15','2021-09-23 16:20:31'),(190,1,'Sattenapalle','sattenapalle','2021-07-19 01:04:15','2021-09-23 16:20:31'),(191,1,'Srikakulam','srikakulam','2021-07-19 01:04:15','2021-09-23 16:20:31'),(192,1,'Srikalahasti','srikalahasti','2021-07-19 01:04:15','2021-09-23 16:20:31'),(193,1,'Srisailam','srisailam','2021-07-19 01:04:15','2021-09-23 16:20:31'),(194,1,'Tadepalligudem','tadepalligudem','2021-07-19 01:04:15','2021-09-23 16:20:31'),(195,1,'Tadipatri','tadipatri','2021-07-19 01:04:15','2021-09-23 16:20:31'),(196,1,'Tenali','tenali','2021-07-19 01:04:15','2021-09-23 16:20:31'),(197,1,'Tirupati','tirupati','2021-07-19 01:04:15','2021-09-23 16:20:31'),(198,1,'Vijayawada','vijayawada','2021-07-19 01:04:15','2021-09-23 16:20:31'),(199,1,'Visakhapatnam','visakhapatnam','2021-07-19 01:04:15','2021-09-23 16:20:31'),(200,1,'Vizianagaram','vizianagaram','2021-07-19 01:04:15','2021-09-23 16:20:31'),(201,1,'Warangal','warangal','2021-07-19 01:04:15','2021-09-23 16:20:31'),(202,1,'Warangal','warangal','2021-07-19 01:04:15','2021-09-23 16:20:31'),(203,1,'Yerraguntla','yerraguntla','2021-07-19 01:04:15','2021-09-23 16:20:31'),(204,15,'Achalpur','achalpur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(205,15,'Ahmednagar','ahmednagar','2021-07-19 01:14:18','2021-09-23 16:20:31'),(206,15,'Akola','akola','2021-07-19 01:14:18','2021-09-23 16:20:31'),(207,15,'Alibag','alibag','2021-07-19 01:14:18','2021-09-23 16:20:31'),(208,15,'Amravati','amravati','2021-07-19 01:14:18','2021-09-23 16:20:31'),(209,15,'Aurangabad','aurangabad','2021-07-19 01:14:18','2021-09-23 16:20:31'),(210,15,'Baramati','baramati','2021-07-19 01:14:18','2021-09-23 16:20:31'),(211,15,'Beed','beed','2021-07-19 01:14:18','2021-09-23 16:20:31'),(212,15,'Bhiwandi','bhiwandi','2021-07-19 01:14:18','2021-09-23 16:20:31'),(213,15,'Bhusawal','bhusawal','2021-07-19 01:14:18','2021-09-23 16:20:31'),(214,15,'Chandrapur','chandrapur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(215,15,'Chikhaldara','chikhaldara','2021-07-19 01:14:18','2021-09-23 16:20:31'),(216,15,'Dhule','dhule','2021-07-19 01:14:18','2021-09-23 16:20:31'),(217,15,'Dombivli','dombivli','2021-07-19 01:14:18','2021-09-23 16:20:31'),(218,15,'Gondia','gondia','2021-07-19 01:14:18','2021-09-23 16:20:31'),(219,15,'Jalgaon','jalgaon','2021-07-19 01:14:18','2021-09-23 16:20:31'),(220,15,'Jalna','jalna','2021-07-19 01:14:18','2021-09-23 16:20:31'),(221,15,'Kalyan','kalyan','2021-07-19 01:14:18','2021-09-23 16:20:31'),(222,15,'Kolhapur','kolhapur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(223,15,'Latur','latur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(224,15,'Latur','latur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(225,15,'Lonavla','lonavla','2021-07-19 01:14:18','2021-09-23 16:20:31'),(226,15,'Mahabaleshwar','mahabaleshwar','2021-07-19 01:14:18','2021-09-23 16:20:31'),(227,15,'Malegaon','malegaon','2021-07-19 01:14:18','2021-09-23 16:20:31'),(228,15,'Matheran','matheran','2021-07-19 01:14:18','2021-09-23 16:20:31'),(229,15,'Mira Bhayandar','mira-bhayandar','2021-07-19 01:14:18','2021-09-23 16:20:31'),(230,15,'Mumbai','mumbai','2021-07-19 01:14:18','2021-09-23 16:20:31'),(231,15,'Nagpur','nagpur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(232,15,'Nagpur','nagpur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(233,15,'Nanded','nanded','2021-07-19 01:14:18','2021-09-23 16:20:31'),(234,15,'Nashik','nashik','2021-07-19 01:14:18','2021-09-23 16:20:31'),(235,15,'Nashik','nashik','2021-07-19 01:14:18','2021-09-23 16:20:31'),(236,15,'Navi Mumbai','navi-mumbai','2021-07-19 01:14:18','2021-09-23 16:20:31'),(237,15,'Osmanabad','osmanabad','2021-07-19 01:14:18','2021-09-23 16:20:31'),(238,15,'Palghar','palghar','2021-07-19 01:14:18','2021-09-23 16:20:31'),(239,15,'Panvel','panvel','2021-07-19 01:14:18','2021-09-23 16:20:31'),(240,15,'Parbhani','parbhani','2021-07-19 01:14:18','2021-09-23 16:20:31'),(241,15,'Pimpri-Chinchwad','pimpri-chinchwad','2021-07-19 01:14:18','2021-09-23 16:20:31'),(242,15,'Pune','pune','2021-07-19 01:14:18','2021-09-23 16:20:31'),(243,15,'Ratnagiri','ratnagiri','2021-07-19 01:14:18','2021-09-23 16:20:31'),(244,15,'Sangli','sangli','2021-07-19 01:14:18','2021-09-23 16:20:31'),(245,15,'Satara','satara','2021-07-19 01:14:18','2021-09-23 16:20:31'),(246,15,'Satara','satara','2021-07-19 01:14:18','2021-09-23 16:20:31'),(247,15,'Shirdi','shirdi','2021-07-19 01:14:18','2021-09-23 16:20:31'),(248,15,'Solapur','solapur','2021-07-19 01:14:18','2021-09-23 16:20:31'),(249,15,'Thane','thane','2021-07-19 01:14:18','2021-09-23 16:20:31'),(250,15,'Ulhasnagar','ulhasnagar','2021-07-19 01:14:18','2021-09-23 16:20:31'),(251,15,'Vasai-Virar','vasai-virar','2021-07-19 01:14:18','2021-09-23 16:20:31'),(252,15,'Wardha','wardha','2021-07-19 01:14:18','2021-09-23 16:20:31'),(253,15,'Washim','washim','2021-07-19 01:14:18','2021-09-23 16:20:31'),(254,15,'Yavatmal','yavatmal','2021-07-19 01:14:18','2021-09-23 16:20:31'),(255,34,'New Delhi','new-delhi','2021-07-19 01:20:36','2021-09-23 16:20:31'),(256,34,'Gurugram','gurugram','2021-07-19 01:20:36','2021-09-23 16:20:31'),(257,34,'Delhi Cantonment','delhi-cantonment','2021-07-19 01:20:36','2021-09-23 16:20:31'),(258,34,'Shahdara','shahdara','2021-07-19 01:20:36','2021-09-23 16:20:31'),(259,34,'Patparganj','patparganj','2021-07-19 01:20:36','2021-09-23 16:20:31'),(260,2,'Khonsa','khonsa','2021-07-19 07:13:13','2021-09-23 16:20:31'),(261,2,'East Siang','east-siang','2021-07-19 07:13:13','2021-09-23 16:20:31'),(262,2,'Itanagar','itanagar','2021-07-19 07:13:13','2021-09-23 16:20:31'),(263,2,'Namsai','namsai','2021-07-19 07:13:13','2021-09-23 16:20:31'),(264,2,'Naharlagun','naharlagun','2021-07-19 07:13:13','2021-09-23 16:20:31'),(265,2,'Bordumsa','bordumsa','2021-07-19 07:13:13','2021-09-23 16:20:31'),(266,3,'Guwahati','guwahati','2021-07-19 07:16:12','2021-09-23 16:20:31'),(267,3,'Dibrugarh','dibrugarh','2021-07-19 07:16:12','2021-09-23 16:20:31'),(268,3,'Silchar','silchar','2021-07-19 07:16:12','2021-09-23 16:20:31'),(269,3,'Tezpur','tezpur','2021-07-19 07:16:12','2021-09-23 16:20:31'),(270,3,'Nagaon','nagaon','2021-07-19 07:16:12','2021-09-23 16:20:31'),(271,3,'Tinsukia','tinsukia','2021-07-19 07:16:12','2021-09-23 16:20:31'),(272,3,'Sivasagar','sivasagar','2021-07-19 07:16:12','2021-09-23 16:20:31'),(273,3,'Dhubri','dhubri','2021-07-19 07:16:12','2021-09-23 16:20:31'),(274,3,'Goalpara','goalpara','2021-07-19 07:16:12','2021-09-23 16:20:31'),(275,3,'Lakhimpur','lakhimpur','2021-07-19 07:16:12','2021-09-23 16:20:31'),(276,3,'Dispur','dispur','2021-07-19 07:16:12','2021-09-23 16:20:31'),(277,3,'Tangla','tangla','2021-07-19 07:16:12','2021-09-23 16:20:31'),(278,4,'Arrah','arrah','2021-07-19 07:25:49','2021-09-23 16:20:31'),(279,4,'Aurangabad','aurangabad','2021-07-19 07:25:49','2021-09-23 16:20:31'),(280,4,'Bagaha','bagaha','2021-07-19 07:25:49','2021-09-23 16:20:31'),(281,4,'Begusarai','begusarai','2021-07-19 07:25:49','2021-09-23 16:20:31'),(282,4,'Bettiah','bettiah','2021-07-19 07:25:49','2021-09-23 16:20:31'),(283,4,'Bhagalpur','bhagalpur','2021-07-19 07:25:49','2021-09-23 16:20:31'),(284,4,'Bihar Sharif','bihar-sharif','2021-07-19 07:25:49','2021-09-23 16:20:31'),(285,4,'Buxar','buxar','2021-07-19 07:25:49','2021-09-23 16:20:31'),(286,4,'Chhapra','chhapra','2021-07-19 07:25:49','2021-09-23 16:20:31'),(287,4,'Danapur','danapur','2021-07-19 07:25:49','2021-09-23 16:20:31'),(288,4,'Darbhanga','darbhanga','2021-07-19 07:25:49','2021-09-23 16:20:31'),(289,4,'Dehri','dehri','2021-07-19 07:25:49','2021-09-23 16:20:31'),(290,4,'Gaya','gaya','2021-07-19 07:25:49','2021-09-23 16:20:31'),(291,4,'Hajipur','hajipur','2021-07-19 07:25:49','2021-09-23 16:20:31'),(292,4,'Jamalpur','jamalpur','2021-07-19 07:25:49','2021-09-23 16:20:31'),(293,4,'Jehanabad','jehanabad','2021-07-19 07:25:49','2021-09-23 16:20:31'),(294,4,'Katihar','katihar','2021-07-19 07:25:49','2021-09-23 16:20:31'),(295,4,'Kishanganj','kishanganj','2021-07-19 07:25:49','2021-09-23 16:20:31'),(296,4,'Motihari','motihari','2021-07-19 07:25:49','2021-09-23 16:20:31'),(297,4,'Munger','munger','2021-07-19 07:25:49','2021-09-23 16:20:31'),(298,4,'Muzaffarpur','muzaffarpur','2021-07-19 07:25:49','2021-09-23 16:20:31'),(299,4,'Nawada','nawada','2021-07-19 07:25:49','2021-09-23 16:20:31'),(300,4,'Patna','patna','2021-07-19 07:25:49','2021-09-23 16:20:31'),(301,4,'Purnia','purnia','2021-07-19 07:25:49','2021-09-23 16:20:31'),(302,4,'Saharsa','saharsa','2021-07-19 07:25:49','2021-09-23 16:20:31'),(303,4,'Sasaram','sasaram','2021-07-19 07:25:49','2021-09-23 16:20:31'),(304,4,'Sitamarhi','sitamarhi','2021-07-19 07:25:49','2021-09-23 16:20:31'),(305,4,'Siwan','siwan','2021-07-19 07:25:49','2021-09-23 16:20:31'),(306,5,'Ambikapur','ambikapur','2021-07-19 07:33:36','2021-09-23 16:20:31'),(307,5,'Atal Nagar (New Raipur)','atal-nagar-new-raipur','2021-07-19 07:33:36','2021-09-23 16:20:31'),(308,5,'Bhilai','bhilai','2021-07-19 07:33:36','2021-09-23 16:20:31'),(309,5,'Bilaspur','bilaspur','2021-07-19 07:33:36','2021-09-23 16:20:31'),(310,5,'Chirmiri','chirmiri','2021-07-19 07:33:36','2021-09-23 16:20:31'),(311,5,'Dhamtari','dhamtari','2021-07-19 07:33:36','2021-09-23 16:20:31'),(312,5,'Jagdalpur','jagdalpur','2021-07-19 07:33:36','2021-09-23 16:20:31'),(313,5,'Korba','korba','2021-07-19 07:33:36','2021-09-23 16:20:31'),(314,5,'Mahasamund','mahasamund','2021-07-19 07:33:36','2021-09-23 16:20:31'),(315,5,'Raigarh','raigarh','2021-07-19 07:33:36','2021-09-23 16:20:31'),(316,5,'Raipur','raipur','2021-07-19 07:33:36','2021-09-23 16:20:31'),(317,5,'Rajnandgaon','rajnandgaon','2021-07-19 07:33:36','2021-09-23 16:20:31'),(318,8,'Ambala','ambala','2021-07-19 07:55:13','2021-09-23 16:20:31'),(319,8,'Bahadurgarh','bahadurgarh','2021-07-19 07:55:13','2021-09-23 16:20:31'),(320,8,'Bhiwani','bhiwani','2021-07-19 07:55:13','2021-09-23 16:20:31'),(321,8,'Faridabad','faridabad','2021-07-19 07:55:13','2021-09-23 16:20:31'),(322,8,'Gurugram','gurugram','2021-07-19 07:55:13','2021-09-23 16:20:31'),(323,8,'Hisar','hisar','2021-07-19 07:55:13','2021-09-23 16:20:31'),(324,8,'Jind','jind','2021-07-19 07:55:13','2021-09-23 16:20:31'),(325,8,'Kaithal','kaithal','2021-07-19 07:55:13','2021-09-23 16:20:31'),(326,8,'Karnal','karnal','2021-07-19 07:55:13','2021-09-23 16:20:31'),(327,8,'Kosli','kosli','2021-07-19 07:55:13','2021-09-23 16:20:31'),(328,8,'Mahendergarh','mahendergarh','2021-07-19 07:55:13','2021-09-23 16:20:31'),(329,8,'Panchkula','panchkula','2021-07-19 07:55:13','2021-09-23 16:20:31'),(330,8,'Panipat','panipat','2021-07-19 07:55:13','2021-09-23 16:20:31'),(331,8,'Pundri','pundri','2021-07-19 07:55:13','2021-09-23 16:20:31'),(332,8,'Rewari','rewari','2021-07-19 07:55:13','2021-09-23 16:20:31'),(333,8,'Rohtak','rohtak','2021-07-19 07:55:13','2021-09-23 16:20:31'),(334,8,'Sirsa','sirsa','2021-07-19 07:55:13','2021-09-23 16:20:31'),(335,8,'Sonipat','sonipat','2021-07-19 07:55:13','2021-09-23 16:20:31'),(336,8,'Thanesar','thanesar','2021-07-19 07:55:13','2021-09-23 16:20:31'),(337,8,'Yamunanagar','yamunanagar','2021-07-19 07:55:13','2021-09-23 16:20:31'),(338,9,'Baddi','baddi','2021-07-19 07:59:06','2021-09-23 16:20:31'),(339,9,'Bilaspur','bilaspur','2021-07-19 07:59:06','2021-09-23 16:20:31'),(340,9,'Chamba','chamba','2021-07-19 07:59:06','2021-09-23 16:20:31'),(341,9,'Dalhousie','dalhousie','2021-07-19 07:59:06','2021-09-23 16:20:31'),(342,9,'Dharamsala','dharamsala','2021-07-19 07:59:06','2021-09-23 16:20:31'),(343,9,'Hamirpur','hamirpur','2021-07-19 07:59:06','2021-09-23 16:20:31'),(344,9,'Kullu','kullu','2021-07-19 07:59:06','2021-09-23 16:20:31'),(345,9,'Manali','manali','2021-07-19 07:59:06','2021-09-23 16:20:31'),(346,9,'Mandi','mandi','2021-07-19 07:59:06','2021-09-23 16:20:31'),(347,9,'Nahan','nahan','2021-07-19 07:59:06','2021-09-23 16:20:31'),(348,9,'Nalagarh','nalagarh','2021-07-19 07:59:06','2021-09-23 16:20:31'),(349,9,'Nurpur','nurpur','2021-07-19 07:59:06','2021-09-23 16:20:31'),(350,9,'Palampur','palampur','2021-07-19 07:59:06','2021-09-23 16:20:31'),(351,9,'Paonta Sahib','paonta-sahib','2021-07-19 07:59:06','2021-09-23 16:20:31'),(352,9,'Shimla','shimla','2021-07-19 07:59:06','2021-09-23 16:20:31'),(353,9,'Solan','solan','2021-07-19 07:59:06','2021-09-23 16:20:31'),(354,9,'Sundarnagar','sundarnagar','2021-07-19 07:59:06','2021-09-23 16:20:31'),(355,9,'Una','una','2021-07-19 07:59:06','2021-09-23 16:20:31'),(356,9,'Yol Cantonment','yol-cantonment','2021-07-19 07:59:06','2021-09-23 16:20:31'),(357,10,'Srinagar','srinagar','2021-07-19 08:01:59','2021-09-23 16:20:31'),(358,10,'Jammu','jammu','2021-07-19 08:01:59','2021-09-23 16:20:31'),(359,10,'Anantnag','anantnag','2021-07-19 08:01:59','2021-09-23 16:20:31'),(360,11,'Bokaro Steel City','bokaro-steel-city','2021-07-19 08:06:13','2021-09-23 16:20:31'),(361,11,'Chirkunda','chirkunda','2021-07-19 08:06:13','2021-09-23 16:20:31'),(362,11,'Deoghar','deoghar','2021-07-19 08:06:13','2021-09-23 16:20:31'),(363,11,'Dhanbad','dhanbad','2021-07-19 08:06:13','2021-09-23 16:20:31'),(364,11,'Giridih','giridih','2021-07-19 08:06:13','2021-09-23 16:20:31'),(365,11,'Hazaribagh','hazaribagh','2021-07-19 08:06:13','2021-09-23 16:20:31'),(366,11,'Jamshedpur','jamshedpur','2021-07-19 08:06:13','2021-09-23 16:20:31'),(367,11,'Medininagar (Daltonganj)','medininagar-daltonganj','2021-07-19 08:06:13','2021-09-23 16:20:31'),(368,11,'Phusro','phusro','2021-07-19 08:06:13','2021-09-23 16:20:31'),(369,11,'Ramgarh','ramgarh','2021-07-19 08:06:13','2021-09-23 16:20:31'),(370,11,'Ranchi','ranchi','2021-07-19 08:06:13','2021-09-23 16:20:31'),(371,12,'Bagalkot','bagalkot','2021-07-19 08:10:33','2021-09-23 16:20:31'),(372,12,'Bangalore','bangalore','2021-07-19 08:10:33','2021-09-23 16:20:31'),(373,12,'Belgaum','belgaum','2021-07-19 08:10:33','2021-09-23 16:20:31'),(374,12,'Bellary','bellary','2021-07-19 08:10:33','2021-09-23 16:20:31'),(375,12,'Bhadravati','bhadravati','2021-07-19 08:10:33','2021-09-23 16:20:31'),(376,12,'Bidar','bidar','2021-07-19 08:10:33','2021-09-23 16:20:31'),(377,12,'Bijapur','bijapur','2021-07-19 08:10:33','2021-09-23 16:20:31'),(378,12,'Chikmagalur','chikmagalur','2021-07-19 08:10:33','2021-09-23 16:20:31'),(379,12,'Chitradurga','chitradurga','2021-07-19 08:10:33','2021-09-23 16:20:31'),(380,12,'Davanagere','davanagere','2021-07-19 08:10:33','2021-09-23 16:20:31'),(381,12,'Gadag-Betageri','gadag-betageri','2021-07-19 08:10:33','2021-09-23 16:20:31'),(382,12,'Gangavati','gangavati','2021-07-19 08:10:33','2021-09-23 16:20:31'),(383,12,'Gulbarga','gulbarga','2021-07-19 08:10:33','2021-09-23 16:20:31'),(384,12,'Harapanahalli','harapanahalli','2021-07-19 08:10:33','2021-09-23 16:20:31'),(385,12,'Hassan','hassan','2021-07-19 08:10:33','2021-09-23 16:20:31'),(386,12,'Hospet','hospet','2021-07-19 08:10:33','2021-09-23 16:20:31'),(387,12,'Hubli-Dharwad','hubli-dharwad','2021-07-19 08:10:33','2021-09-23 16:20:31'),(388,12,'Kolar','kolar','2021-07-19 08:10:33','2021-09-23 16:20:31'),(389,12,'Mandya','mandya','2021-07-19 08:10:33','2021-09-23 16:20:31'),(390,12,'Mangalore','mangalore','2021-07-19 08:10:33','2021-09-23 16:20:31'),(391,12,'Mysore','mysore','2021-07-19 08:10:33','2021-09-23 16:20:31'),(392,12,'Raichur','raichur','2021-07-19 08:10:33','2021-09-23 16:20:31'),(393,12,'Ranebennuru','ranebennuru','2021-07-19 08:10:33','2021-09-23 16:20:31'),(394,12,'Robertsonpet','robertsonpet','2021-07-19 08:10:33','2021-09-23 16:20:31'),(395,12,'Shimoga','shimoga','2021-07-19 08:10:33','2021-09-23 16:20:31'),(396,12,'Tumkur','tumkur','2021-07-19 08:10:33','2021-09-23 16:20:31'),(397,12,'Udupi','udupi','2021-07-19 08:10:33','2021-09-23 16:20:31'),(398,13,'Alappuzha','alappuzha','2021-07-19 08:14:09','2021-09-23 16:20:31'),(399,13,'Angamaly','angamaly','2021-07-19 08:14:09','2021-09-23 16:20:31'),(400,13,'Attingal','attingal','2021-07-19 08:14:09','2021-09-23 16:20:31'),(401,13,'Chalakudy','chalakudy','2021-07-19 08:14:09','2021-09-23 16:20:31'),(402,13,'Changanassery','changanassery','2021-07-19 08:14:09','2021-09-23 16:20:31'),(403,13,'Chavakkad','chavakkad','2021-07-19 08:14:09','2021-09-23 16:20:31'),(404,13,'Cherpulassery','cherpulassery','2021-07-19 08:14:09','2021-09-23 16:20:31'),(405,13,'Cherthala','cherthala','2021-07-19 08:14:09','2021-09-23 16:20:31'),(406,13,'Chittur-Thathamangalam','chittur-thathamangalam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(407,13,'Erattupetta','erattupetta','2021-07-19 08:14:09','2021-09-23 16:20:31'),(408,13,'Ettumanoor','ettumanoor','2021-07-19 08:14:09','2021-09-23 16:20:31'),(409,13,'Feroke','feroke','2021-07-19 08:14:09','2021-09-23 16:20:31'),(410,13,'Guruvayur','guruvayur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(411,13,'Haripad','haripad','2021-07-19 08:14:09','2021-09-23 16:20:31'),(412,13,'Irinjalakuda','irinjalakuda','2021-07-19 08:14:09','2021-09-23 16:20:31'),(413,13,'Iritty','iritty','2021-07-19 08:14:09','2021-09-23 16:20:31'),(414,13,'Kalamassery','kalamassery','2021-07-19 08:14:09','2021-09-23 16:20:31'),(415,13,'Kalpetta','kalpetta','2021-07-19 08:14:09','2021-09-23 16:20:31'),(416,13,'Kanhangad','kanhangad','2021-07-19 08:14:09','2021-09-23 16:20:31'),(417,13,'Kannur','kannur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(418,13,'Karunagappalli','karunagappalli','2021-07-19 08:14:09','2021-09-23 16:20:31'),(419,13,'Kasaragod','kasaragod','2021-07-19 08:14:09','2021-09-23 16:20:31'),(420,13,'Kattappana','kattappana','2021-07-19 08:14:09','2021-09-23 16:20:31'),(421,13,'Kayamkulam','kayamkulam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(422,13,'Kochi','kochi','2021-07-19 08:14:09','2021-09-23 16:20:31'),(423,13,'Kodungallur','kodungallur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(424,13,'Koduvally','koduvally','2021-07-19 08:14:09','2021-09-23 16:20:31'),(425,13,'Kollam','kollam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(426,13,'Kondotty','kondotty','2021-07-19 08:14:09','2021-09-23 16:20:31'),(427,13,'Kothamangalam','kothamangalam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(428,13,'Kottakkal','kottakkal','2021-07-19 08:14:09','2021-09-23 16:20:31'),(429,13,'Kottarakara','kottarakara','2021-07-19 08:14:09','2021-09-23 16:20:31'),(430,13,'Kottayam','kottayam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(431,13,'Koyilandy','koyilandy','2021-07-19 08:14:09','2021-09-23 16:20:31'),(432,13,'Kozhikode','kozhikode','2021-07-19 08:14:09','2021-09-23 16:20:31'),(433,13,'Kunnamkulam','kunnamkulam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(434,13,'Kuthuparamba','kuthuparamba','2021-07-19 08:14:09','2021-09-23 16:20:31'),(435,13,'Malappuram','malappuram','2021-07-19 08:14:09','2021-09-23 16:20:31'),(436,13,'Mananthavady','mananthavady','2021-07-19 08:14:09','2021-09-23 16:20:31'),(437,13,'Manjeri','manjeri','2021-07-19 08:14:09','2021-09-23 16:20:31'),(438,13,'Mannarkkad','mannarkkad','2021-07-19 08:14:09','2021-09-23 16:20:31'),(439,13,'Maradu','maradu','2021-07-19 08:14:09','2021-09-23 16:20:31'),(440,13,'Mattanur','mattanur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(441,13,'Mukkam','mukkam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(442,13,'Muvattupuzha','muvattupuzha','2021-07-19 08:14:09','2021-09-23 16:20:31'),(443,13,'Nedumangad','nedumangad','2021-07-19 08:14:09','2021-09-23 16:20:31'),(444,13,'Neyyattinkara','neyyattinkara','2021-07-19 08:14:09','2021-09-23 16:20:31'),(445,13,'Nilambur','nilambur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(446,13,'Nileshwaram','nileshwaram','2021-07-19 08:14:09','2021-09-23 16:20:31'),(447,13,'North Paravur','north-paravur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(448,13,'Ottappalam','ottappalam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(449,13,'Palakkad','palakkad','2021-07-19 08:14:09','2021-09-23 16:20:31'),(450,13,'Pandalam','pandalam','2021-07-19 08:14:09','2021-09-23 16:20:31'),(451,13,'Panoor','panoor','2021-07-19 08:14:09','2021-09-23 16:20:31'),(452,13,'Parappanangadi','parappanangadi','2021-07-19 08:14:09','2021-09-23 16:20:31'),(453,13,'Paravur','paravur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(454,13,'Pathanamthitta','pathanamthitta','2021-07-19 08:14:09','2021-09-23 16:20:31'),(455,13,'Payyanur','payyanur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(456,13,'Payyoli','payyoli','2021-07-19 08:14:09','2021-09-23 16:20:31'),(457,13,'Perinthalmanna','perinthalmanna','2021-07-19 08:14:09','2021-09-23 16:20:31'),(458,13,'Ponnani','ponnani','2021-07-19 08:14:09','2021-09-23 16:20:31'),(459,13,'Punalur','punalur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(460,13,'Ramanattukara','ramanattukara','2021-07-19 08:14:09','2021-09-23 16:20:31'),(461,13,'Shornur','shornur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(462,13,'Sreekandapuram','sreekandapuram','2021-07-19 08:14:09','2021-09-23 16:20:31'),(463,13,'Sultan Bathery','sultan-bathery','2021-07-19 08:14:09','2021-09-23 16:20:31'),(464,13,'Taliparamba','taliparamba','2021-07-19 08:14:09','2021-09-23 16:20:31'),(465,13,'Tanur','tanur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(466,13,'Thalassery','thalassery','2021-07-19 08:14:09','2021-09-23 16:20:31'),(467,13,'Thiruvananthapuram','thiruvananthapuram','2021-07-19 08:14:09','2021-09-23 16:20:31'),(468,13,'Thodupuzha','thodupuzha','2021-07-19 08:14:09','2021-09-23 16:20:31'),(469,13,'Thrikkakkara','thrikkakkara','2021-07-19 08:14:09','2021-09-23 16:20:31'),(470,13,'Thrippunithura','thrippunithura','2021-07-19 08:14:09','2021-09-23 16:20:31'),(471,13,'Thrissur','thrissur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(472,13,'Tirur','tirur','2021-07-19 08:14:09','2021-09-23 16:20:31'),(473,13,'Tirurangadi','tirurangadi','2021-07-19 08:14:09','2021-09-23 16:20:31'),(474,13,'Tiruvalla','tiruvalla','2021-07-19 08:14:09','2021-09-23 16:20:31'),(475,13,'Valanchery','valanchery','2021-07-19 08:14:09','2021-09-23 16:20:31'),(476,13,'Varkala','varkala','2021-07-19 08:14:09','2021-09-23 16:20:31'),(477,13,'Vatakara','vatakara','2021-07-19 08:14:09','2021-09-23 16:20:31'),(478,13,'Wadakkancherry','wadakkancherry','2021-07-19 08:14:09','2021-09-23 16:20:31'),(479,14,'Betul','betul','2021-07-19 08:17:20','2021-09-23 16:20:31'),(480,14,'Bhind','bhind','2021-07-19 08:17:20','2021-09-23 16:20:31'),(481,14,'Bhopal','bhopal','2021-07-19 08:17:20','2021-09-23 16:20:31'),(482,14,'Burhanpur','burhanpur','2021-07-19 08:17:20','2021-09-23 16:20:31'),(483,14,'Chhatarpur','chhatarpur','2021-07-19 08:17:20','2021-09-23 16:20:31'),(484,14,'Chhindwara','chhindwara','2021-07-19 08:17:20','2021-09-23 16:20:31'),(485,14,'Damoh','damoh','2021-07-19 08:17:20','2021-09-23 16:20:31'),(486,14,'Datia','datia','2021-07-19 08:17:20','2021-09-23 16:20:31'),(487,14,'Dewas','dewas','2021-07-19 08:17:20','2021-09-23 16:20:31'),(488,14,'Dindori','dindori','2021-07-19 08:17:20','2021-09-23 16:20:31'),(489,14,'Guna','guna','2021-07-19 08:17:20','2021-09-23 16:20:31'),(490,14,'Gwalior','gwalior','2021-07-19 08:17:20','2021-09-23 16:20:31'),(491,14,'Indore','indore','2021-07-19 08:17:20','2021-09-23 16:20:31'),(492,14,'Itarsi','itarsi','2021-07-19 08:17:20','2021-09-23 16:20:31'),(493,14,'Jabalpur','jabalpur','2021-07-19 08:17:20','2021-09-23 16:20:31'),(494,14,'Khandwa','khandwa','2021-07-19 08:17:20','2021-09-23 16:20:31'),(495,14,'Khargone','khargone','2021-07-19 08:17:20','2021-09-23 16:20:31'),(496,14,'Mandsaur','mandsaur','2021-07-19 08:17:20','2021-09-23 16:20:31'),(497,14,'Morena[2]','morena2','2021-07-19 08:17:20','2021-09-23 16:20:31'),(498,14,'Murwara (Katni)','murwara-katni','2021-07-19 08:17:20','2021-09-23 16:20:31'),(499,14,'Nagda','nagda','2021-07-19 08:17:20','2021-09-23 16:20:31'),(500,14,'Narmadapuram','narmadapuram','2021-07-19 08:17:20','2021-09-23 16:20:31'),(501,14,'Neemuch','neemuch','2021-07-19 08:17:20','2021-09-23 16:20:31'),(502,14,'Pithampur','pithampur','2021-07-19 08:17:20','2021-09-23 16:20:31'),(503,14,'Ratlam','ratlam','2021-07-19 08:17:20','2021-09-23 16:20:31'),(504,14,'Rewa','rewa','2021-07-19 08:17:20','2021-09-23 16:20:31'),(505,14,'Sagar','sagar','2021-07-19 08:17:20','2021-09-23 16:20:31'),(506,14,'Satna','satna','2021-07-19 08:17:20','2021-09-23 16:20:31'),(507,14,'Sehore','sehore','2021-07-19 08:17:20','2021-09-23 16:20:31'),(508,14,'Seoni','seoni','2021-07-19 08:17:20','2021-09-23 16:20:31'),(509,14,'Shivpuri','shivpuri','2021-07-19 08:17:20','2021-09-23 16:20:31'),(510,14,'Singrauli','singrauli','2021-07-19 08:17:20','2021-09-23 16:20:31'),(511,14,'Ujjain','ujjain','2021-07-19 08:17:20','2021-09-23 16:20:31'),(512,14,'Vidisha','vidisha','2021-07-19 08:17:20','2021-09-23 16:20:31'),(513,16,'Bishnupur','bishnupur','2021-07-19 08:19:31','2021-09-23 16:20:31'),(514,16,'Chandel','chandel','2021-07-19 08:19:31','2021-09-23 16:20:31'),(515,16,'Churachandpur','churachandpur','2021-07-19 08:19:31','2021-09-23 16:20:31'),(516,16,'Imphal East','imphal-east','2021-07-19 08:19:31','2021-09-23 16:20:31'),(517,16,'Imphal West','imphal-west','2021-07-19 08:19:31','2021-09-23 16:20:31'),(518,16,'Jiribam','jiribam','2021-07-19 08:19:31','2021-09-23 16:20:31'),(519,16,'Kakching','kakching','2021-07-19 08:19:31','2021-09-23 16:20:31'),(520,16,'Kamjong','kamjong','2021-07-19 08:19:31','2021-09-23 16:20:31'),(521,16,'Kangpokpi Sadar Hills)','kangpokpi-sadar-hills','2021-07-19 08:19:31','2021-09-23 16:20:31'),(522,16,'Noney','noney','2021-07-19 08:19:31','2021-09-23 16:20:31'),(523,16,'Pherzawl','pherzawl','2021-07-19 08:19:31','2021-09-23 16:20:31'),(524,16,'Senapati','senapati','2021-07-19 08:19:31','2021-09-23 16:20:31'),(525,16,'Tamenglong','tamenglong','2021-07-19 08:19:31','2021-09-23 16:20:31'),(526,16,'Tengnoupal','tengnoupal','2021-07-19 08:19:31','2021-09-23 16:20:31'),(527,16,'Thoubal','thoubal','2021-07-19 08:19:31','2021-09-23 16:20:31'),(528,16,'Ukhrul','ukhrul','2021-07-19 08:19:31','2021-09-23 16:20:31'),(529,17,'East Garo Hills','east-garo-hills','2021-07-19 08:22:32','2021-09-23 16:20:31'),(530,17,'East Jaintia Hills','east-jaintia-hills','2021-07-19 08:22:32','2021-09-23 16:20:31'),(531,17,'East Khasi Hills','east-khasi-hills','2021-07-19 08:22:32','2021-09-23 16:20:31'),(532,17,'North Garo Hills','north-garo-hills','2021-07-19 08:22:32','2021-09-23 16:20:31'),(533,17,'Ri-Bhoi','ri-bhoi','2021-07-19 08:22:32','2021-09-23 16:20:31'),(534,17,'South Garo Hills','south-garo-hills','2021-07-19 08:22:33','2021-09-23 16:20:31'),(535,17,'South West Garo Hills','south-west-garo-hills','2021-07-19 08:22:33','2021-09-23 16:20:31'),(536,17,'South West Khasi Hills','south-west-khasi-hills','2021-07-19 08:22:33','2021-09-23 16:20:31'),(537,17,'West Garo Hills','west-garo-hills','2021-07-19 08:22:33','2021-09-23 16:20:31'),(538,17,'West Jaintia Hills','west-jaintia-hills','2021-07-19 08:22:33','2021-09-23 16:20:31'),(539,17,'West Khasi Hills','west-khasi-hills','2021-07-19 08:22:33','2021-09-23 16:20:31'),(540,18,'Aizawl','aizawl','2021-07-19 08:36:40','2021-09-23 16:20:31'),(541,18,'Champhai','champhai','2021-07-19 08:36:40','2021-09-23 16:20:31'),(542,18,'Kolasib','kolasib','2021-07-19 08:36:40','2021-09-23 16:20:31'),(543,18,'Lawngtlai','lawngtlai','2021-07-19 08:36:40','2021-09-23 16:20:31'),(544,18,'Lunglei','lunglei','2021-07-19 08:36:40','2021-09-23 16:20:31'),(545,18,'Mamit','mamit','2021-07-19 08:36:40','2021-09-23 16:20:31'),(546,18,'Saiha','saiha','2021-07-19 08:36:40','2021-09-23 16:20:31'),(547,18,'Serchhip','serchhip','2021-07-19 08:36:40','2021-09-23 16:20:31'),(548,19,'Dimapur','dimapur','2021-07-19 08:40:01','2021-09-23 16:20:31'),(549,19,'Kiphire','kiphire','2021-07-19 08:40:01','2021-09-23 16:20:31'),(550,19,'Kohima','kohima','2021-07-19 08:40:01','2021-09-23 16:20:31'),(551,19,'Longleng','longleng','2021-07-19 08:40:01','2021-09-23 16:20:31'),(552,19,'Mokokchung','mokokchung','2021-07-19 08:40:01','2021-09-23 16:20:31'),(553,19,'Mon','mon','2021-07-19 08:40:01','2021-09-23 16:20:31'),(554,19,'Noklak','noklak','2021-07-19 08:40:01','2021-09-23 16:20:31'),(555,19,'Peren','peren','2021-07-19 08:40:01','2021-09-23 16:20:31'),(556,19,'Phek','phek','2021-07-19 08:40:01','2021-09-23 16:20:31'),(557,19,'Tuensang','tuensang','2021-07-19 08:40:01','2021-09-23 16:20:31'),(558,19,'Wokha','wokha','2021-07-19 08:40:01','2021-09-23 16:20:31'),(559,19,'Zunheboto','zunheboto','2021-07-19 08:40:01','2021-09-23 16:20:31'),(560,20,'Balasore','balasore','2021-07-19 08:42:32','2021-09-23 16:20:31'),(561,20,'Baripada','baripada','2021-07-19 08:42:32','2021-09-23 16:20:31'),(562,20,'Berhampur','berhampur','2021-07-19 08:42:32','2021-09-23 16:20:31'),(563,20,'Bhadrak','bhadrak','2021-07-19 08:42:32','2021-09-23 16:20:31'),(564,20,'Bhubaneswar','bhubaneswar','2021-07-19 08:42:32','2021-09-23 16:20:31'),(565,20,'Cuttack','cuttack','2021-07-19 08:42:32','2021-09-23 16:20:31'),(566,20,'Puri','puri','2021-07-19 08:42:32','2021-09-23 16:20:31'),(567,20,'Rourkela','rourkela','2021-07-19 08:42:32','2021-09-23 16:20:31'),(568,20,'Sambalpur','sambalpur','2021-07-19 08:42:32','2021-09-23 16:20:31'),(569,21,'Abohar','abohar','2021-07-19 13:09:26','2021-09-23 16:20:31'),(570,21,'Amritsar','amritsar','2021-07-19 13:09:26','2021-09-23 16:20:31'),(571,21,'Barnala','barnala','2021-07-19 13:09:26','2021-09-23 16:20:31'),(572,21,'Batala','batala','2021-07-19 13:09:26','2021-09-23 16:20:31'),(573,21,'Bathinda','bathinda','2021-07-19 13:09:26','2021-09-23 16:20:31'),(574,21,'Faridkot','faridkot','2021-07-19 13:09:26','2021-09-23 16:20:31'),(575,21,'Firozpur','firozpur','2021-07-19 13:09:26','2021-09-23 16:20:31'),(576,21,'Hoshiarpur','hoshiarpur','2021-07-19 13:09:26','2021-09-23 16:20:31'),(577,21,'Jalandhar','jalandhar','2021-07-19 13:09:26','2021-09-23 16:20:31'),(578,21,'Kapurthala','kapurthala','2021-07-19 13:09:26','2021-09-23 16:20:31'),(579,21,'Khanna','khanna','2021-07-19 13:09:26','2021-09-23 16:20:31'),(580,21,'Ludhiana','ludhiana','2021-07-19 13:09:26','2021-09-23 16:20:31'),(581,21,'Malerkotla','malerkotla','2021-07-19 13:09:26','2021-09-23 16:20:31'),(582,21,'Moga','moga','2021-07-19 13:09:26','2021-09-23 16:20:31'),(583,21,'Mohali','mohali','2021-07-19 13:09:26','2021-09-23 16:20:31'),(584,21,'Muktsar','muktsar','2021-07-19 13:09:26','2021-09-23 16:20:31'),(585,21,'Pathankot','pathankot','2021-07-19 13:09:26','2021-09-23 16:20:31'),(586,21,'Patiala','patiala','2021-07-19 13:09:26','2021-09-23 16:20:31'),(587,21,'Phagwara','phagwara','2021-07-19 13:09:26','2021-09-23 16:20:31'),(588,21,'Rajpura','rajpura','2021-07-19 13:09:26','2021-09-23 16:20:31'),(589,21,'Sunam','sunam','2021-07-19 13:09:26','2021-09-23 16:20:31'),(590,24,'Ambur','ambur','2021-07-19 13:12:13','2021-09-23 16:20:31'),(591,24,'Chennai','chennai','2021-07-19 13:12:13','2021-09-23 16:20:31'),(592,24,'Coimbatore','coimbatore','2021-07-19 13:12:13','2021-09-23 16:20:31'),(593,24,'Cuddalore','cuddalore','2021-07-19 13:12:13','2021-09-23 16:20:31'),(594,24,'Dindigul','dindigul','2021-07-19 13:12:13','2021-09-23 16:20:31'),(595,24,'Erode','erode','2021-07-19 13:12:13','2021-09-23 16:20:31'),(596,24,'Gudiyatham','gudiyatham','2021-07-19 13:12:13','2021-09-23 16:20:31'),(597,24,'Hosur','hosur','2021-07-19 13:12:13','2021-09-23 16:20:31'),(598,24,'Kanchipuram','kanchipuram','2021-07-19 13:12:13','2021-09-23 16:20:31'),(599,24,'Karaikkudi','karaikkudi','2021-07-19 13:12:13','2021-09-23 16:20:31'),(600,24,'Karur','karur','2021-07-19 13:12:13','2021-09-23 16:20:31'),(601,24,'Kumarapalayam','kumarapalayam','2021-07-19 13:12:13','2021-09-23 16:20:31'),(602,24,'Kumbakonam','kumbakonam','2021-07-19 13:12:13','2021-09-23 16:20:31'),(603,24,'Madurai','madurai','2021-07-19 13:12:13','2021-09-23 16:20:31'),(604,24,'Nagapattinam','nagapattinam','2021-07-19 13:12:13','2021-09-23 16:20:31'),(605,24,'Nagercoil','nagercoil','2021-07-19 13:12:13','2021-09-23 16:20:31'),(606,24,'Neyveli','neyveli','2021-07-19 13:12:13','2021-09-23 16:20:31'),(607,24,'Pollachi','pollachi','2021-07-19 13:12:13','2021-09-23 16:20:31'),(608,24,'Pudukkottai','pudukkottai','2021-07-19 13:12:13','2021-09-23 16:20:31'),(609,24,'Rajapalayam','rajapalayam','2021-07-19 13:12:13','2021-09-23 16:20:31'),(610,24,'Ranipet','ranipet','2021-07-19 13:12:13','2021-09-23 16:20:31'),(611,24,'Salem','salem','2021-07-19 13:12:13','2021-09-23 16:20:31'),(612,24,'Sivakasi','sivakasi','2021-07-19 13:12:13','2021-09-23 16:20:31'),(613,24,'Thanjavur','thanjavur','2021-07-19 13:12:13','2021-09-23 16:20:31'),(614,24,'Thoothukkudi','thoothukkudi','2021-07-19 13:12:13','2021-09-23 16:20:31'),(615,24,'Tiruchirappalli','tiruchirappalli','2021-07-19 13:12:13','2021-09-23 16:20:31'),(616,24,'Tirunelveli','tirunelveli','2021-07-19 13:12:13','2021-09-23 16:20:31'),(617,24,'Tiruppur','tiruppur','2021-07-19 13:12:13','2021-09-23 16:20:31'),(618,24,'Tiruvannamalai','tiruvannamalai','2021-07-19 13:12:13','2021-09-23 16:20:31'),(619,24,'Udhagamandalam','udhagamandalam','2021-07-19 13:12:13','2021-09-23 16:20:31'),(620,24,'Vaniyambadi','vaniyambadi','2021-07-19 13:12:13','2021-09-23 16:20:31'),(621,24,'Vellore','vellore','2021-07-19 13:12:13','2021-09-23 16:20:31'),(622,25,'Adilabad','adilabad','2021-07-19 13:17:07','2021-09-23 16:20:31'),(623,25,'Hyderabad','hyderabad','2021-07-19 13:17:07','2021-09-23 16:20:31'),(624,25,'Jagtial','jagtial','2021-07-19 13:17:07','2021-09-23 16:20:31'),(625,25,'Karimnagar','karimnagar','2021-07-19 13:17:07','2021-09-23 16:20:31'),(626,25,'Khammam','khammam','2021-07-19 13:17:07','2021-09-23 16:20:31'),(627,25,'Mahabubnagar','mahabubnagar','2021-07-19 13:17:07','2021-09-23 16:20:31'),(628,25,'Miryalaguda','miryalaguda','2021-07-19 13:17:07','2021-09-23 16:20:31'),(629,25,'Nalgonda','nalgonda','2021-07-19 13:17:07','2021-09-23 16:20:31'),(630,25,'Nizamabad','nizamabad','2021-07-19 13:17:07','2021-09-23 16:20:31'),(631,25,'Ramagundam','ramagundam','2021-07-19 13:17:07','2021-09-23 16:20:31'),(632,25,'Siddipet','siddipet','2021-07-19 13:17:07','2021-09-23 16:20:31'),(633,25,'Suryapet','suryapet','2021-07-19 13:17:07','2021-09-23 16:20:31'),(634,25,'Warangal','warangal','2021-07-19 13:17:07','2021-09-23 16:20:31'),(635,26,'Agartala','agartala','2021-07-19 13:22:01','2021-09-23 16:20:31'),(636,26,'Belonia','belonia','2021-07-19 13:22:01','2021-09-23 16:20:31'),(637,26,'Bishalgarh','bishalgarh','2021-07-19 13:22:01','2021-09-23 16:20:31'),(638,26,'Dharmanagar','dharmanagar','2021-07-19 13:22:01','2021-09-23 16:20:31'),(639,26,'Kailasahar','kailasahar','2021-07-19 13:22:01','2021-09-23 16:20:31'),(640,26,'Khowai','khowai','2021-07-19 13:22:01','2021-09-23 16:20:31'),(641,26,'Melaghar','melaghar','2021-07-19 13:22:01','2021-09-23 16:20:31'),(642,26,'Mohanpur','mohanpur','2021-07-19 13:22:01','2021-09-23 16:20:31'),(643,26,'Teliamura','teliamura','2021-07-19 13:22:01','2021-09-23 16:20:31'),(644,26,'Udaipur','udaipur','2021-07-19 13:22:01','2021-09-23 16:20:31'),(645,27,'Dehradun','dehradun','2021-07-19 14:06:59','2021-09-23 16:20:31'),(646,27,'Haldwani-cum-Kathgodam','haldwani-cum-kathgodam','2021-07-19 14:06:59','2021-09-23 16:20:31'),(647,27,'Haridwar','haridwar','2021-07-19 14:06:59','2021-09-23 16:20:31'),(648,27,'Kashipur','kashipur','2021-07-19 14:06:59','2021-09-23 16:20:31'),(649,27,'Rishikesh','rishikesh','2021-07-19 14:06:59','2021-09-23 16:20:31'),(650,27,'Roorkee','roorkee','2021-07-19 14:06:59','2021-09-23 16:20:31'),(651,27,'Rudrapur','rudrapur','2021-07-19 14:06:59','2021-09-23 16:20:31'),(652,28,'Agra','agra','2021-07-19 14:10:07','2021-09-23 16:20:31'),(653,28,'Akbarpur','akbarpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(654,28,'Aligarh','aligarh','2021-07-19 14:10:07','2021-09-23 16:20:31'),(655,28,'Amroha','amroha','2021-07-19 14:10:07','2021-09-23 16:20:31'),(656,28,'Awagarh','awagarh','2021-07-19 14:10:07','2021-09-23 16:20:31'),(657,28,'Ayodhya Cantt','ayodhya-cantt','2021-07-19 14:10:07','2021-09-23 16:20:31'),(658,28,'Azamgarh','azamgarh','2021-07-19 14:10:07','2021-09-23 16:20:31'),(659,28,'Bahraich','bahraich','2021-07-19 14:10:07','2021-09-23 16:20:31'),(660,28,'Ballia','ballia','2021-07-19 14:10:07','2021-09-23 16:20:31'),(661,28,'Banda','banda','2021-07-19 14:10:07','2021-09-23 16:20:31'),(662,28,'Barabanki','barabanki','2021-07-19 14:10:07','2021-09-23 16:20:31'),(663,28,'Bareilly','bareilly','2021-07-19 14:10:07','2021-09-23 16:20:31'),(664,28,'Basti','basti','2021-07-19 14:10:07','2021-09-23 16:20:31'),(665,28,'Bijnor','bijnor','2021-07-19 14:10:07','2021-09-23 16:20:31'),(666,28,'Budaun','budaun','2021-07-19 14:10:07','2021-09-23 16:20:31'),(667,28,'Bulandshahr','bulandshahr','2021-07-19 14:10:07','2021-09-23 16:20:31'),(668,28,'Chandausi','chandausi','2021-07-19 14:10:07','2021-09-23 16:20:31'),(669,28,'Deoria','deoria','2021-07-19 14:10:07','2021-09-23 16:20:31'),(670,28,'Etah','etah','2021-07-19 14:10:07','2021-09-23 16:20:31'),(671,28,'Etawah','etawah','2021-07-19 14:10:07','2021-09-23 16:20:31'),(672,28,'Faizabad','faizabad','2021-07-19 14:10:07','2021-09-23 16:20:31'),(673,28,'Farrukhabad-cum-Fategarh','farrukhabad-cum-fategarh','2021-07-19 14:10:07','2021-09-23 16:20:31'),(674,28,'Fatehpur','fatehpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(675,28,'Firozabad','firozabad','2021-07-19 14:10:07','2021-09-23 16:20:31'),(676,28,'Ghaziabad','ghaziabad','2021-07-19 14:10:07','2021-09-23 16:20:31'),(677,28,'Ghazipur','ghazipur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(678,28,'Gonda','gonda','2021-07-19 14:10:07','2021-09-23 16:20:31'),(679,28,'Gorakhpur','gorakhpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(680,28,'Greater Noida','greater-noida','2021-07-19 14:10:07','2021-09-23 16:20:31'),(681,28,'Hapur','hapur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(682,28,'Hardoi','hardoi','2021-07-19 14:10:07','2021-09-23 16:20:31'),(683,28,'Hathras','hathras','2021-07-19 14:10:07','2021-09-23 16:20:31'),(684,28,'Jaunpur','jaunpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(685,28,'Jhansi','jhansi','2021-07-19 14:10:07','2021-09-23 16:20:31'),(686,28,'Kanpur','kanpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(687,28,'Kasganj','kasganj','2021-07-19 14:10:07','2021-09-23 16:20:31'),(688,28,'Khurja','khurja','2021-07-19 14:10:07','2021-09-23 16:20:31'),(689,28,'Lakhimpur','lakhimpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(690,28,'Lalitpur','lalitpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(691,28,'Lucknow','lucknow','2021-07-19 14:10:07','2021-09-23 16:20:31'),(692,28,'Mainpuri','mainpuri','2021-07-19 14:10:07','2021-09-23 16:20:31'),(693,28,'Mathura-Vrindavan','mathura-vrindavan','2021-07-19 14:10:07','2021-09-23 16:20:31'),(694,28,'Maunath Bhanjan','maunath-bhanjan','2021-07-19 14:10:07','2021-09-23 16:20:31'),(695,28,'Meerut','meerut','2021-07-19 14:10:07','2021-09-23 16:20:31'),(696,28,'Mirzapur-cum-Vindhyachal','mirzapur-cum-vindhyachal','2021-07-19 14:10:07','2021-09-23 16:20:31'),(697,28,'Modinagar','modinagar','2021-07-19 14:10:07','2021-09-23 16:20:31'),(698,28,'Moradabad','moradabad','2021-07-19 14:10:07','2021-09-23 16:20:31'),(699,28,'Mughalsarai','mughalsarai','2021-07-19 14:10:07','2021-09-23 16:20:31'),(700,28,'Muzaffarnagar','muzaffarnagar','2021-07-19 14:10:07','2021-09-23 16:20:31'),(701,28,'Noida','noida','2021-07-19 14:10:07','2021-09-23 16:20:31'),(702,28,'Orai','orai','2021-07-19 14:10:07','2021-09-23 16:20:31'),(703,28,'Pilibhit','pilibhit','2021-07-19 14:10:07','2021-09-23 16:20:31'),(704,28,'Prayagraj (Allahabad)','prayagraj-allahabad','2021-07-19 14:10:07','2021-09-23 16:20:31'),(705,28,'Raebareli','raebareli','2021-07-19 14:10:07','2021-09-23 16:20:31'),(706,28,'Rampur','rampur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(707,28,'Saharanpur','saharanpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(708,28,'Sahaswan','sahaswan','2021-07-19 14:10:07','2021-09-23 16:20:31'),(709,28,'Sambhal','sambhal','2021-07-19 14:10:07','2021-09-23 16:20:31'),(710,28,'Shahjahanpur','shahjahanpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(711,28,'Shamli','shamli','2021-07-19 14:10:07','2021-09-23 16:20:31'),(712,28,'Shikohabad','shikohabad','2021-07-19 14:10:07','2021-09-23 16:20:31'),(713,28,'Sitapur','sitapur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(714,28,'Sultanpur','sultanpur','2021-07-19 14:10:07','2021-09-23 16:20:31'),(715,28,'Tanda','tanda','2021-07-19 14:10:07','2021-09-23 16:20:31'),(716,28,'Ujhani','ujhani','2021-07-19 14:10:07','2021-09-23 16:20:31'),(717,28,'Unnao','unnao','2021-07-19 14:10:07','2021-09-23 16:20:31'),(718,28,'Varanasi','varanasi','2021-07-19 14:10:07','2021-09-23 16:20:31'),(719,29,'Alipurduar','alipurduar','2021-07-19 14:16:03','2021-09-23 16:20:31'),(720,29,'Asansol','asansol','2021-07-19 14:16:03','2021-09-23 16:20:31'),(721,29,'Baharampur','baharampur','2021-07-19 14:16:03','2021-09-23 16:20:31'),(722,29,'Balurghat','balurghat','2021-07-19 14:16:03','2021-09-23 16:20:31'),(723,29,'Bangaon','bangaon','2021-07-19 14:16:03','2021-09-23 16:20:31'),(724,29,'Bankura','bankura','2021-07-19 14:16:03','2021-09-23 16:20:31'),(725,29,'Bardhaman','bardhaman','2021-07-19 14:16:03','2021-09-23 16:20:31'),(726,29,'Basirhat','basirhat','2021-07-19 14:16:03','2021-09-23 16:20:31'),(727,29,'Chakdaha','chakdaha','2021-07-19 14:16:03','2021-09-23 16:20:31'),(728,29,'Cooch Behar','cooch-behar','2021-07-19 14:16:03','2021-09-23 16:20:31'),(729,29,'Dankuni','dankuni','2021-07-19 14:16:03','2021-09-23 16:20:31'),(730,29,'Darjeeling','darjeeling','2021-07-19 14:16:03','2021-09-23 16:20:31'),(731,29,'Dhulian','dhulian','2021-07-19 14:16:03','2021-09-23 16:20:31'),(732,29,'Durgapur','durgapur','2021-07-19 14:16:03','2021-09-23 16:20:31'),(733,29,'Gaighata','gaighata','2021-07-19 14:16:03','2021-09-23 16:20:31'),(734,29,'Haldia','haldia','2021-07-19 14:16:03','2021-09-23 16:20:31'),(735,29,'Jalpaiguri','jalpaiguri','2021-07-19 14:16:03','2021-09-23 16:20:31'),(736,29,'Jangipur','jangipur','2021-07-19 14:16:03','2021-09-23 16:20:31'),(737,29,'Kharagpur','kharagpur','2021-07-19 14:16:03','2021-09-23 16:20:31'),(738,29,'Kolkata','kolkata','2021-07-19 14:16:03','2021-09-23 16:20:31'),(739,29,'Krishnanagar','krishnanagar','2021-07-19 14:16:03','2021-09-23 16:20:31'),(740,29,'Malda City','malda-city','2021-07-19 14:16:03','2021-09-23 16:20:31'),(741,29,'Medinipur','medinipur','2021-07-19 14:16:03','2021-09-23 16:20:31'),(742,29,'Nabadwip','nabadwip','2021-07-19 14:16:03','2021-09-23 16:20:31'),(743,29,'Purulia','purulia','2021-07-19 14:16:03','2021-09-23 16:20:31'),(744,29,'Raiganj','raiganj','2021-07-19 14:16:03','2021-09-23 16:20:31'),(745,29,'Ranaghat','ranaghat','2021-07-19 14:16:03','2021-09-23 16:20:31'),(746,29,'Shantipur','shantipur','2021-07-19 14:16:03','2021-09-23 16:20:31'),(747,29,'Siliguri','siliguri','2021-07-19 14:16:03','2021-09-23 16:20:31'),(748,30,'Andaman','andaman','2021-07-19 14:17:18','2021-09-23 16:20:31'),(749,30,'Nicobar','nicobar','2021-07-19 14:17:18','2021-09-23 16:20:31'),(750,31,'Chandigarh','chandigarh','2021-07-19 14:18:21','2021-09-23 16:20:31'),(751,32,'Dadra','dadra','2021-07-19 14:19:46','2021-09-23 16:20:31'),(752,32,'Nagar Haveli','nagar-haveli','2021-07-19 14:19:46','2021-09-23 16:20:31'),(753,33,'Diu','diu','2021-07-19 14:21:35','2021-09-23 16:20:31'),(754,33,'Daman','daman','2021-07-19 14:21:35','2021-09-23 16:20:31'),(755,33,'Silvassa','silvassa','2021-07-19 14:21:35','2021-09-23 16:20:31'),(756,33,'Amli','amli','2021-07-19 14:21:35','2021-09-23 16:20:31'),(758,35,'Lakshadweep','lakshadweep','2021-07-19 14:24:31','2021-09-23 16:20:31'),(759,36,'Puducherry','puducherry','2021-07-19 14:24:31','2021-09-23 16:20:31');
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `collection_agents`
--

DROP TABLE IF EXISTS `collection_agents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `collection_agents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `agent_name` varchar(191) CHARACTER SET cp1251 COLLATE cp1251_general_cs NOT NULL,
  `phone` varchar(15) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1 Active 2 Deactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `collection_agents`
--

LOCK TABLES `collection_agents` WRITE;
/*!40000 ALTER TABLE `collection_agents` DISABLE KEYS */;
INSERT INTO `collection_agents` VALUES (1,1,'Ishu','3543545454',1,4500,'2021-10-04 00:00:00','2021-10-06 12:46:49'),(2,1,'Zee','45734895345',1,5000,'2021-10-12 00:00:00','2021-10-07 22:51:13'),(3,1,'Jee','878778787878',1,3000,'2021-10-04 16:28:09','2021-10-04 16:28:09'),(4,1,'Mansi','324242344314444',1,1,'2021-10-04 17:55:26','2021-10-09 14:21:02');
/*!40000 ALTER TABLE `collection_agents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `complain_trails`
--

DROP TABLE IF EXISTS `complain_trails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `complain_trails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `complain_id` int(11) NOT NULL,
  `remark` text NOT NULL,
  `status` int(11) NOT NULL COMMENT '1=pending, 2=In-Process,3=Reject,4=Complete',
  `remark_date` date NOT NULL,
  `follow_date` date DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `complain_trails`
--

LOCK TABLES `complain_trails` WRITE;
/*!40000 ALTER TABLE `complain_trails` DISABLE KEYS */;
INSERT INTO `complain_trails` VALUES (1,1,'testt',2,'2021-07-06','2021-07-10',1,'2021-07-06 11:16:46','2021-07-06 11:16:46'),(2,5,'',1,'2021-07-07','2021-07-07',1,'2021-07-07 10:06:01','2021-07-07 10:06:01'),(3,6,'',2,'2021-07-07','2021-07-06',1,'2021-07-07 10:07:24','2021-07-07 10:07:24'),(4,5,'',2,'2021-07-07','2021-07-01',1,'2021-07-07 10:07:42','2021-07-07 10:07:42'),(5,6,'',4,'2021-07-07','2021-07-06',1,'2021-07-07 10:08:10','2021-07-07 10:08:10'),(6,5,'',1,'2021-07-07','2021-07-07',1,'2021-07-07 10:08:35','2021-07-07 10:08:35'),(7,5,'Testing rejection',3,'2021-07-07','2021-07-06',1,'2021-07-07 10:09:08','2021-07-07 10:09:08'),(8,2,'',2,'2021-07-07','2021-07-06',1,'2021-07-07 10:10:02','2021-07-07 10:10:02'),(9,2,'',4,'2021-07-07','2021-07-06',1,'2021-07-07 10:10:16','2021-07-07 10:10:16'),(10,1,'',1,'2021-07-08','2021-07-07',1,'2021-07-08 09:42:47','2021-07-08 09:42:47'),(11,12,'ACADSc',1,'2021-07-20','2021-09-09',1,'2021-07-20 18:10:43','2021-07-20 18:10:43'),(12,13,'testing',1,'2021-07-20',NULL,1,'2021-07-20 18:11:22','2021-07-20 18:11:22'),(13,14,'Testing',1,'2021-07-22','2021-07-25',1,'2021-07-22 12:22:38','2021-07-22 12:22:38'),(14,15,'food me flyies thi',1,'2021-07-22','2021-07-23',1,'2021-07-22 12:23:45','2021-07-22 12:23:45'),(15,7,'I need to test this',1,'2021-07-20','2021-07-24',1,'2021-07-22 12:45:04','2021-07-22 12:45:04'),(16,7,'I need to test this module',1,'2021-07-20','2021-07-24',1,'2021-07-22 12:45:43','2021-07-22 12:45:43'),(17,16,'Testing New complatint',1,'2021-07-22','2021-07-25',1,'2021-07-22 14:26:41','2021-07-22 14:26:41'),(18,16,'nhi hoga kam',3,'2021-07-22','2021-07-25',1,'2021-07-22 14:33:04','2021-07-22 14:33:04'),(19,14,'now fan is woking',2,'2021-07-22','2021-07-23',1,'2021-07-22 14:34:13','2021-07-22 14:34:13'),(20,13,'heloooooo',2,'2021-07-22',NULL,1,'2021-07-22 14:35:15','2021-07-22 14:35:15'),(21,13,'mechnic not found',1,'2021-07-22','2021-07-24',1,'2021-07-22 14:36:33','2021-07-22 14:36:33'),(22,13,'hogya kam',4,'2021-07-22',NULL,1,'2021-07-22 14:37:10','2021-07-22 14:37:10'),(23,14,'yoooooo',1,'2021-07-22',NULL,1,'2021-07-22 14:40:36','2021-07-22 14:40:36'),(24,14,'hogya kam',3,'2021-07-22',NULL,1,'2021-07-22 14:43:04','2021-07-22 14:43:04'),(25,17,'Bathroom ki ceiling tapak rhi hai',1,'2021-07-25','2021-07-31',1,'2021-07-25 18:20:08','2021-07-25 18:20:08'),(26,17,'Ok',2,'2021-07-25','2021-07-31',1,'2021-07-25 18:53:01','2021-07-25 18:53:01'),(27,17,'',2,'2021-07-25','0000-00-00',1,'2021-07-25 18:54:53','2021-07-25 18:54:53'),(28,1,'testt',2,'2021-07-25','2021-07-10',1,'2021-07-25 18:55:25','2021-07-25 18:55:25'),(29,17,'',2,'2021-07-25','0000-00-00',1,'2021-07-25 18:56:35','2021-07-25 18:56:35'),(30,18,'not good food',1,'2021-10-06','2021-10-13',1,'2021-10-06 15:06:34','2021-10-06 15:06:34'),(31,18,'46426578',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:06:58','2021-10-06 15:06:58'),(32,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:00','2021-10-06 15:45:00'),(33,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:04','2021-10-06 15:45:04'),(34,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:08','2021-10-06 15:45:08'),(35,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:08','2021-10-06 15:45:08'),(36,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:08','2021-10-06 15:45:08'),(37,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:09','2021-10-06 15:45:09'),(38,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:09','2021-10-06 15:45:09'),(39,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:11','2021-10-06 15:45:11'),(40,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:13','2021-10-06 15:45:13'),(41,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:13','2021-10-06 15:45:13'),(42,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:13','2021-10-06 15:45:13'),(43,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:13','2021-10-06 15:45:13'),(44,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:25','2021-10-06 15:45:25'),(45,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:26','2021-10-06 15:45:26'),(46,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:26','2021-10-06 15:45:26'),(47,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:26','2021-10-06 15:45:26'),(48,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:27','2021-10-06 15:45:27'),(49,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:27','2021-10-06 15:45:27'),(50,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 15:45:27','2021-10-06 15:45:27'),(51,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 16:04:02','2021-10-06 16:04:02'),(52,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 16:04:06','2021-10-06 16:04:06'),(53,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 16:04:18','2021-10-06 16:04:18'),(54,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 16:04:26','2021-10-06 16:04:26'),(55,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 16:04:28','2021-10-06 16:04:28'),(56,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 16:04:28','2021-10-06 16:04:28'),(57,18,'not good food',2,'2021-10-06','2021-10-13',1,'2021-10-06 16:04:28','2021-10-06 16:04:28');
/*!40000 ALTER TABLE `complain_trails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `complains`
--

DROP TABLE IF EXISTS `complains`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `complains` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `head_id` int(11) NOT NULL DEFAULT 0,
  `res_id` int(11) NOT NULL,
  `complain_date` date NOT NULL,
  `status` enum('1','2','3','4') NOT NULL COMMENT '1=pending, 2=In-Process,3=Reject,4=Complete',
  `followup_date` date DEFAULT NULL,
  `description` text NOT NULL,
  `raised_by` varchar(100) NOT NULL DEFAULT 'User',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `complains`
--

LOCK TABLES `complains` WRITE;
/*!40000 ALTER TABLE `complains` DISABLE KEYS */;
INSERT INTO `complains` VALUES (1,1,2,3,'2021-06-01','2','2021-07-29','','User',1,'2021-06-07 10:10:06','2021-07-22 12:11:02'),(2,1,2,5,'2021-06-04','4','2021-07-06','','User',1,'2021-06-07 10:11:36','2021-07-07 10:10:16'),(3,1,2,17,'2021-06-01','3','2021-06-24','require net outside balcony','User',1,'2021-06-07 10:12:59','2021-06-07 10:14:27'),(4,1,3,15,'2021-06-03','4','2021-06-06','chair broken .','User',1,'2021-06-07 10:16:46','2021-06-18 11:08:45'),(5,1,3,12,'2021-06-07','3','2021-07-06','Testing rejection','User',1,'2021-06-07 10:42:33','2021-07-07 10:09:08'),(6,1,9,3,'2021-06-19','4','2021-07-06','','User',1,'2021-06-19 15:10:40','2021-07-07 10:08:10'),(7,1,3,15,'2021-07-20','1','2021-07-26','I need to test this module','User',1,'2021-07-20 16:57:29','2021-07-22 12:45:43'),(8,1,11,5,'2021-07-20','2','2021-07-25','audi misc not working','User',1,'2021-07-20 17:20:14','2021-07-22 12:12:01'),(9,2,15,14,'2021-07-20','1',NULL,'hello hello','User',1,'2021-07-20 18:05:40','2021-07-20 18:05:40'),(10,2,15,14,'2021-07-20','1',NULL,'hekkllssdsS','User',1,'2021-07-20 18:06:54','2021-07-20 18:06:54'),(11,2,15,14,'2021-07-20','1','2021-07-24','AAA','User',1,'2021-07-20 18:09:39','2021-07-20 18:09:39'),(12,2,15,18,'2021-07-20','1','2021-09-09','ACADSc','User',1,'2021-07-20 18:10:43','2021-07-20 18:10:43'),(13,1,3,23,'2021-07-20','4','2021-07-24','testing','User',1,'2021-07-20 18:11:22','2021-07-22 14:37:10'),(14,1,3,28,'2021-07-22','3',NULL,'Testing','User',1,'2021-07-22 12:22:38','2021-07-22 14:43:04'),(15,1,2,29,'2021-07-22','4',NULL,'food me flyies thi','User',1,'2021-07-22 12:23:45','2021-07-22 12:25:47'),(16,1,2,21,'2021-07-22','3','2021-07-25','Testing New complatint','User',1,'2021-07-22 14:26:41','2021-07-22 14:33:04'),(17,1,10,28,'2021-07-25','2','0000-00-00','Bathroom ki ceiling tapak rhi hai','User',1,'2021-07-25 18:20:08','2021-07-25 18:56:35'),(18,1,2,28,'2021-10-06','2','2021-10-13','not good food','User',1,'2021-10-06 15:06:34','2021-10-06 15:06:58');
/*!40000 ALTER TABLE `complains` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `complaint_heads`
--

DROP TABLE IF EXISTS `complaint_heads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `complaint_heads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `head_name` text NOT NULL,
  `description` text NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 : Active; 2 : Inactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `complaint_heads`
--

LOCK TABLES `complaint_heads` WRITE;
/*!40000 ALTER TABLE `complaint_heads` DISABLE KEYS */;
INSERT INTO `complaint_heads` VALUES (2,1,'Food','Test',1,1,'2021-07-02 17:55:04','2021-07-06 07:16:51'),(3,1,'Maintenance','Test',1,1,'2021-07-02 17:55:37','2021-07-24 18:02:35'),(9,1,'Test','test',1,1,'2021-07-05 22:31:47','2021-07-06 11:48:11'),(10,1,'Test2','Test description',1,1,'2021-07-06 11:55:52','2021-07-24 18:00:02'),(11,1,'Misc','hall misc',1,1,'2021-07-19 10:02:24','2021-07-19 10:48:50'),(15,2,'Polly Bags','Testing',1,1,'2021-07-19 10:49:28','2021-07-19 05:19:45');
/*!40000 ALTER TABLE `complaint_heads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `configurations`
--

DROP TABLE IF EXISTS `configurations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `configurations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `status_id` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `status` int(11) NOT NULL DEFAULT 1,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `configurations`
--

LOCK TABLES `configurations` WRITE;
/*!40000 ALTER TABLE `configurations` DISABLE KEYS */;
INSERT INTO `configurations` VALUES (1,'service_status',1,'2021-04-16 11:05:53','2021-04-16 11:05:53'),(2,'111',222,'2021-04-27 10:06:20','2021-04-27 10:06:20'),(3,'111',222,'2021-04-27 10:07:27','2021-04-27 10:07:27');
/*!40000 ALTER TABLE `configurations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_us_enquiry`
--

DROP TABLE IF EXISTS `contact_us_enquiry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `contact_us_enquiry` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `email_id` varchar(50) NOT NULL,
  `phone` varchar(15) NOT NULL,
  `message` text NOT NULL,
  `inserted_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_us_enquiry`
--

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

--
-- Table structure for table `credentials`
--

DROP TABLE IF EXISTS `credentials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `credentials` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `dlt_url` text NOT NULL,
  `dlt_mail` text NOT NULL,
  `dlt_mobile` text NOT NULL,
  `dlt_password` text NOT NULL,
  `domain` text NOT NULL,
  `mail_id` text NOT NULL,
  `api_key` text NOT NULL,
  `flow_id` text NOT NULL DEFAULT '',
  `sender_id` text NOT NULL DEFAULT '',
  `password` text NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credentials`
--

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

--
-- Table structure for table `credit_payments`
--

DROP TABLE IF EXISTS `credit_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `credit_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `expense_id` int(11) NOT NULL,
  `party_id` int(11) NOT NULL,
  `pay_date` datetime NOT NULL,
  `amount` varchar(100) NOT NULL DEFAULT '0',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `credit_payments`
--

LOCK TABLES `credit_payments` WRITE;
/*!40000 ALTER TABLE `credit_payments` DISABLE KEYS */;
INSERT INTO `credit_payments` VALUES (1,1,2,'2021-10-13 00:00:00','2000',1,'2021-10-13 14:35:24','2021-10-13 14:35:24'),(2,1,2,'2021-10-13 00:00:00','500',1,'2021-10-13 14:35:50','2021-10-13 14:35:50'),(3,1,2,'2021-10-13 00:00:00','100',1,'2021-10-13 14:36:28','2021-10-13 14:36:28'),(4,1,2,'2021-10-13 00:00:00','50',1,'2021-10-13 14:37:08','2021-10-13 14:37:08'),(5,1,2,'2021-10-13 00:00:00','50',1,'2021-10-13 14:40:53','2021-10-13 14:40:53'),(6,1,2,'2021-10-13 00:00:00','100',1,'2021-10-13 14:41:14','2021-10-13 14:41:14'),(7,2,2,'2021-10-13 00:00:00','1000',1,'2021-10-13 14:41:59','2021-10-13 14:41:59'),(8,1,2,'2021-10-13 00:00:00','550',1,'2021-10-13 14:42:26','2021-10-13 14:42:26'),(9,2,2,'2021-10-13 00:00:00','550',1,'2021-10-13 14:42:26','2021-10-13 14:42:26'),(10,3,1,'2021-10-13 00:00:00','700',1,'2021-10-13 14:44:23','2021-10-13 14:44:23'),(11,1,2,'2021-10-13 00:00:00','800',1,'2021-10-13 14:46:33','2021-10-13 14:46:33'),(12,2,2,'2021-10-13 00:00:00','800',1,'2021-10-13 14:46:33','2021-10-13 14:46:33'),(13,1,2,'2021-10-13 00:00:00','500',1,'2021-10-13 14:46:54','2021-10-13 14:46:54'),(14,2,2,'2021-10-13 00:00:00','500',1,'2021-10-13 14:46:54','2021-10-13 14:46:54'),(15,1,2,'2021-10-13 00:00:00','200',1,'2021-10-13 15:24:08','2021-10-13 15:24:08'),(16,2,2,'2021-10-13 00:00:00','200',1,'2021-10-13 15:24:08','2021-10-13 15:24:08'),(17,3,1,'2021-10-13 00:00:00','100',1,'2021-10-13 15:24:19','2021-10-13 15:24:19'),(18,5,1,'2021-10-13 00:00:00','50',1,'2021-10-13 15:33:56','2021-10-13 15:33:56'),(19,3,1,'2021-10-13 00:00:00','200',1,'2021-10-13 15:34:52','2021-10-13 15:34:52'),(20,5,1,'2021-10-13 00:00:00','200',1,'2021-10-13 15:34:52','2021-10-13 15:34:52'),(21,3,1,'2021-10-13 00:00:00','50',1,'2021-10-13 15:35:55','2021-10-13 15:35:55'),(22,5,1,'2021-10-13 00:00:00','50',1,'2021-10-13 15:35:55','2021-10-13 15:35:55');
/*!40000 ALTER TABLE `credit_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `enquiries`
--

DROP TABLE IF EXISTS `enquiries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `enquiries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `visitor_name` varchar(100) NOT NULL,
  `email_id` text NOT NULL DEFAULT '',
  `phone` varchar(15) NOT NULL,
  `description` text NOT NULL,
  `visit_date` date NOT NULL,
  `follow_up` date DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `enquiries`
--

LOCK TABLES `enquiries` WRITE;
/*!40000 ALTER TABLE `enquiries` DISABLE KEYS */;
INSERT INTO `enquiries` VALUES (1,1,'Kartik','','828282828','test','2021-07-03','2021-02-02',0,'2021-07-03 06:03:32','2021-07-03 06:03:32'),(3,1,'Kartik','','828282828','test','2021-07-03',NULL,0,'2021-07-03 06:23:24','2021-07-03 06:24:11'),(4,1,'Testing','','1234567890','','2021-07-05','2021-07-05',1,'2021-07-05 12:57:32','2021-07-05 12:57:32'),(5,1,'Test','','6568686868','Tst','2021-07-15',NULL,1,'2021-07-15 16:00:20','2021-07-15 16:00:20'),(6,1,'Gunjan','','9782939007','I need a room with A.c And fridge','2021-07-15','2021-08-07',1,'2021-07-15 18:18:42','2021-07-15 18:18:42'),(7,1,'Kittu Sir','','1111111111','Me Bug Dhundo Ga.','2021-07-15',NULL,1,'2021-07-15 18:19:44','2021-07-15 18:19:44'),(8,1,'Gunjan','','3214423432','Testing','2021-07-22',NULL,1,'2021-07-22 10:58:27','2021-07-22 10:58:27'),(9,1,'Gunjan','','3214423432','Testing','2021-07-22',NULL,1,'2021-07-22 10:58:27','2021-07-22 10:58:27'),(10,1,'Vishnu','','7453879657','Good Building','2021-10-06','2021-10-07',1,'2021-10-06 15:05:49','2021-10-06 18:25:26'),(11,1,'Dfsfsdfds','','7896541230','4324324','2021-10-06','2021-10-29',1,'2021-10-06 16:21:39','2021-10-06 18:25:53'),(12,1,'Test Vishnu','','1212121212','423423','2021-10-06','2021-10-21',1,'2021-10-06 18:26:21','2021-10-06 18:26:32'),(13,1,'Anish','','34343443434','Test','2021-10-07','2021-10-28',1,'2021-10-07 08:04:02','2021-10-07 08:04:02'),(14,1,'Anish 3','','3232424234343','Test','2021-10-07','2021-10-15',1,'2021-10-07 08:16:08','2021-10-07 08:16:27');
/*!40000 ALTER TABLE `enquiries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `enquiry_trails`
--

DROP TABLE IF EXISTS `enquiry_trails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `enquiry_trails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `enquiry_id` int(11) NOT NULL,
  `remark` text NOT NULL,
  `remark_date` date NOT NULL,
  `follow_date` date DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `enquiry_trails`
--

LOCK TABLES `enquiry_trails` WRITE;
/*!40000 ALTER TABLE `enquiry_trails` DISABLE KEYS */;
INSERT INTO `enquiry_trails` VALUES (1,11,'dsfdsf','2021-10-06','2021-10-13',1,'2021-10-06 18:23:20','2021-10-06 18:23:20'),(2,11,'dsfasdfsdf','2021-10-06','2021-10-07',1,'2021-10-06 18:24:22','2021-10-06 18:24:22'),(3,10,'dsfsdf','2021-10-06','2021-10-13',1,'2021-10-06 18:24:44','2021-10-06 18:24:44'),(4,10,'dfsasdf','2021-10-06','2021-10-07',1,'2021-10-06 18:25:26','2021-10-06 18:25:26'),(5,11,'sadas','2021-10-06','2021-10-29',1,'2021-10-06 18:25:53','2021-10-06 18:25:53'),(6,12,'tet','2021-10-06','2021-10-21',1,'2021-10-06 18:26:32','2021-10-06 18:26:32'),(7,14,'Test','2021-10-07',NULL,1,'2021-10-07 08:16:08','2021-10-07 08:16:08'),(8,14,'test done','2021-10-07','2021-10-15',1,'2021-10-07 08:16:27','2021-10-07 08:16:27');
/*!40000 ALTER TABLE `enquiry_trails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `expense_heads`
--

DROP TABLE IF EXISTS `expense_heads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expense_heads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `head_name` text NOT NULL,
  `description` text NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 : Active; 2 : Inactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expense_heads`
--

LOCK TABLES `expense_heads` WRITE;
/*!40000 ALTER TABLE `expense_heads` DISABLE KEYS */;
INSERT INTO `expense_heads` VALUES (1,2,'Salaries','test',1,1,'2021-07-02 07:17:09','2021-07-03 09:42:26'),(2,2,'Food','Test',1,1,'2021-07-02 17:55:04','2021-07-02 21:21:43'),(3,2,'Maintenance','Test',1,1,'2021-07-02 17:55:37','2021-07-02 21:21:23'),(4,2,'Miscellaneous','ok good',1,108,'2021-07-02 17:59:36','2021-07-17 07:48:15'),(6,2,'Stationary','ok good',1,108,'2021-07-03 11:41:19','2021-07-17 13:17:43'),(7,1,'Test','Testung',1,1,'2021-07-03 14:24:55','2021-07-07 16:07:05'),(8,1,'Salaries','Owner',1,1,'2021-07-03 14:25:14','2021-07-03 14:25:14'),(9,1,'Head Complain','Test description',2,1,'2021-07-06 11:48:01','2021-08-10 17:53:45'),(10,6,'Salaries','Salaries given to Staff',1,5,'2021-07-15 11:15:26','2021-07-15 11:15:26'),(11,6,'Food','All the purchase of food for Kitchen',1,5,'2021-07-15 11:15:26','2021-07-15 11:15:26'),(12,6,'Maintenance','Any kind of Maintenance work in building',1,5,'2021-07-15 11:15:26','2021-07-15 11:15:26'),(13,6,'Bills','Electricity, Water and others Bills',1,5,'2021-07-15 11:15:26','2021-07-15 11:15:26'),(14,6,'Miscellaneous','Other expenses',1,5,'2021-07-15 11:15:26','2021-07-15 11:15:26'),(16,8,'Salaries','Salaries given to Staff',1,6,'2021-07-17 11:20:28','2021-07-17 11:20:28'),(17,8,'Food','All the purchase of food for Kitchen',1,6,'2021-07-17 11:20:28','2021-07-17 11:20:28'),(18,8,'Maintenance','Any kind of Maintenance work in building',1,6,'2021-07-17 11:20:28','2021-07-17 11:20:28'),(19,8,'Bills','Electricity, Water and others Bills',1,6,'2021-07-17 11:20:28','2021-07-17 11:20:28'),(20,8,'Miscellaneous','Other expenses',1,6,'2021-07-17 11:20:28','2021-07-17 11:20:28'),(21,1,'Tedt2','Test2',1,1,'2021-07-17 11:44:51','2021-07-17 11:44:51'),(22,1,'Stationary','testing',1,1,'2021-07-17 12:11:01','2021-07-17 12:11:01'),(23,1,'Misc','testing Next',1,1,'2021-07-17 12:46:44','2021-07-17 13:16:28'),(24,40,'Salaries','Salaries given to Staff',1,0,'2021-07-29 15:20:22','2021-07-29 15:20:22'),(25,40,'Food','All the purchase of food for Kitchen',1,0,'2021-07-29 15:20:22','2021-07-29 15:20:22'),(26,40,'Maintenance','Any kind of Maintenance work in building',1,0,'2021-07-29 15:20:22','2021-07-29 15:20:22'),(27,40,'Bills','Electricity, Water and others Bills',1,0,'2021-07-29 15:20:22','2021-07-29 15:20:22'),(28,40,'Miscellaneous','Other expenses',1,0,'2021-07-29 15:20:22','2021-07-29 15:20:22'),(29,41,'Salaries','Salaries given to Staff',1,0,'2021-07-30 12:02:22','2021-07-30 12:02:22'),(30,41,'Food','All the purchase of food for Kitchen',1,0,'2021-07-30 12:02:22','2021-07-30 12:02:22'),(31,41,'Maintenance','Any kind of Maintenance work in building',1,0,'2021-07-30 12:02:22','2021-07-30 12:02:22'),(32,41,'Bills','Electricity, Water and others Bills',1,0,'2021-07-30 12:02:22','2021-07-30 12:02:22'),(33,41,'Miscellaneous','Other expenses',1,0,'2021-07-30 12:02:22','2021-07-30 12:02:22'),(34,42,'Salaries','Salaries given to Staff',1,0,'2021-07-30 16:02:31','2021-07-30 16:02:31'),(35,42,'Food','All the purchase of food for Kitchen',1,0,'2021-07-30 16:02:31','2021-07-30 16:02:31'),(36,42,'Maintenance','Any kind of Maintenance work in building',1,0,'2021-07-30 16:02:31','2021-07-30 16:02:31'),(37,42,'Bills','Electricity, Water and others Bills',1,0,'2021-07-30 16:02:31','2021-07-30 16:02:31'),(38,42,'Miscellaneous','Other expenses',1,0,'2021-07-30 16:02:31','2021-07-30 16:02:31'),(39,44,'Salaries','Salaries given to Staff',1,0,'2022-02-12 11:17:22','2022-02-12 11:17:22'),(40,44,'Food','All the purchase of food for Kitchen',1,0,'2022-02-12 11:17:22','2022-02-12 11:17:22'),(41,44,'Maintenance','Any kind of Maintenance work in building',1,0,'2022-02-12 11:17:22','2022-02-12 11:17:22'),(42,44,'Bills','Electricity, Water and others Bills',1,0,'2022-02-12 11:17:22','2022-02-12 11:17:22'),(43,44,'Miscellaneous','Other expenses',1,0,'2022-02-12 11:17:22','2022-02-12 11:17:22');
/*!40000 ALTER TABLE `expense_heads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `expenses`
--

DROP TABLE IF EXISTS `expenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `expenses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `head_id` int(11) NOT NULL,
  `ref_id` varchar(200) NOT NULL DEFAULT '',
  `branch_id` int(11) NOT NULL,
  `expense_date` date NOT NULL,
  `amount` varchar(100) NOT NULL,
  `pending_amount` varchar(100) NOT NULL DEFAULT '0',
  `is_credit` enum('1','2') NOT NULL DEFAULT '2' COMMENT '	1=yes, 2=No	',
  `party_id` int(11) NOT NULL,
  `description` text NOT NULL,
  `invoice_number` varchar(100) NOT NULL,
  `document_detail` text NOT NULL,
  `pay_mode` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 Cash    2 Other',
  `staff_id` int(11) NOT NULL DEFAULT 0,
  `collection_agent` int(11) NOT NULL DEFAULT 0,
  `name` text NOT NULL,
  `status` enum('1','2') NOT NULL COMMENT '1 for Active 2 For Deactive ',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `expenses`
--

LOCK TABLES `expenses` WRITE;
/*!40000 ALTER TABLE `expenses` DISABLE KEYS */;
INSERT INTO `expenses` VALUES (1,7,'',1,'2021-10-13','5000','0','1',2,'','','',1,0,0,'Gunjan','1',1,'2021-10-13 14:35:24','2021-10-13 14:46:54'),(2,23,'',1,'2021-10-13','2000','500','1',2,'','Inv-002','',1,0,0,'Miniso','1',1,'2021-10-13 14:41:59','2021-10-13 15:24:08'),(3,22,'',1,'2021-10-13','1700','650','1',1,'','','',1,0,0,'Gauri','1',1,'2021-10-13 14:44:23','2021-10-13 15:35:55'),(4,23,'',1,'2021-10-12','1000','0','2',0,'','','',1,0,0,'Gunjan','1',1,'2021-10-13 15:32:51','2021-10-13 15:32:51'),(5,8,'',1,'2021-10-13','100','50','1',1,'','','',1,5,0,'Gopal','1',1,'2021-10-13 15:33:56','2021-10-13 15:33:56'),(6,7,'',1,'2021-10-16','790','0','2',0,'','','',1,0,2,'Gunjgh','1',1,'2021-10-16 12:44:14','2021-10-16 12:44:14'),(7,8,'',1,'2021-10-16','600','0','2',0,'','','',1,1,0,'Naveen','1',1,'2021-10-16 12:44:42','2021-10-16 12:44:42'),(8,7,'',1,'2021-10-16','5454','0','2',0,'','','',1,0,0,'Gusdsd','1',1,'2021-10-16 12:56:53','2021-10-16 12:56:53'),(9,22,'106180d8d4b603e',1,'2021-11-02','1000','0','2',0,'for all pens and notebooks','inv-210','',1,0,2,'Rita','2',1,'2021-11-02 11:51:08','2021-11-11 14:42:31'),(11,21,'6180ddbc815bd',1,'2021-10-30','600','0','2',0,'','','',1,0,1,'Bkjh','1',1,'2021-11-02 12:12:04','2021-11-02 12:12:04'),(12,7,'',1,'2021-11-15','4345','0','2',0,'rtert','fgd','',1,0,2,'Fgfg','',1,'2021-11-15 12:08:16','2021-11-15 16:05:34'),(13,8,'',1,'2021-11-13','1000','0','2',0,'','inv-100','uploads/document/phpVHNLID.jpg',1,6,2,'Testing','2',1,'2021-11-15 15:17:25','2021-11-15 15:52:22'),(14,21,'',1,'2021-11-14','1070000','0','2',0,'sasasa','','',1,0,3,'Sssd','2',1,'2021-11-15 15:26:52','2021-11-15 17:23:21'),(15,7,'',1,'2021-11-15','1002','0','2',0,'','','',1,0,3,'Ssdsa','2',1,'2021-11-15 15:53:31','2021-11-15 15:53:59'),(16,22,'',1,'2021-11-15','1400','0','2',0,'','','',1,0,4,'Sdads','2',1,'2021-11-15 16:05:56','2021-11-15 16:25:48'),(17,21,'',1,'2021-11-12','1200','0','2',0,'','','',1,0,3,'Kjhgnhbfgdf','1',1,'2021-11-15 16:30:21','2021-11-15 16:30:21'),(18,21,'',1,'2021-11-12','1300','0','2',0,'','','',1,0,2,'Fcuhijo','1',1,'2021-11-15 16:36:47','2021-11-15 16:36:47'),(19,21,'',1,'2021-11-12','1000','0','2',0,'','','',1,0,2,'Fcuhijo','1',1,'2021-11-15 16:38:23','2021-11-15 17:35:00'),(20,21,'',1,'2021-11-13','1200','0','2',0,'','','',1,0,1,'Dxgfchj','1',1,'2021-11-15 16:58:33','2021-11-15 16:58:33'),(21,7,'',1,'2021-11-13','500','0','2',0,'','','',1,0,1,'Gfnbn','1',1,'2021-11-15 17:00:51','2021-11-15 17:00:51'),(22,22,'',1,'2021-11-13','100','0','2',0,'','','',1,0,2,'Cfgvhjkl;\'','1',1,'2021-11-15 17:14:50','2021-11-15 17:54:25'),(23,22,'',1,'2021-11-13','200','0','2',0,'','','',1,0,2,'Cfgvhjkl;\'','1',1,'2021-11-15 17:14:51','2021-11-15 17:14:51'),(24,21,'',1,'2021-11-14','200','0','2',0,'','','',1,0,1,'Scddd','1',1,'2021-11-15 17:22:52','2021-11-15 17:22:52'),(25,21,'',1,'2021-11-10','500','0','2',0,'','','',1,0,1,'Jigyasa Sharma','1',1,'2021-11-15 17:29:41','2021-11-15 17:47:21'),(26,21,'',1,'2021-11-10','2000','0','2',0,'','','',1,0,2,'Xcxzvxz','1',1,'2021-11-15 17:30:39','2021-11-15 17:33:41'),(27,21,'',1,'2021-11-10','1800','0','2',0,'','','',1,0,2,'Xcxzvxz','2',1,'2021-11-15 17:30:39','2021-11-15 17:32:24'),(30,21,'',1,'2021-11-04','200','0','2',0,'','','',1,0,1,'Brgb','1',1,'2021-11-16 12:23:16','2021-11-16 12:23:16');
/*!40000 ALTER TABLE `expenses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `extra_features`
--

DROP TABLE IF EXISTS `extra_features`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `extra_features` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `description` text NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `extra_features`
--

LOCK TABLES `extra_features` WRITE;
/*!40000 ALTER TABLE `extra_features` DISABLE KEYS */;
INSERT INTO `extra_features` VALUES (1,'Mail OTP Verification','Verify the mail via OTP at time of registration of Tenant','2021-11-26 12:40:05','2021-11-26 12:40:05'),(2,'Collection Agent','Collection Agent Services on System at time of Expenses and Payments','2021-11-26 12:40:05','2021-11-26 12:40:05'),(3,'Mail Receipt','Share Payment Receipt on Mail','2021-11-26 12:40:05','2021-11-26 12:40:05'),(4,'Send SMS Notification','Send SMS Notification for Payment Due Date to Tenant','2021-11-26 12:40:05','2021-11-26 12:40:05'),(5,'Apply More Branches','Add More Branches in the system','2021-11-26 12:40:05','2021-11-26 12:40:05'),(6,'Change Receipt Prefixes','Change the prefix value of Receipt Number in Payment Receipt','2021-11-26 12:40:05','2021-11-26 12:40:05'),(7,'Flat Wise Configuration','Enable the Flat/Room Configuration on the System','2021-11-26 12:40:05','2021-11-26 12:40:05');
/*!40000 ALTER TABLE `extra_features` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `failed_jobs`
--

DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `failed_jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `failed_jobs`
--

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

--
-- Table structure for table `flats`
--

DROP TABLE IF EXISTS `flats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `flat_name` varchar(200) NOT NULL,
  `occupancy` int(11) NOT NULL,
  `rent` int(11) NOT NULL,
  `availability` tinyint(4) NOT NULL DEFAULT 1 COMMENT '2 No 1 Yes',
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 Active 2 Deactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flats`
--

LOCK TABLES `flats` WRITE;
/*!40000 ALTER TABLE `flats` DISABLE KEYS */;
INSERT INTO `flats` VALUES (1,1,'Flat 1',4,7000,2,1,1,'2021-12-02 14:42:31','2021-12-07 14:37:51'),(2,1,'Flat 2',4,12000,2,1,1,'2021-12-02 15:33:47','2021-12-08 15:45:10'),(3,1,'Flat 3',4,15000,2,1,1,'2021-12-02 15:33:59','2022-01-28 11:29:34'),(4,1,'Flat 4',3,12000,2,1,1,'2021-12-02 15:34:10','2022-01-28 11:36:38'),(5,1,'Flat 5',3,11000,2,1,1,'2021-12-02 15:34:21','2022-01-28 11:42:45'),(6,1,'Flat 6',12,2000,2,1,1,'2021-12-02 15:34:59','2021-12-08 17:21:59'),(7,1,'Flat-90',5,10000,2,1,1,'2021-12-07 11:14:48','2021-12-08 17:00:40'),(8,1,'Flat 122',4,12000,2,1,1,'2022-01-28 11:55:16','2022-01-28 12:01:20'),(9,1,'Flat 123',4,2222,2,1,1,'2022-01-28 12:01:11','2022-02-12 12:47:42'),(10,1,'Flat 134',3,2222,2,1,1,'2022-01-29 09:59:58','2022-01-29 10:02:20');
/*!40000 ALTER TABLE `flats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `generate_links`
--

DROP TABLE IF EXISTS `generate_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `generate_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `reg_token` text NOT NULL,
  `datetime` datetime NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `generate_links`
--

LOCK TABLES `generate_links` WRITE;
/*!40000 ALTER TABLE `generate_links` DISABLE KEYS */;
INSERT INTO `generate_links` VALUES (1,1,'fOntXxPds65efrzSTuQA8qAP4nKlYwhvpIoaG2Ec5VNm9hi6BsKeumCborWjmKVWsYplFVIKGEpXdyWAVqwdw9lhRPHfrJ657fZ0ydjpTXpDX87fCOYkcwMY4ZHaF','2021-04-17 17:42:49','2021-04-17 17:42:49','2021-04-17 17:42:49'),(2,1,'kPBCxyEOK5Z5DjJysWt3qyiGtWwDFeTkGLzx0ZQopAXYeKlV67JxK3roDXZrhCSUP5bF8wAgQCWWEwvQrJptnOosVzZwoNepUtwZDqUt7iAcKQ2jSMaRmWqcM5zal','2021-04-17 18:29:09','2021-04-17 18:02:09','2021-04-17 18:02:09'),(3,1,'AOrorWgC2dQFbvRP73D67lgklnSxDnrQ3kQp14r0X7q23zkEHsQhnqpzyBDQUAX7F6bfB2jDbpynjiHdkTPtfBTHdPSMDTE3gDIVvbhISZS8o1QoxyIOBvCdTXs8d','2021-04-17 19:06:14','2021-04-17 18:36:14','2021-04-17 18:36:14'),(4,1,'a4bPqm8nClmXi9tRNwh2fJwO3fblCB9mB3Z43f2KLpTtdFALPpKz0tJdNKnWhdMqY8F8meqU3qrPvzY5UVezU4NLRItMLk4T5r09JLPqmDz1O9EFbwVicmHYgcEZe','2021-04-17 19:07:11','2021-04-17 18:37:11','2021-04-17 18:37:11'),(5,1,'E7lDArYZ9KqRdyhj8PF56NL2mJ7NkHXIWuqAR9CVxBDfzvnGVjbNssoyw0Jfyp01SfIub4agDYVGFlNQGSfWT1WpSTiX3jRRrmCHsrWWasBvyu4cNlElr4SPihtMU','2021-04-17 19:09:56','2021-04-17 18:39:56','2021-04-17 18:39:56'),(6,1,'3oxggE1Y2PyaNXLRHdpC856Q935Nqyjxwu3JRZFjLGzqjOnoHNkCg2joMNsimfBtHTWsprOwlTtfW34PDLTJ0RELIsIwhscXTc8CHHIw26QcN0FG3pBGteZbsMweG','2021-04-17 19:11:21','2021-04-17 18:41:21','2021-04-17 18:41:21'),(7,1,'fVRLYpQQMu1nAjvEUeOf1R5VzdchAc865P0CoplK73rR6hhu6zFwZR1ONarrKE65mXmHUwsuRvl1uTqBOIX4NrKh9BWYiwfCTPkoA3iQULueZ8FHBli4SUV8CrdRy','2021-04-21 02:59:25','2021-04-19 11:12:25','2021-04-19 11:12:25'),(8,1,'GNe217bUPko0k','2021-04-22 17:05:42','2021-04-20 16:35:42','2021-04-20 16:35:42'),(10,1,'gJP9vers9b','2021-04-23 15:45:39','2021-04-23 15:15:39','2021-04-23 15:15:39'),(11,1,'VrnixqShqF','2021-04-23 15:47:08','2021-04-23 15:17:08','2021-04-23 15:17:08'),(12,1,'hBegQc42qJ','2021-04-23 16:11:42','2021-04-23 15:41:42','2021-04-23 15:41:42'),(13,2,'XxWLAvrnpu','2021-04-25 21:53:41','2021-04-23 21:23:41','2021-04-23 21:23:41'),(14,2,'2BUMg0gdJZ','2021-04-24 10:09:39','2021-04-24 09:39:39','2021-04-24 09:39:39'),(15,1,'e36RVaIKkm','2021-04-26 12:38:05','2021-04-26 12:08:05','2021-04-26 12:08:05'),(16,1,'q0UgQ1gVRu','2021-05-03 11:20:00','2021-05-03 10:50:00','2021-05-03 10:50:00'),(18,2,'gdeJDXJiB7','2021-05-05 17:38:05','2021-05-05 17:08:05','2021-05-05 17:08:05'),(19,1,'5tCsZqoOCO','2021-05-06 10:02:07','2021-05-06 09:32:07','2021-05-06 09:32:07'),(20,1,'G3Yh5k3Qn9','2021-05-06 12:22:01','2021-05-06 11:52:01','2021-05-06 11:52:01'),(21,1,'Kr4WYFka3m','2021-05-15 13:18:26','2021-05-15 12:48:26','2021-05-15 12:48:26'),(22,1,'ALNHCO7Ato','2021-05-15 13:18:55','2021-05-15 12:48:55','2021-05-15 12:48:55'),(23,1,'gRIoOaPDA5','2021-05-17 18:22:34','2021-05-17 17:52:34','2021-05-17 17:52:34'),(24,1,'G9nS4jbXu0','2021-05-21 17:54:36','2021-05-21 17:24:36','2021-05-21 17:24:36'),(25,1,'v4146lsEzP','2021-05-21 17:54:43','2021-05-21 17:24:43','2021-05-21 17:24:43'),(26,1,'KXqtGqeXQP','2021-05-21 17:54:51','2021-05-21 17:24:51','2021-05-21 17:24:51'),(27,1,'Rah7RzbE41','2021-05-21 17:55:05','2021-05-21 17:25:05','2021-05-21 17:25:05'),(28,1,'zcNArfGhqs','2021-05-21 17:55:11','2021-05-21 17:25:11','2021-05-21 17:25:11'),(29,1,'ZpvUwX4go4','2021-05-22 16:22:43','2021-05-22 15:52:43','2021-05-22 15:52:43'),(30,1,'l4xNL5MWQn','2021-05-22 16:28:22','2021-05-22 15:58:22','2021-05-22 15:58:22'),(31,1,'sQOY6tby5o','2021-05-22 16:29:33','2021-05-22 15:59:33','2021-05-22 15:59:33'),(32,4,'ZDkDmD6VPn','2021-05-22 16:30:22','2021-05-22 16:00:22','2021-05-22 16:00:22'),(33,1,'CBKfl5Hcse','2021-05-22 18:45:22','2021-05-22 18:15:22','2021-05-22 18:15:22'),(34,1,'wv7xOnuBSJ','2021-05-25 15:08:40','2021-05-25 14:38:40','2021-05-25 14:38:40'),(35,1,'tyTMw7pURO','2021-05-25 15:10:07','2021-05-25 14:40:07','2021-05-25 14:40:07'),(36,1,'nRTnNsn6yE','2021-05-26 16:11:43','2021-05-26 15:41:43','2021-05-26 15:41:43'),(37,1,'lmhAP69aGh','2021-05-31 11:51:24','2021-05-31 11:21:24','2021-05-31 11:21:24'),(38,1,'oQZfBeudxB','2021-06-04 17:13:05','2021-06-04 16:43:05','2021-06-04 16:43:05'),(39,1,'fv3Aby1kkT','2021-06-19 16:03:23','2021-06-19 15:33:23','2021-06-19 15:33:23'),(40,1,'3ETygxydxx','2021-07-13 17:48:12','2021-07-13 17:18:12','2021-07-13 17:18:12'),(41,2,'CT6YMy0Smt','2021-07-15 16:36:14','2021-07-15 16:06:14','2021-07-15 16:06:14'),(42,1,'BvDRHoDR6i','2021-07-17 11:58:01','2021-07-17 11:28:01','2021-07-17 11:28:01'),(44,1,'Wz5bX8HPnJ','2021-07-19 19:17:45','2021-07-19 18:47:45','2021-07-19 18:47:45'),(45,1,'COO876pqSB','2021-07-19 19:18:14','2021-07-19 18:48:14','2021-07-19 18:48:14'),(47,1,'1DNPqqbkPG','2021-07-19 19:22:20','2021-07-19 18:52:20','2021-07-19 18:52:20'),(48,1,'4zBzhTfmiO','2021-07-20 07:38:50','2021-07-20 07:08:50','2021-07-20 07:08:50'),(49,1,'W7JfCnatyU','2021-07-20 09:16:15','2021-07-20 08:46:15','2021-07-20 08:46:15'),(50,1,'mHNOZIDKac','2021-07-20 11:11:33','2021-07-20 10:41:33','2021-07-20 10:41:33'),(51,1,'YrVEjlZK1f','2021-07-20 11:50:25','2021-07-20 11:20:25','2021-07-20 11:20:25'),(52,1,'OuA0mOVT46','2021-07-20 11:52:43','2021-07-20 11:22:43','2021-07-20 11:22:43'),(53,1,'uJDvPpIUn2','2021-07-20 11:55:35','2021-07-20 11:25:35','2021-07-20 11:25:35'),(54,1,'rROE37oy1l','2021-07-20 11:58:42','2021-07-20 11:28:42','2021-07-20 11:28:42'),(55,1,'gRZix79QYj','2021-07-20 11:59:15','2021-07-20 11:29:15','2021-07-20 11:29:15'),(56,1,'HRMhAbXNul','2021-07-20 12:03:19','2021-07-20 11:33:19','2021-07-20 11:33:19'),(57,1,'Bq13fyM2F4','2021-07-20 12:09:38','2021-07-20 11:39:38','2021-07-20 11:39:38'),(58,1,'oHG7CKmr1q','2021-07-20 12:10:09','2021-07-20 11:40:09','2021-07-20 11:40:09'),(59,1,'oCFmdqQO1Q','2021-07-20 12:44:52','2021-07-20 12:14:52','2021-07-20 12:14:52'),(60,1,'kSXDk9xrCR','2021-07-20 12:46:26','2021-07-20 12:16:26','2021-07-20 12:16:26'),(61,1,'n5D4dfrog3','2021-07-20 12:47:45','2021-07-20 12:17:45','2021-07-20 12:17:45'),(62,1,'c4iCVUcx4L','2021-07-20 12:49:03','2021-07-20 12:19:03','2021-07-20 12:19:03'),(63,1,'uSeYZ0GrfN','2021-07-20 12:50:05','2021-07-20 12:20:05','2021-07-20 12:20:05'),(64,1,'waLdQypUn9','2021-07-20 12:51:08','2021-07-20 12:21:08','2021-07-20 12:21:08'),(65,1,'Qc6Hr6j7PA','2021-07-20 12:55:41','2021-07-20 12:25:41','2021-07-20 12:25:41'),(67,1,'D2L0WB8N2G','2021-07-20 16:33:59','2021-07-20 16:03:59','2021-07-20 16:03:59'),(68,1,'TY8cc6fQ8Y','2021-07-22 10:00:48','2021-07-22 09:30:48','2021-07-22 09:30:48'),(71,1,'3dSu9FPn8n','2021-07-22 12:01:22','2021-07-22 11:31:22','2021-07-22 11:31:22'),(79,1,'SXLRLAm5hJ','2021-07-24 11:50:56','2021-07-24 11:20:56','2021-07-24 11:20:56'),(80,1,'GKqRCDVIX4','2021-07-26 13:31:04','2021-07-26 13:01:03','2021-07-26 13:01:03'),(81,1,'KyWlW31JyG','2021-07-26 13:32:25','2021-07-26 13:02:25','2021-07-26 13:02:25'),(82,1,'SLUllE5l1X','2021-07-26 17:54:35','2021-07-26 17:24:35','2021-07-26 17:24:35'),(85,1,'VG8tXQFrDJ','2021-07-27 10:21:48','2021-07-27 09:51:48','2021-07-27 09:51:48'),(86,1,'dtqgAb2coh','2021-07-27 10:23:27','2021-07-27 09:53:27','2021-07-27 09:53:27'),(88,1,'kixivhww6w','2021-07-29 18:19:20','2021-07-29 17:49:20','2021-07-29 17:49:20'),(92,1,'is3I5ZTxdp','2021-07-30 18:30:21','2021-07-30 18:00:21','2021-07-30 18:00:21'),(97,1,'HofKVryBGd','2021-08-07 00:57:12','2021-08-07 00:27:12','2021-08-07 00:27:12'),(99,1,'3xtJbLC2mD','2021-08-27 12:17:40','2021-08-27 11:47:40','2021-08-27 11:47:40'),(101,1,'TXk4fh8uw0','2021-09-04 13:40:41','2021-09-04 13:10:41','2021-09-04 13:10:41'),(103,1,'cgdUDtkepg','2021-09-20 13:39:23','2021-09-20 13:09:23','2021-09-20 13:09:23'),(104,1,'5ZENluw2Db','2021-09-21 14:36:52','2021-09-21 14:06:52','2021-09-21 14:06:52'),(105,1,'GfvbYhv0J8','2021-09-21 15:08:08','2021-09-21 14:38:08','2021-09-21 14:38:08'),(106,1,'iegDXtpDZe','2021-09-21 16:08:01','2021-09-21 15:38:01','2021-09-21 15:38:01'),(108,2,'p0vUZRxF0c','2021-10-01 13:19:29','2021-10-01 12:49:29','2021-10-01 12:49:29'),(109,2,'ZoDs5V9ldz','2021-10-01 13:19:44','2021-10-01 12:49:44','2021-10-01 12:49:44'),(111,1,'QSA83l6faU','2021-10-06 19:07:29','2021-10-06 18:37:29','2021-10-06 18:37:29'),(112,1,'egJrjB9lea','2021-10-07 08:28:38','2021-10-07 07:58:38','2021-10-07 07:58:38'),(113,1,'3Vd9Mdzthw','1970-01-01 05:30:00','2021-10-07 11:35:41','2021-10-07 11:35:41'),(114,1,'LHS5EAYn53','1970-01-01 05:30:00','2021-10-07 11:37:08','2021-10-07 11:37:08'),(115,1,'ssiCB3ZHKu','1970-01-01 05:30:00','2021-10-07 11:38:14','2021-10-07 11:38:14'),(116,1,'Mdv487Uk7E','2021-10-07 15:19:52','2021-10-07 11:39:52','2021-10-07 11:39:52'),(117,1,'58Jw92094A','2021-10-07 15:20:19','2021-10-07 11:40:19','2021-10-07 11:40:19'),(118,1,'BJPmVOhn7l','2021-10-09 13:53:09','2021-10-09 13:23:09','2021-10-09 13:23:09'),(119,1,'2Ttag6Xon6','2021-10-09 13:53:56','2021-10-09 13:23:56','2021-10-09 13:23:56'),(120,1,'DfxkUQrjNf','2021-11-13 15:28:58','2021-11-13 11:48:58','2021-11-13 11:48:58'),(121,1,'xzEC58c6zc','2021-11-13 15:45:13','2021-11-13 12:05:13','2021-11-13 12:05:13'),(122,1,'fRv19XVwwO','2021-11-13 17:55:37','2021-11-13 14:15:37','2021-11-13 14:15:37'),(124,1,'2LIK70zdnw','2021-11-13 21:30:54','2021-11-13 17:50:54','2021-11-13 17:50:54'),(126,1,'uwXLECadHF','2021-11-13 22:15:12','2021-11-13 18:35:12','2021-11-13 18:35:12'),(127,1,'lkoeXt1NDD','2021-11-30 18:31:13','2021-11-30 14:51:13','2021-11-30 14:51:13'),(130,1,'FWMy6tqTFZ','2021-12-04 18:40:50','2021-12-04 15:00:50','2021-12-04 15:00:50'),(131,1,'DPSjRdlC1q','2021-12-04 18:59:52','2021-12-04 15:19:52','2021-12-04 15:19:52'),(133,1,'6qHINZld2N','2021-12-06 13:44:50','2021-12-06 10:04:50','2021-12-06 10:04:50'),(135,1,'Vr4LcYeZ2c','2021-12-09 20:53:18','2021-12-09 17:13:18','2021-12-09 17:13:18');
/*!40000 ALTER TABLE `generate_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `holiday_masters`
--

DROP TABLE IF EXISTS `holiday_masters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `holiday_masters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `restaurant_id` int(11) NOT NULL,
  `year` varchar(255) NOT NULL,
  `date` date NOT NULL,
  `holiday_name` varchar(255) NOT NULL,
  `status` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1 Active 2 Deactive',
  `created_by` int(11) NOT NULL,
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `holiday_masters`
--

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

--
-- Table structure for table `invoice_delete_crons`
--

DROP TABLE IF EXISTS `invoice_delete_crons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invoice_delete_crons` (
  `id` int(11) NOT NULL DEFAULT 0,
  `branch_id` int(11) NOT NULL,
  `transaction_id` int(11) NOT NULL,
  `ref_id` varchar(100) NOT NULL,
  `request_by` int(11) NOT NULL,
  `status` tinyint(4) NOT NULL COMMENT '0-> Pending.  1 -> Under Process.  2 -> Completed',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `invoice_delete_crons`
--

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

--
-- Table structure for table `login_logs`
--

DROP TABLE IF EXISTS `login_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `login_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `login_date` date NOT NULL,
  `login_time` time NOT NULL,
  `login_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 App 2 Dashbaord',
  `imei_no` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `login_mode` varchar(100) NOT NULL DEFAULT 'App',
  `carrier_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `app_version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `phone_model` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `phone_manufracture` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `sdk_phone_version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=333 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `login_logs`
--

LOCK TABLES `login_logs` WRITE;
/*!40000 ALTER TABLE `login_logs` DISABLE KEYS */;
INSERT INTO `login_logs` VALUES (1,1,'2021-07-21','03:12:21',1,'ba39e3acd0b100a7','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-21 03:12:21','2021-07-21 03:12:21'),(2,1,'2021-07-21','03:16:41',1,'ba39e3acd0b100a7','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-21 03:16:41','2021-07-21 03:16:41'),(3,1,'2021-07-21','08:48:23',1,'ba39e3acd0b100a7','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-21 08:48:23','2021-07-21 08:48:23'),(4,1,'2021-07-21','10:03:35',2,'','','App','','','','','','2021-07-21 10:03:35','2021-07-21 10:03:35'),(5,2,'2021-07-21','10:05:50',1,'ba39e3acd0b100a7','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-21 10:05:50','2021-07-21 10:05:50'),(6,1,'2021-07-21','14:05:25',2,'','','App','','','','','','2021-07-21 14:05:25','2021-07-21 14:05:25'),(7,1,'2021-07-21','23:34:14',1,'ba39e3acd0b100a7','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-21 23:34:14','2021-07-21 23:34:14'),(8,1,'2021-07-22','01:03:41',1,'5160d4730cb5588c','87.184.155.107','App','','V 1.0','sdk_gphone_x86_arm','Google','SDK version :30 ,Phone Version :11','2021-07-22 01:03:41','2021-07-22 01:03:41'),(9,1,'2021-07-22','09:32:41',2,'','','App','','','','','','2021-07-22 09:32:41','2021-07-22 09:32:41'),(10,1,'2021-07-22','10:50:24',2,'','','App','','','','','','2021-07-22 10:50:24','2021-07-22 10:50:24'),(11,1,'2021-07-22','10:55:15',2,'','','App','','','','','','2021-07-22 10:55:15','2021-07-22 10:55:15'),(12,1,'2021-07-22','14:19:40',2,'','','App','','','','','','2021-07-22 14:19:40','2021-07-22 14:19:40'),(13,1,'2021-07-22','15:42:32',2,'','','App','','','','','','2021-07-22 15:42:32','2021-07-22 15:42:32'),(14,1,'2021-07-22','15:43:27',2,'','','App','','','','','','2021-07-22 15:43:27','2021-07-22 15:43:27'),(15,1,'2021-07-22','17:10:03',2,'','','App','','','','','','2021-07-22 17:10:03','2021-07-22 17:10:03'),(16,1,'2021-07-23','10:53:28',1,'106962f2168ebf78','113.238.179.91','App','','V 1.0','moto g(6) play','motorola','SDK version :28 ,Phone Version :9','2021-07-23 10:53:28','2021-07-23 10:53:28'),(17,1,'2021-07-23','12:47:10',1,'6dfb58770bce231a','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-23 12:47:10','2021-07-23 12:47:10'),(18,1,'2021-07-23','16:45:32',2,'','','App','','','','','','2021-07-23 16:45:32','2021-07-23 16:45:32'),(19,1,'2021-07-24','04:54:39',1,'ba39e3acd0b100a7','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-24 04:54:39','2021-07-24 04:54:39'),(20,1,'2021-07-24','12:39:04',2,'','','App','','','','','','2021-07-24 12:39:04','2021-07-24 12:39:04'),(21,1,'2021-07-24','15:19:59',2,'','','App','','','','','','2021-07-24 15:19:59','2021-07-24 15:19:59'),(22,1,'2021-07-24','15:36:58',2,'','','App','','','','','','2021-07-24 15:36:58','2021-07-24 15:36:58'),(23,1,'2021-07-24','16:31:43',2,'','','App','','','','','','2021-07-24 16:31:43','2021-07-24 16:31:43'),(24,1,'2021-07-24','18:04:10',2,'','','App','','','','','','2021-07-24 18:04:10','2021-07-24 18:04:10'),(25,1,'2021-07-25','18:41:05',2,'','','App','','','','','','2021-07-25 18:41:05','2021-07-25 18:41:05'),(26,1,'2021-07-26','09:38:59',2,'','','App','','','','','','2021-07-26 09:38:59','2021-07-26 09:38:59'),(27,1,'2021-07-26','10:41:13',2,'','','App','','','','','','2021-07-26 10:41:13','2021-07-26 10:41:13'),(28,1,'2021-07-26','14:37:07',1,'6dfb58770bce231a','229.107.234.42','App','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-07-26 14:37:07','2021-07-26 14:37:07'),(29,1,'2021-07-26','22:35:58',1,'ced04cce085f1067','13.158.87.3','App','','V 1.0','sdk_gphone_x86_arm','Google','SDK version :30 ,Phone Version :11','2021-07-26 22:35:58','2021-07-26 22:35:58'),(30,1,'2021-07-27','09:36:50',2,'','','Web','','','','','','2021-07-27 09:36:50','2021-07-27 09:36:50'),(31,1,'2021-07-27','13:56:45',2,'','','Web','','','','','','2021-07-27 13:56:45','2021-07-27 13:56:45'),(32,1,'2021-07-27','15:43:30',2,'','','Web','','','','','','2021-07-27 15:43:30','2021-07-27 15:43:30'),(33,1,'2021-07-28','09:28:20',2,'','','Web','','','','','','2021-07-28 09:28:20','2021-07-28 09:28:20'),(34,1,'2021-07-28','12:04:57',2,'','','Web','','','','','','2021-07-28 12:04:57','2021-07-28 12:04:57'),(35,1,'2021-07-28','14:45:11',2,'','','Web','','','','','','2021-07-28 14:45:11','2021-07-28 14:45:11'),(36,1,'2021-07-29','10:09:11',2,'','','Web','','','','','','2021-07-29 10:09:11','2021-07-29 10:09:11'),(37,36,'2021-07-29','15:38:38',2,'','','Web','','','','','','2021-07-29 15:38:38','2021-07-29 15:38:38'),(38,1,'2021-07-29','16:57:46',2,'','','Web','','','','','','2021-07-29 16:57:46','2021-07-29 16:57:46'),(39,1,'2021-07-29','18:22:23',2,'','','Web','','','','','','2021-07-29 18:22:23','2021-07-29 18:22:23'),(40,1,'2021-07-30','10:33:33',2,'','','Web','','','','','','2021-07-30 10:33:33','2021-07-30 10:33:33'),(41,37,'2021-07-30','12:03:12',2,'','','Web','','','','','','2021-07-30 12:03:12','2021-07-30 12:03:12'),(42,1,'2021-07-30','12:35:49',2,'','','Web','','','','','','2021-07-30 12:35:49','2021-07-30 12:35:49'),(43,1,'2021-07-30','17:02:53',2,'','','Web','','','','','','2021-07-30 17:02:53','2021-07-30 17:02:53'),(44,1,'2021-07-31','10:33:51',2,'','','Web','','','','','','2021-07-31 10:33:51','2021-07-31 10:33:51'),(45,1,'2021-07-31','12:04:20',2,'','','Web','','','','','','2021-07-31 12:04:20','2021-07-31 12:04:20'),(46,1,'2021-07-31','15:16:58',2,'','','Web','','','','','','2021-07-31 15:16:58','2021-07-31 15:16:58'),(47,1,'2021-07-31','17:30:56',2,'','','Web','','','','','','2021-07-31 17:30:56','2021-07-31 17:30:56'),(48,1,'2021-08-02','18:06:07',2,'','','Web','','','','','','2021-08-02 18:06:07','2021-08-02 18:06:07'),(49,1,'2021-08-02','18:40:19',2,'','','Web','','','','','','2021-08-02 18:40:19','2021-08-02 18:40:19'),(50,1,'2021-08-02','18:56:00',2,'','','Web','','','','','','2021-08-02 18:56:00','2021-08-02 18:56:00'),(51,1,'2021-08-03','15:49:17',2,'','','Web','','','','','','2021-08-03 15:49:17','2021-08-03 15:49:17'),(52,1,'2021-08-03','17:40:17',2,'','','Web','','','','','','2021-08-03 17:40:17','2021-08-03 17:40:17'),(53,1,'2021-08-03','18:15:30',2,'','','Web','','','','','','2021-08-03 18:15:30','2021-08-03 18:15:30'),(54,1,'2021-08-04','12:32:56',2,'','','Web','','','','','','2021-08-04 12:32:56','2021-08-04 12:32:56'),(55,1,'2021-08-04','13:09:14',2,'','','Web','','','','','','2021-08-04 13:09:14','2021-08-04 13:09:14'),(56,1,'2021-08-04','16:48:55',2,'','','Web','','','','','','2021-08-04 16:48:55','2021-08-04 16:48:55'),(57,1,'2021-08-04','17:12:11',2,'','','Web','','','','','','2021-08-04 17:12:11','2021-08-04 17:12:11'),(58,15,'2021-08-04','18:59:17',2,'','','Web','','','','','','2021-08-04 18:59:17','2021-08-04 18:59:17'),(59,1,'2021-08-05','11:02:03',2,'','','Web','','','','','','2021-08-05 11:02:03','2021-08-05 11:02:03'),(60,1,'2021-08-05','11:03:13',2,'','','Web','','','','','','2021-08-05 11:03:13','2021-08-05 11:03:13'),(61,1,'2021-08-05','17:27:43',2,'','','Web','','','','','','2021-08-05 17:27:43','2021-08-05 17:27:43'),(62,1,'2021-08-06','09:52:14',2,'','','Web','','','','','','2021-08-06 09:52:14','2021-08-06 09:52:14'),(63,1,'2021-08-06','10:32:09',2,'','','Web','','','','','','2021-08-06 10:32:09','2021-08-06 10:32:09'),(64,1,'2021-08-06','16:01:13',2,'','','Web','','','','','','2021-08-06 16:01:13','2021-08-06 16:01:13'),(65,1,'2021-08-06','16:41:31',2,'','','Web','','','','','','2021-08-06 16:41:31','2021-08-06 16:41:31'),(66,1,'2021-08-07','00:26:29',2,'','','Web','','','','','','2021-08-07 00:26:29','2021-08-07 00:26:29'),(67,1,'2021-08-07','06:53:30',2,'','','Web','','','','','','2021-08-07 06:53:30','2021-08-07 06:53:30'),(68,1,'2021-08-07','11:19:30',2,'','','Web','','','','','','2021-08-07 11:19:30','2021-08-07 11:19:30'),(69,1,'2021-08-07','11:59:23',2,'','','Web','','','','','','2021-08-07 11:59:23','2021-08-07 11:59:23'),(70,1,'2021-08-07','16:11:55',2,'','','Web','','','','','','2021-08-07 16:11:55','2021-08-07 16:11:55'),(71,1,'2021-08-09','09:50:10',2,'','','Web','','','','','','2021-08-09 09:50:10','2021-08-09 09:50:10'),(72,1,'2021-08-09','12:09:51',1,'ba39e3acd0b100a7','20.252.147.142','App','','V 1.2','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-08-09 12:09:51','2021-08-09 12:09:51'),(73,1,'2021-08-09','12:11:36',2,'','','Web','','','','','','2021-08-09 12:11:36','2021-08-09 12:11:36'),(74,1,'2021-08-09','12:29:51',1,'ba39e3acd0b100a7','20.252.147.142','App','','V 1.2','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-08-09 12:29:51','2021-08-09 12:29:51'),(75,1,'2021-08-09','14:27:34',2,'','','Web','','','','','','2021-08-09 14:27:34','2021-08-09 14:27:34'),(76,1,'2021-08-09','15:41:12',1,'106962f2168ebf78','113.238.179.91','App','','V 1.2','moto g(6) play','motorola','SDK version :28 ,Phone Version :9','2021-08-09 15:41:12','2021-08-09 15:41:12'),(77,1,'2021-08-09','16:19:25',2,'','','Web','','','','','','2021-08-09 16:19:25','2021-08-09 16:19:25'),(78,1,'2021-08-10','11:23:25',1,'ba39e3acd0b100a7','209.225.108.140','App','','V 1.2','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-08-10 11:23:25','2021-08-10 11:23:25'),(79,1,'2021-08-10','11:39:46',2,'','','Web','','','','','','2021-08-10 11:39:46','2021-08-10 11:39:46'),(80,1,'2021-08-10','11:40:11',2,'','','Web','','','','','','2021-08-10 11:40:11','2021-08-10 11:40:11'),(81,1,'2021-08-10','14:33:06',2,'','','Web','','','','','','2021-08-10 14:33:06','2021-08-10 14:33:06'),(82,1,'2021-08-10','14:40:13',2,'','','Web','','','','','','2021-08-10 14:40:13','2021-08-10 14:40:13'),(83,1,'2021-08-10','16:41:16',2,'','','Web','','','','','','2021-08-10 16:41:16','2021-08-10 16:41:16'),(84,1,'2021-08-10','19:09:29',2,'','','Web','','','','','','2021-08-10 19:09:29','2021-08-10 19:09:29'),(85,1,'2021-08-11','09:45:45',2,'','','Web','','','','','','2021-08-11 09:45:45','2021-08-11 09:45:45'),(86,1,'2021-08-11','11:05:58',2,'','','Web','','','','','','2021-08-11 11:05:58','2021-08-11 11:05:58'),(87,1,'2021-08-12','14:41:04',1,'358240051111110','15.2.0.10','App','','V 1.2','Android SDK built for x86','Google','SDK version :24 ,Phone Version :7.0','2021-08-12 14:41:04','2021-08-12 14:41:04'),(88,1,'2021-08-12','14:41:46',2,'','','Web','','','','','','2021-08-12 14:41:46','2021-08-12 14:41:46'),(89,1,'2021-08-12','18:22:23',2,'','','Web','','','','','','2021-08-12 18:22:23','2021-08-12 18:22:23'),(90,1,'2021-08-13','10:11:20',2,'','','Web','','','','','','2021-08-13 10:11:20','2021-08-13 10:11:20'),(91,1,'2021-08-13','14:34:52',2,'','','Web','','','','','','2021-08-13 14:34:52','2021-08-13 14:34:52'),(92,1,'2021-08-13','15:23:17',1,'358240051111110','15.2.0.10','App','','V 1.2','Android SDK built for x86','Google','SDK version :24 ,Phone Version :7.0','2021-08-13 15:23:17','2021-08-13 15:23:17'),(93,1,'2021-08-13','16:33:10',1,'358240051111110','15.2.0.10','App','','V 1.2','Android SDK built for x86','Google','SDK version :24 ,Phone Version :7.0','2021-08-13 16:33:10','2021-08-13 16:33:10'),(94,1,'2021-08-14','17:33:08',2,'','','Web','','','','','','2021-08-14 17:33:08','2021-08-14 17:33:08'),(95,1,'2021-08-18','11:04:38',2,'','','Web','','','','','','2021-08-18 11:04:38','2021-08-18 11:04:38'),(96,1,'2021-08-18','12:31:47',2,'','','Web','','','','','','2021-08-18 12:31:47','2021-08-18 12:31:47'),(97,1,'2021-08-20','06:07:30',2,'','','Web','','','','','','2021-08-20 06:07:30','2021-08-20 06:07:30'),(98,1,'2021-08-20','16:07:18',2,'','','Web','','','','','','2021-08-20 16:07:18','2021-08-20 16:07:18'),(99,1,'2021-08-20','16:41:03',2,'','','Web','','','','','','2021-08-20 16:41:03','2021-08-20 16:41:03'),(100,1,'2021-08-21','11:26:22',2,'','','Web','','','','','','2021-08-21 11:26:22','2021-08-21 11:26:22'),(101,1,'2021-08-21','15:09:33',2,'','','Web','','','','','','2021-08-21 15:09:33','2021-08-21 15:09:33'),(102,1,'2021-08-21','15:10:53',2,'','','Web','','','','','','2021-08-21 15:10:53','2021-08-21 15:10:53'),(103,1,'2021-08-21','15:47:33',2,'','','Web','','','','','','2021-08-21 15:47:33','2021-08-21 15:47:33'),(104,1,'2021-08-27','11:46:58',2,'','','Web','','','','','','2021-08-27 11:46:58','2021-08-27 11:46:58'),(105,1,'2021-08-28','16:26:41',2,'','','Web','','','','','','2021-08-28 16:26:41','2021-08-28 16:26:41'),(106,1,'2021-08-31','18:36:23',2,'','','Web','','','','','','2021-08-31 18:36:23','2021-08-31 18:36:23'),(107,1,'2021-08-31','19:01:15',2,'','','Web','','','','','','2021-08-31 19:01:15','2021-08-31 19:01:15'),(108,1,'2021-09-03','19:20:16',2,'','','Web','','','','','','2021-09-03 19:20:16','2021-09-03 19:20:16'),(109,1,'2021-09-04','10:15:15',2,'','','Web','','','','','','2021-09-04 10:15:15','2021-09-04 10:15:15'),(110,1,'2021-09-06','13:04:00',2,'','','Web','','','','','','2021-09-06 13:04:00','2021-09-06 13:04:00'),(111,1,'2021-09-07','12:20:06',2,'','','Web','','','','','','2021-09-07 12:20:06','2021-09-07 12:20:06'),(112,1,'2021-09-07','14:40:30',2,'','','Web','','','','','','2021-09-07 14:40:30','2021-09-07 14:40:30'),(113,1,'2021-09-07','15:30:57',2,'','','Web','','','','','','2021-09-07 15:30:57','2021-09-07 15:30:57'),(114,1,'2021-09-07','17:06:42',2,'','','Web','','','','','','2021-09-07 17:06:42','2021-09-07 17:06:42'),(115,1,'2021-09-08','16:00:21',2,'','','Web','','','','','','2021-09-08 16:00:21','2021-09-08 16:00:21'),(116,1,'2021-09-10','11:46:46',2,'','','Web','','','','','','2021-09-10 11:46:46','2021-09-10 11:46:46'),(117,1,'2021-09-10','11:47:24',2,'','','Web','','','','','','2021-09-10 11:47:24','2021-09-10 11:47:24'),(118,1,'2021-09-10','11:47:31',2,'','','Web','','','','','','2021-09-10 11:47:31','2021-09-10 11:47:31'),(119,1,'2021-09-10','11:47:47',2,'','','Web','','','','','','2021-09-10 11:47:47','2021-09-10 11:47:47'),(120,1,'2021-09-11','12:49:11',2,'','','Web','','','','','','2021-09-11 12:49:11','2021-09-11 12:49:11'),(121,1,'2021-09-11','14:53:32',2,'','','Web','','','','','','2021-09-11 14:53:32','2021-09-11 14:53:32'),(122,1,'2021-09-13','14:43:15',2,'','','Web','','','','','','2021-09-13 14:43:15','2021-09-13 14:43:15'),(123,1,'2021-09-15','14:10:35',1,'106962f2168ebf78','216.35.58.71','App','','V 1.2','moto g(6) play','motorola','SDK version :28 ,Phone Version :9','2021-09-15 14:10:35','2021-09-15 14:10:35'),(124,1,'2021-09-16','10:09:05',2,'','','Web','','','','','','2021-09-16 10:09:05','2021-09-16 10:09:05'),(125,1,'2021-09-16','17:38:14',2,'','','Web','','','','','','2021-09-16 17:38:14','2021-09-16 17:38:14'),(126,1,'2021-09-17','09:42:14',2,'','','Web','','','','','','2021-09-17 09:42:14','2021-09-17 09:42:14'),(127,1,'2021-09-17','11:35:11',2,'','','Web','','','','','','2021-09-17 11:35:11','2021-09-17 11:35:11'),(128,1,'2021-09-17','15:26:39',2,'','','Web','','','','','','2021-09-17 15:26:39','2021-09-17 15:26:39'),(129,1,'2021-09-18','09:45:20',2,'','','Web','','','','','','2021-09-18 09:45:20','2021-09-18 09:45:20'),(130,1,'2021-09-18','18:15:26',2,'','','Web','','','','','','2021-09-18 18:15:26','2021-09-18 18:15:26'),(131,1,'2021-09-20','11:49:26',2,'','','Web','','','','','','2021-09-20 11:49:26','2021-09-20 11:49:26'),(132,1,'2021-09-20','11:55:18',2,'','','Web','','','','','','2021-09-20 11:55:18','2021-09-20 11:55:18'),(133,1,'2021-09-20','13:06:40',2,'','','Web','','','','','','2021-09-20 13:06:40','2021-09-20 13:06:40'),(134,1,'2021-09-21','09:40:44',2,'','','Web','','','','','','2021-09-21 09:40:44','2021-09-21 09:40:44'),(135,1,'2021-09-21','09:53:59',2,'','','Web','','','','','','2021-09-21 09:53:59','2021-09-21 09:53:59'),(136,1,'2021-09-21','18:22:19',2,'','','Web','','','','','','2021-09-21 18:22:19','2021-09-21 18:22:19'),(137,1,'2021-09-22','09:45:01',2,'','','Web','','','','','','2021-09-22 09:45:01','2021-09-22 09:45:01'),(138,1,'2021-09-22','10:05:09',2,'','','Web','','','','','','2021-09-22 10:05:09','2021-09-22 10:05:09'),(139,1,'2021-09-22','18:21:43',2,'','','Web','','','','','','2021-09-22 18:21:43','2021-09-22 18:21:43'),(140,1,'2021-09-23','10:21:11',2,'','','Web','','','','','','2021-09-23 10:21:11','2021-09-23 10:21:11'),(141,1,'2021-09-23','14:29:55',2,'','','Web','','','','','','2021-09-23 14:29:55','2021-09-23 14:29:55'),(142,1,'2021-09-23','17:55:14',2,'','106.207.182.129','Web','','','','','','2021-09-23 17:55:14','2021-09-23 17:55:14'),(143,1,'2021-09-23','17:57:45',2,'','106.207.182.129','Web','','','','','','2021-09-23 17:57:45','2021-09-23 17:57:45'),(144,1,'2021-09-23','18:13:21',2,'','106.207.182.129','Web','','','','','','2021-09-23 18:13:21','2021-09-23 18:13:21'),(145,1,'2021-09-23','18:14:14',2,'','106.207.182.129','Web','','','','','','2021-09-23 18:14:14','2021-09-23 18:14:14'),(146,1,'2021-09-23','18:16:28',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 18:16:28','2021-09-23 18:16:28'),(147,1,'2021-09-23','18:18:22',2,'','157.38.41.135','Web','','','Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36','','','2021-09-23 18:18:22','2021-09-23 18:18:22'),(148,1,'2021-09-23','18:19:40',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15','','','2021-09-23 18:19:40','2021-09-23 18:19:40'),(149,1,'2021-09-23','18:20:26',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15','','','2021-09-23 18:20:26','2021-09-23 18:20:26'),(150,1,'2021-09-23','18:22:42',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36','','','2021-09-23 18:22:42','2021-09-23 18:22:42'),(151,1,'2021-09-23','21:28:06',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 21:28:06','2021-09-23 21:28:06'),(152,2,'2021-09-23','21:28:19',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 21:28:19','2021-09-23 21:28:19'),(153,1,'2021-09-23','21:34:17',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 21:34:17','2021-09-23 21:34:17'),(154,1,'2021-09-23','21:35:30',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 21:35:30','2021-09-23 21:35:30'),(155,1,'2021-09-23','21:38:13',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 21:38:13','2021-09-23 21:38:13'),(156,1,'2021-09-23','21:46:48',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 21:46:48','2021-09-23 21:46:48'),(157,2,'2021-09-23','21:47:00',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 21:47:00','2021-09-23 21:47:00'),(158,1,'2021-09-23','22:15:28',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:15:28','2021-09-23 22:15:28'),(159,2,'2021-09-23','22:15:47',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:15:47','2021-09-23 22:15:47'),(160,1,'2021-09-23','22:21:47',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:21:47','2021-09-23 22:21:47'),(161,2,'2021-09-23','22:22:04',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:22:04','2021-09-23 22:22:04'),(162,1,'2021-09-23','22:25:19',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:25:19','2021-09-23 22:25:19'),(163,2,'2021-09-23','22:25:42',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:25:42','2021-09-23 22:25:42'),(164,2,'2021-09-23','22:33:05',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:33:05','2021-09-23 22:33:05'),(165,1,'2021-09-23','22:33:21',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:33:21','2021-09-23 22:33:21'),(166,1,'2021-09-23','22:33:57',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:33:57','2021-09-23 22:33:57'),(167,2,'2021-09-23','22:34:12',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:34:12','2021-09-23 22:34:12'),(168,1,'2021-09-23','22:50:32',2,'','106.207.182.129','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-23 22:50:32','2021-09-23 22:50:32'),(169,1,'2021-09-24','09:55:17',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-24 09:55:17','2021-09-24 09:55:17'),(170,2,'2021-09-24','10:04:36',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-24 10:04:36','2021-09-24 10:04:36'),(171,2,'2021-09-24','14:05:42',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36','','','2021-09-24 14:05:42','2021-09-24 14:05:42'),(172,1,'2021-10-01','05:41:40',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 05:41:40','2021-10-01 05:41:40'),(173,2,'2021-10-01','06:36:00',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 06:36:00','2021-10-01 06:36:00'),(174,1,'2021-10-01','07:16:14',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 07:16:14','2021-10-01 07:16:14'),(175,2,'2021-10-01','07:19:24',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 07:19:24','2021-10-01 07:19:24'),(176,1,'2021-10-01','07:19:45',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 07:19:45','2021-10-01 07:19:45'),(177,2,'2021-10-01','07:22:09',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 07:22:09','2021-10-01 07:22:09'),(178,1,'2021-10-01','07:25:17',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 07:25:17','2021-10-01 07:25:17'),(179,2,'2021-10-01','07:30:14',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 07:30:14','2021-10-01 07:30:14'),(180,1,'2021-10-01','08:10:39',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 08:10:39','2021-10-01 08:10:39'),(181,1,'2021-10-01','08:17:31',2,'','157.47.240.176','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 08:17:31','2021-10-01 08:17:31'),(182,1,'2021-10-01','10:39:41',1,'ba39e3acd0b100a7','209.225.108.140','App','','V 1.5','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-10-01 10:38:32','2021-10-01 10:39:41'),(183,1,'2021-10-01','18:04:20',1,'ba39e3acd0b100a7','209.225.108.140','App','','V 1.5','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','2021-10-01 10:41:09','2021-10-01 18:04:20'),(184,1,'2021-10-01','13:02:30',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 13:02:30','2021-10-01 13:02:30'),(185,1,'2021-10-01','15:06:54',2,'','106.206.161.253','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 15:06:54','2021-10-01 15:06:54'),(186,2,'2021-10-01','16:07:37',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 16:07:37','2021-10-01 16:07:37'),(187,1,'2021-10-01','17:24:44',2,'','106.206.161.253','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 17:24:44','2021-10-01 17:24:44'),(188,1,'2021-10-01','18:16:06',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-01 18:16:06','2021-10-01 18:16:06'),(189,1,'2021-10-02','07:01:58',2,'','223.188.30.207','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-02 07:01:58','2021-10-02 07:01:58'),(190,4,'2021-10-02','07:09:18',2,'','223.188.30.207','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-02 07:09:18','2021-10-02 07:09:18'),(191,1,'2021-10-02','09:34:31',2,'','223.188.29.111','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-02 09:34:31','2021-10-02 09:34:31'),(192,1,'2021-10-02','10:28:38',2,'','223.188.29.111','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-02 10:28:38','2021-10-02 10:28:38'),(193,1,'2021-10-04','14:28:46',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-04 14:28:46','2021-10-04 14:28:46'),(194,2,'2021-10-04','15:40:36',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-04 15:40:36','2021-10-04 15:40:36'),(195,1,'2021-10-04','15:40:48',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','','','2021-10-04 15:40:48','2021-10-04 15:40:48'),(196,1,'2021-10-05','09:42:48',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-05 09:42:48','2021-10-05 09:42:48'),(197,1,'2021-10-05','18:44:46',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-05 18:44:46','2021-10-05 18:44:46'),(198,1,'2021-10-06','12:38:16',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-06 12:38:16','2021-10-06 12:38:16'),(199,1,'2021-10-06','12:38:17',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-06 12:38:17','2021-10-06 12:38:17'),(200,1,'2021-10-06','14:43:08',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','','','2021-10-06 14:43:08','2021-10-06 14:43:08'),(201,1,'2021-10-06','14:47:38',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-06 14:47:38','2021-10-06 14:47:38'),(202,1,'2021-10-06','18:35:27',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-06 18:35:27','2021-10-06 18:35:27'),(203,1,'2021-10-07','07:58:16',2,'','157.38.113.41','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-07 07:58:16','2021-10-07 07:58:16'),(204,1,'2021-10-07','10:40:45',2,'','223.233.120.205','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-07 10:40:45','2021-10-07 10:40:45'),(205,1,'2021-10-07','11:15:24',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-07 11:15:24','2021-10-07 11:15:24'),(206,2,'2021-10-07','19:38:20',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-07 19:38:20','2021-10-07 19:38:20'),(207,1,'2021-10-07','19:38:36',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-07 19:38:36','2021-10-07 19:38:36'),(208,1,'2021-10-07','22:17:39',2,'','157.38.104.34','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-07 22:17:39','2021-10-07 22:17:39'),(209,1,'2021-10-08','06:09:54',2,'','157.38.116.194','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 06:09:54','2021-10-08 06:09:54'),(210,1,'2021-10-08','09:33:37',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-08 09:33:37','2021-10-08 09:33:37'),(211,1,'2021-10-08','12:55:31',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-08 12:55:31','2021-10-08 12:55:31'),(212,1,'2021-10-08','15:01:02',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 15:01:02','2021-10-08 15:01:02'),(213,1,'2021-10-08','17:38:24',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 17:38:24','2021-10-08 17:38:24'),(214,41,'2021-10-08','17:39:04',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 17:39:04','2021-10-08 17:39:04'),(215,1,'2021-10-08','17:39:33',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 17:39:33','2021-10-08 17:39:33'),(216,1,'2021-10-08','17:40:08',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 17:40:08','2021-10-08 17:40:08'),(217,41,'2021-10-08','17:40:20',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 17:40:20','2021-10-08 17:40:20'),(218,2,'2021-10-08','18:01:54',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-08 18:01:54','2021-10-08 18:01:54'),(219,1,'2021-10-08','18:02:33',2,'','106.206.161.251','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-08 18:02:33','2021-10-08 18:02:33'),(220,1,'2021-10-09','10:33:16',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-09 10:33:16','2021-10-09 10:33:16'),(221,1,'2021-10-09','10:35:09',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-09 10:35:09','2021-10-09 10:35:09'),(222,1,'2021-10-09','13:23:29',1,'ba39e3acd0b100a7','63.1.13.152','App','','V 1.5','Redmi Note 8 Pro','Xiaomi','SDK version :30 ,Phone Version :11','2021-10-09 12:45:01','2021-10-09 13:23:29'),(223,1,'2021-10-09','14:08:30',2,'','106.206.129.229','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-09 14:08:30','2021-10-09 14:08:30'),(224,1,'2021-10-09','16:17:46',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36','','','2021-10-09 16:17:46','2021-10-09 16:17:46'),(225,1,'2021-10-10','17:06:08',2,'','157.38.246.54','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-10 17:06:08','2021-10-10 17:06:08'),(226,1,'2021-10-11','15:49:52',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-11 15:49:52','2021-10-11 15:49:52'),(227,1,'2021-10-12','09:31:02',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-12 09:31:02','2021-10-12 09:31:02'),(228,1,'2021-10-12','10:06:54',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-12 10:06:54','2021-10-12 10:06:54'),(229,1,'2021-10-12','15:00:01',2,'','106.206.129.242','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-12 15:00:01','2021-10-12 15:00:01'),(230,1,'2021-10-12','16:05:11',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-12 16:05:11','2021-10-12 16:05:11'),(231,1,'2021-10-13','14:02:53',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-13 14:02:53','2021-10-13 14:02:53'),(232,1,'2021-10-13','14:03:10',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-13 14:03:10','2021-10-13 14:03:10'),(233,1,'2021-10-13','15:31:21',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15','','','2021-10-13 15:31:21','2021-10-13 15:31:21'),(234,1,'2021-10-14','18:20:56',2,'','106.206.161.225','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-14 18:20:56','2021-10-14 18:20:56'),(235,1,'2021-10-16','09:33:13',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-16 09:33:13','2021-10-16 09:33:13'),(236,1,'2021-10-16','09:47:40',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-16 09:47:40','2021-10-16 09:47:40'),(237,1,'2021-10-21','17:50:02',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36','','','2021-10-21 17:50:02','2021-10-21 17:50:02'),(238,1,'2021-10-26','23:09:38',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-26 23:09:38','2021-10-26 23:09:38'),(239,1,'2021-10-27','19:27:27',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-27 19:27:27','2021-10-27 19:27:27'),(240,1,'2021-10-27','22:42:07',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-27 22:42:07','2021-10-27 22:42:07'),(241,1,'2021-10-29','14:27:32',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0','','','2021-10-29 14:27:32','2021-10-29 14:27:32'),(242,1,'2021-11-02','10:59:07',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36','','','2021-11-02 10:59:07','2021-11-02 10:59:07'),(243,1,'2021-11-11','12:20:45',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-11 12:20:45','2021-11-11 12:20:45'),(244,1,'2021-11-11','14:26:38',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-11 14:26:38','2021-11-11 14:26:38'),(245,1,'2021-11-13','09:40:43',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-13 09:40:43','2021-11-13 09:40:43'),(246,1,'2021-11-13','12:04:43',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-13 12:04:43','2021-11-13 12:04:43'),(247,1,'2021-11-13','16:32:46',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-13 16:32:46','2021-11-13 16:32:46'),(248,1,'2021-11-13','16:37:55',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-13 16:37:55','2021-11-13 16:37:55'),(249,1,'2021-11-15','09:40:13',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-15 09:40:13','2021-11-15 09:40:13'),(250,1,'2021-11-15','10:59:09',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-11-15 10:59:09','2021-11-15 10:59:09'),(251,1,'2021-11-15','12:07:55',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-11-15 12:07:55','2021-11-15 12:07:55'),(252,1,'2021-11-15','14:25:03',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-15 14:25:03','2021-11-15 14:25:03'),(253,1,'2021-11-15','15:51:08',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-15 15:51:08','2021-11-15 15:51:08'),(254,1,'2021-11-16','10:00:39',2,'','223.188.61.231','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-16 10:00:39','2021-11-16 10:00:39'),(255,1,'2021-11-16','11:46:00',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-16 11:46:00','2021-11-16 11:46:00'),(256,1,'2021-11-16','14:38:34',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36','','','2021-11-16 14:38:34','2021-11-16 14:38:34'),(257,1,'2021-11-17','12:31:08',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-11-17 12:31:08','2021-11-17 12:31:08'),(258,1,'2021-11-18','12:04:11',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-11-18 12:04:11','2021-11-18 12:04:11'),(259,1,'2021-11-19','10:27:50',2,'','171.79.177.87','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-11-19 10:27:50','2021-11-19 10:27:50'),(260,1,'2021-11-26','11:39:46',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-11-26 11:39:46','2021-11-26 11:39:46'),(261,1,'2021-11-26','13:15:10',2,'','157.38.87.255','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-11-26 13:15:10','2021-11-26 13:15:10'),(262,1,'2021-11-26','13:17:32',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-11-26 13:17:32','2021-11-26 13:17:32'),(263,1,'2021-11-26','14:10:04',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-11-26 14:10:04','2021-11-26 14:10:04'),(264,1,'2021-11-26','14:43:02',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-11-26 14:43:02','2021-11-26 14:43:02'),(265,1,'2021-11-27','12:30:10',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-11-27 12:30:10','2021-11-27 12:30:10'),(266,1,'2021-11-27','14:10:36',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-11-27 14:10:36','2021-11-27 14:10:36'),(267,1,'2021-11-27','19:15:12',2,'','106.206.145.231','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-11-27 19:15:12','2021-11-27 19:15:12'),(268,1,'2021-11-30','09:42:38',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-11-30 09:42:38','2021-11-30 09:42:38'),(269,1,'2021-11-30','10:23:11',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-11-30 10:23:11','2021-11-30 10:23:11'),(270,1,'2021-11-30','10:44:42',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-11-30 10:44:42','2021-11-30 10:44:42'),(271,1,'2021-11-30','14:51:13',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-11-30 14:51:13','2021-11-30 14:51:13'),(272,1,'2021-12-01','12:34:47',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-01 12:34:47','2021-12-01 12:34:47'),(273,1,'2021-12-02','09:41:06',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-12-02 09:41:06','2021-12-02 09:41:06'),(274,1,'2021-12-02','12:32:34',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-02 12:32:34','2021-12-02 12:32:34'),(275,1,'2021-12-03','09:52:16',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-12-03 09:52:16','2021-12-03 09:52:16'),(276,1,'2021-12-03','15:43:42',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-03 15:43:42','2021-12-03 15:43:42'),(277,1,'2021-12-03','17:56:59',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-12-03 17:56:59','2021-12-03 17:56:59'),(278,1,'2021-12-04','09:59:28',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-04 09:59:28','2021-12-04 09:59:28'),(279,1,'2021-12-04','15:16:18',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-12-04 15:16:18','2021-12-04 15:16:18'),(280,1,'2021-12-06','09:49:08',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-06 09:49:08','2021-12-06 09:49:08'),(281,1,'2021-12-06','15:14:34',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-06 15:14:34','2021-12-06 15:14:34'),(282,1,'2021-12-06','18:15:10',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-06 18:15:10','2021-12-06 18:15:10'),(283,1,'2021-12-07','10:19:55',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-07 10:19:55','2021-12-07 10:19:55'),(284,1,'2021-12-07','11:13:37',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36','','','2021-12-07 11:13:37','2021-12-07 11:13:37'),(285,1,'2021-12-08','09:59:03',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-08 09:59:03','2021-12-08 09:59:03'),(286,1,'2021-12-08','15:37:38',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-08 15:37:38','2021-12-08 15:37:38'),(287,4,'2021-12-08','15:39:48',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-08 15:39:48','2021-12-08 15:39:48'),(288,8,'2021-12-08','15:40:54',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-08 15:40:54','2021-12-08 15:40:54'),(289,8,'2021-12-08','15:41:37',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-08 15:41:37','2021-12-08 15:41:37'),(290,5,'2021-12-08','15:42:24',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-08 15:42:24','2021-12-08 15:42:24'),(291,1,'2021-12-08','16:01:09',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','','','2021-12-08 16:01:09','2021-12-08 16:01:09'),(292,1,'2021-12-09','10:14:48',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-09 10:14:48','2021-12-09 10:14:48'),(293,1,'2021-12-09','16:14:27',2,'','171.79.146.108','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-09 16:14:27','2021-12-09 16:14:27'),(294,1,'2021-12-09','16:23:17',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-09 16:23:17','2021-12-09 16:23:17'),(295,1,'2021-12-09','17:09:04',2,'','171.79.146.108','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-09 17:09:04','2021-12-09 17:09:04'),(296,2,'2021-12-14','10:49:49',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 10:49:49','2021-12-14 10:49:49'),(297,2,'2021-12-14','10:50:17',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 10:50:17','2021-12-14 10:50:17'),(298,1,'2021-12-14','10:54:03',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 10:54:03','2021-12-14 10:54:03'),(299,1,'2021-12-14','10:54:31',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 10:54:31','2021-12-14 10:54:31'),(300,1,'2021-12-14','10:55:44',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 10:55:44','2021-12-14 10:55:44'),(301,1,'2021-12-14','10:58:39',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 10:58:39','2021-12-14 10:58:39'),(302,1,'2021-12-14','10:59:59',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 10:59:59','2021-12-14 10:59:59'),(303,1,'2021-12-14','11:00:10',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 11:00:10','2021-12-14 11:00:10'),(304,1,'2021-12-14','11:00:48',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 11:00:48','2021-12-14 11:00:48'),(305,1,'2021-12-14','11:02:37',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 11:02:37','2021-12-14 11:02:37'),(306,1,'2021-12-14','11:03:30',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 11:03:30','2021-12-14 11:03:30'),(307,1,'2021-12-14','11:28:41',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 11:28:41','2021-12-14 11:28:41'),(308,1,'2021-12-14','15:13:04',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 15:13:04','2021-12-14 15:13:04'),(309,1,'2021-12-14','15:44:03',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36','','','2021-12-14 15:44:03','2021-12-14 15:44:03'),(310,1,'2021-12-15','11:54:17',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-12-15 11:54:17','2021-12-15 11:54:17'),(311,1,'2021-12-22','17:32:15',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-12-22 17:32:15','2021-12-22 17:32:15'),(312,1,'2021-12-23','10:50:02',2,'','115.242.250.142','Web','','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/94.0','','','2021-12-23 10:50:02','2021-12-23 10:50:02'),(313,1,'2022-01-27','16:55:58',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-01-27 16:55:58','2022-01-27 16:55:58'),(314,1,'2022-01-28','10:35:48',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-01-28 10:35:48','2022-01-28 10:35:48'),(315,1,'2022-01-28','10:52:17',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','','','2022-01-28 10:52:17','2022-01-28 10:52:17'),(316,1,'2022-01-28','14:17:32',1,'106962f2168ebf78','79.86.216.239','App','','V 1.5','moto g(6) play','motorola','SDK version :28 ,Phone Version :9','2022-01-28 14:17:32','2022-01-28 14:17:32'),(317,1,'2022-01-28','14:17:39',1,'106962f2168ebf78','79.86.216.239','App','','V 1.5','moto g(6) play','motorola','SDK version :28 ,Phone Version :9','2022-01-28 14:17:39','2022-01-28 14:17:39'),(318,1,'2022-01-29','09:45:56',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','','','2022-01-29 09:45:56','2022-01-29 09:45:56'),(319,1,'2022-01-31','09:36:39',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-01-31 09:36:39','2022-01-31 09:36:39'),(320,1,'2022-01-31','10:12:32',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','','','2022-01-31 10:12:32','2022-01-31 10:12:32'),(321,1,'2022-01-31','14:32:01',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-01-31 14:32:01','2022-01-31 14:32:01'),(322,1,'2022-02-12','10:25:14',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-02-12 10:25:14','2022-02-12 10:25:14'),(323,1,'2022-02-12','12:47:10',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-02-12 12:47:10','2022-02-12 12:47:10'),(324,1,'2022-02-12','16:19:37',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-02-12 16:19:37','2022-02-12 16:19:37'),(325,1,'2022-02-12','18:29:27',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-02-12 18:29:27','2022-02-12 18:29:27'),(326,1,'2022-02-14','09:55:49',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-02-14 09:55:49','2022-02-14 09:55:49'),(327,1,'2022-03-02','10:41:48',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0','','','2022-03-02 10:41:48','2022-03-02 10:41:48'),(328,1,'2022-03-25','16:46:56',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:97.0) Gecko/20100101 Firefox/97.0','','','2022-03-25 16:46:56','2022-03-25 16:46:56'),(329,1,'2022-03-29','09:43:16',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:98.0) Gecko/20100101 Firefox/98.0','','','2022-03-29 09:43:16','2022-03-29 09:43:16'),(330,1,'2022-03-29','18:39:34',1,'9242560e073724a6','249.213.19.183','App','','V 1.5','sdk_gphone_x86_arm','Google','SDK version :30 ,Phone Version :11','2022-03-29 18:39:34','2022-03-29 18:39:34'),(331,1,'2022-03-29','18:43:41',1,'9242560e073724a6','249.213.19.183','App','','V 1.5','sdk_gphone_x86_arm','Google','SDK version :30 ,Phone Version :11','2022-03-29 18:42:05','2022-03-29 18:43:41'),(332,1,'2022-03-30','10:05:49',2,'','115.242.250.142','Web','','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:98.0) Gecko/20100101 Firefox/98.0','','','2022-03-30 10:05:49','2022-03-30 10:05:49');
/*!40000 ALTER TABLE `login_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mail_verifies`
--

DROP TABLE IF EXISTS `mail_verifies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mail_verifies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mail_id` text NOT NULL,
  `otp` varchar(10) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mail_verifies`
--

LOCK TABLES `mail_verifies` WRITE;
/*!40000 ALTER TABLE `mail_verifies` DISABLE KEYS */;
INSERT INTO `mail_verifies` VALUES (1,'krtk.711@gmail.com','279806','2021-09-21 10:02:26','2021-09-21 11:56:33'),(2,'gunjan@gmail.com','837807','2021-09-21 12:14:07','2021-09-21 13:49:15'),(3,'gunjan.bhatra@bthawk.com','794672','2021-09-21 12:30:30','2021-09-21 12:43:11'),(4,'agarwal.kara','353953','2021-09-21 13:39:09','2021-09-21 13:39:09'),(5,'agarwal.karag@gmail.com','317208','2021-09-21 13:39:15','2021-09-21 13:39:15'),(6,'gunjanbhatra@bthawk.com','533819','2021-09-21 15:24:54','2021-09-21 15:24:54'),(7,'krtk.71@gmail.com','612407','2021-09-21 15:30:07','2021-09-21 15:30:07'),(8,'vishnu.chouhary@bthawk.com','743190','2021-11-30 16:29:28','2021-11-30 16:29:28'),(9,'vishnu.choudhary@bthawk.com','172249','2021-11-30 16:36:42','2021-11-30 16:40:50');
/*!40000 ALTER TABLE `mail_verifies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(255) NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `migrations`
--

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2019_08_19_000000_create_failed_jobs_table',1),(3,'2021_04_14_120053_create_flights_table',1),(4,'2021_04_14_120805_create_permissions_table',2),(5,'2021_04_14_120835_create_roles_table',2);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `model_has_permissions`
--

DROP TABLE IF EXISTS `model_has_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `model_has_permissions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `model_id` bigint(20) unsigned NOT NULL,
  `model_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=176 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `model_has_permissions`
--

LOCK TABLES `model_has_permissions` WRITE;
/*!40000 ALTER TABLE `model_has_permissions` DISABLE KEYS */;
INSERT INTO `model_has_permissions` VALUES (34,40,'App\\User',2),(35,40,'App\\User',4),(36,40,'App\\User',6),(37,40,'App\\User',7),(38,40,'App\\User',9),(39,40,'App\\User',10),(40,40,'App\\User',11),(41,40,'App\\User',13),(42,40,'App\\User',3),(104,4,'App\\User',6),(105,4,'App\\User',8),(106,4,'App\\User',12),(107,4,'App\\User',11),(108,4,'App\\User',14),(136,41,'App\\User',1),(137,41,'App\\User',2),(138,41,'App\\User',4),(139,41,'App\\User',5),(140,41,'App\\User',6),(141,41,'App\\User',7),(142,41,'App\\User',8),(143,41,'App\\User',9),(144,41,'App\\User',10),(145,41,'App\\User',12),(146,41,'App\\User',11),(147,41,'App\\User',13),(148,41,'App\\User',3),(149,41,'App\\User',17),(150,41,'App\\User',14),(163,2,'App\\User',1),(164,2,'App\\User',2),(165,2,'App\\User',4),(166,2,'App\\User',5),(167,2,'App\\User',7),(168,2,'App\\User',8),(169,2,'App\\User',10),(170,2,'App\\User',12),(171,2,'App\\User',11),(172,2,'App\\User',13),(173,2,'App\\User',3),(174,2,'App\\User',17),(175,2,'App\\User',14);
/*!40000 ALTER TABLE `model_has_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `model_has_roles`
--

DROP TABLE IF EXISTS `model_has_roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `model_has_roles` (
  `model_id` bigint(20) unsigned NOT NULL,
  `model_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `role_id` bigint(20) unsigned NOT NULL,
  UNIQUE KEY `model_id` (`model_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `model_has_roles`
--

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

--
-- Table structure for table `notice_periods`
--

DROP TABLE IF EXISTS `notice_periods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notice_periods` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `res_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `notice_sdate` date NOT NULL,
  `notice_edate` date NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notice_periods`
--

LOCK TABLES `notice_periods` WRITE;
/*!40000 ALTER TABLE `notice_periods` DISABLE KEYS */;
INSERT INTO `notice_periods` VALUES (1,3,1,'2021-07-23','2021-08-07',1,'2021-07-23 13:15:40','2021-07-26 12:27:24'),(2,5,1,'2021-06-23','2021-07-22',1,'2021-07-23 13:15:57','2021-07-23 13:17:39'),(3,15,1,'2021-07-23','2021-08-22',1,'2021-07-23 13:16:11','2021-07-23 13:16:11'),(4,22,1,'2021-07-23','2021-08-22',1,'2021-07-23 13:16:28','2021-07-23 13:16:28'),(5,23,1,'2021-06-23','2021-07-22',1,'2021-07-23 13:17:43','2021-07-23 13:17:56'),(6,47,1,'2021-07-24','2021-09-12',1,'2021-07-24 15:53:02','2021-07-24 15:53:02'),(7,48,1,'2021-07-24','2021-08-28',1,'2021-07-24 15:57:10','2021-07-24 15:57:24'),(8,203,1,'2022-01-29','2022-02-03',1,'2022-01-29 10:01:20','2022-01-29 10:01:20');
/*!40000 ALTER TABLE `notice_periods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `offices`
--

DROP TABLE IF EXISTS `offices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `offices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `office_name` text NOT NULL,
  `office_phone` varchar(15) NOT NULL,
  `office_mail` varchar(100) NOT NULL,
  `office_address` text NOT NULL,
  `sequence` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `offices`
--

LOCK TABLES `offices` WRITE;
/*!40000 ALTER TABLE `offices` DISABLE KEYS */;
INSERT INTO `offices` VALUES (1,'Zucol - Gurugram','7340040171','sales@btroomer.com','519, 5th Floor, JMD Megapolis IT Park, Sohna Road, Gurugram, Haryana',1,'0000-00-00 00:00:00','2021-07-28 14:24:09'),(2,'Zucol - Kolkata','7340040171','sales@btroomer.com','18th floor, PS Srijan Corporate Park, GP Block, Sector V, Bidhannagar, Kolkata, West Bengal 700091',6,'0000-00-00 00:00:00','2021-07-28 14:24:18'),(3,'Zucol - Pune','7340040171','sales@btroomer.com','1st Floor, Panchashil Park, Seasons Road, Aundh, Pune, Maharashtra 411007',5,'0000-00-00 00:00:00','2021-07-28 14:24:17'),(4,'Zucol - Indore','7340040171','sales@btroomer.com','501, 507, SAVITRI EMPIRE OM GURUDEV PLAZA, Gravity Mall, Ware House Rd, Mechanic Nagar, Badi Bhamori, Indore, Madhya Pradesh 452011',4,'0000-00-00 00:00:00','2021-07-28 14:24:14'),(5,'Zucol - Jaipur','7340040171','sales@btroomer.com','201, Mangalam Signature Tower, Behind Apex Bank, Tonk Road, Lalkothi, Jaipur, Rajasthan 302015',2,'0000-00-00 00:00:00','2021-07-28 14:24:12'),(6,'Zucol - Jaipur','7340040171','sales@btroomer.com','1st floor, Ganga Heights, Gandhi Nagar Mode, Tonk Road, Jaipur, Rajasthan 302015',3,'0000-00-00 00:00:00','2021-07-28 14:24:21');
/*!40000 ALTER TABLE `offices` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payment_refunds`
--

DROP TABLE IF EXISTS `payment_refunds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_refunds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `res_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `refund_amount` varchar(100) NOT NULL,
  `remark` text NOT NULL,
  `relase_remark` text NOT NULL,
  `refund_date` date NOT NULL,
  `actual_amount` varchar(100) NOT NULL,
  `other_charges` int(11) NOT NULL DEFAULT 0,
  `refund_unique_id` varchar(100) NOT NULL,
  `paymode` varchar(50) NOT NULL,
  `transaction_id` varchar(200) NOT NULL,
  `discount` int(11) NOT NULL,
  `gst` int(11) NOT NULL,
  `security_amount` int(11) NOT NULL,
  `refund_receipt` varchar(20) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payment_refunds`
--

LOCK TABLES `payment_refunds` WRITE;
/*!40000 ALTER TABLE `payment_refunds` DISABLE KEYS */;
INSERT INTO `payment_refunds` VALUES (1,13,1,'400','','','2021-06-02','400',0,'1060b71cde7be99','Cash','',0,0,100,'REF-1',1,'2021-06-02 11:23:34','2021-06-02 11:23:34'),(2,17,1,'2000','','','2021-07-19','5000',0,'1060f5769198277','Cash','',3000,0,5000,'REF-2',1,'2021-07-19 18:26:49','2021-07-19 18:26:49'),(3,12,1,'2000','','','2021-07-19','2000',0,'1060f577bd219a3','Cash','',0,0,2000,'REF-3',1,'2021-07-19 18:31:49','2021-07-19 18:31:49'),(4,15,1,'500','','','2021-07-23','500.0',0,'1060faaa6a91983','Cash','',0,0,0,'REF-4',1,'2021-07-23 17:09:22','2021-07-23 17:09:22'),(5,52,1,'1000','','','2021-07-27','1000',0,'1060ff8b79415ac','Cash','',0,0,1000,'REF-5',1,'2021-07-27 09:58:41','2021-07-27 09:58:41'),(6,51,1,'1000','','','2021-07-27','1000',0,'1060ff8b7d5c22d','Cash','',0,0,1000,'REF-6',1,'2021-07-27 09:58:45','2021-07-27 09:58:45'),(7,50,1,'500','','','2021-07-27','500',0,'1060ff8b8157b04','Cash','',0,0,0,'REF-7',1,'2021-07-27 09:58:49','2021-07-27 09:58:49'),(8,69,1,'1000','','','2021-08-03','2000',0,'1061093942ec56a','Cash','',0,0,0,'REF-8',1,'2021-08-03 18:10:34','2021-08-03 18:10:34'),(9,74,1,'200','','','2021-08-04','200',0,'10610a8733bd8d1','Cash','',0,0,100,'REF-9',1,'2021-08-04 17:55:23','2021-08-04 17:55:23'),(10,83,1,'1000','Refund Testing','Refunded - ₹ 1000 On the Total Refund of (₹ 1000)','2021-08-07','1000',0,'10610e34efad3e8','Google Pay','fsdgfdg5554354',0,0,1000,'REF-10',1,'2021-08-07 12:53:27','2021-08-07 12:53:27'),(11,81,1,'1900','','Refunded - ₹ 1900 and Other Charges (₹ 200) On the Total Refund of (₹ 2200)','2021-08-07','2200',200,'10610e35427cc21','Cash','',100,0,1000,'REF-11',1,'2021-08-07 12:54:50','2021-08-07 12:54:50'),(12,84,1,'200','','Refunded - ₹ 200 On the Total Refund of (₹ 200)','2021-08-07','200',0,'10610e44c8ab446','Cash','',0,0,0,'REF-12',1,'2021-08-07 14:01:04','2021-08-07 14:01:04'),(13,64,1,'47','','Refunded - ₹ 47 and Other Charges (₹ 10) On the Total Refund of (₹ 57)','2021-08-07','57',10,'10610e450752716','Cash','',0,0,60,'REF-13',1,'2021-08-07 14:02:07','2021-08-07 14:02:07'),(14,79,1,'1200','','Refunded - ₹ 1200 On the Total Refund of (₹ 1200)','2021-08-07','1200',0,'10610e6589df839','Cash','',0,0,1200,'REF-14',1,'2021-08-07 16:20:49','2021-08-07 16:20:49'),(15,58,1,'1000','','Refunded  ₹ 1000 On the Total Refund of (₹ 1000)','2021-08-07','1000',0,'10610e65eb8514d','Cash','',0,0,1000,'REF-15',1,'2021-08-07 16:22:27','2021-08-07 16:22:27'),(16,55,1,'700','','Refunded  ₹ 700 and By Adjusting Other Charges (₹ 200) On the Total Refund of (₹ 1000)','2021-08-07','1000',200,'10610e663ab18eb','Cash','',100,0,1000,'REF-16',1,'2021-08-07 16:23:46','2021-08-07 16:23:46'),(17,26,1,'500','','Refunded  ₹ 500 On the Total Refund of (₹ 500)','2021-08-07','500',0,'10610e678825043','Cash','',0,0,0,'REF-17',1,'2021-08-07 16:29:20','2021-08-07 16:29:20'),(18,31,1,'320','','Refunded  ₹ 320 and By Adjusting Other Charges (₹ 1000) On the Total Refund of (₹ 1620)','2021-08-07','1620',1000,'10610e786961195','Cash','',300,0,5000,'REF-18',1,'2021-08-07 17:41:21','2021-08-07 17:41:21'),(19,33,1,'3500','','Refunded  ₹ 3500 and By Adjusting Other Charges (₹ 2000) On the Total Refund of (₹ 5500)','2021-08-09','5500',2000,'106110c9cb5c14e','Cash','',0,0,5000,'REF-19',1,'2021-08-09 11:53:07','2021-08-09 11:53:07'),(20,86,1,'1300','','Refunded  ₹ 1300 On the Total Refund of (₹ 1300)','2021-08-09','1300',0,'106110d53ee1acc','Cash','',0,0,1300,'REF-20',1,'2021-08-09 12:41:58','2021-08-09 12:41:58'),(21,87,1,'1000','','Refunded  ₹ 1000 and By Adjusting Other Charges (₹ 500) On the Total Refund of (₹ 1500)','2021-08-09','1500',500,'106110d5d174fa5','Cash','',0,0,1500,'REF-21',1,'2021-08-09 12:44:25','2021-08-09 12:44:25'),(22,93,1,'3000','','Refunded  ₹ 3000 On the Total Refund of (₹ 3000)','2021-08-09','3000',0,'106110e0aa1fbb8','Cash','',0,0,5000,'REF-22',1,'2021-08-09 13:30:42','2021-08-09 13:30:42'),(23,140,1,'2000','','Refunded  ₹ 2000 On the Total Refund of (₹ 2000)','2021-09-17','2000',0,'1061443baa62e50','Cash','',0,0,2000,'REF-23',1,'2021-09-17 12:24:34','2021-09-17 12:24:34'),(24,137,1,'8000','','Refunded  ₹ 8000 On the Total Refund of (₹ 8000)','2021-09-17','8000',0,'1061443bb183ec1','Cash','',0,0,8000,'REF-24',1,'2021-09-17 12:24:41','2021-09-17 12:24:41'),(25,134,1,'1000','','Refunded  ₹ 1000 and By Adjusting Other Charges (₹ 2000) On the Total Refund of (₹ 3000)','2021-09-17','3000',2000,'1061445bbd8128b','Cash','',0,0,3000,'REF-25',1,'2021-09-17 14:41:25','2021-09-17 14:41:25'),(26,142,1,'2000','','Refunded  ₹ 2000 On the Total Refund of (₹ 2000)','2021-09-12','2000',0,'10614462272c88e','Cash','',0,0,2000,'REF-26',1,'2021-09-17 15:08:47','2021-09-17 15:08:47'),(27,20,1,'4400','','Refunded  ₹ 4400 On the Total Refund of (₹ 4400)','2021-09-01','4400',0,'106144670a9d77f','Cash','',0,0,6000,'REF-27',1,'2021-09-17 15:29:38','2021-09-17 15:29:38'),(28,5,1,'1400','','Refunded  ₹ 1400 On the Total Refund of (₹ 1400)','2021-09-01','1400',0,'106144671934c40','Cash','',0,0,400,'REF-28',1,'2021-09-17 15:29:53','2021-09-17 15:29:53'),(29,152,1,'10','','Refunded  ₹ 10 On the Total Refund of (₹ 10)','2021-10-16','10',0,'10616a53d0bab65','Cash','',0,0,10,'REF-29',1,'2021-10-16 09:53:44','2021-10-16 09:53:44'),(30,150,1,'900','testing','Refunded  ₹ 900 and By Adjusting Other Charges (₹ 100) On the Total Refund of (₹ 1000)','2021-10-14','1000',100,'10616a6a48c765e','Cash','',0,0,1000,'REF-30',1,'2021-10-16 11:29:36','2021-10-16 11:29:36'),(31,192,1,'2000','','Refunded  ₹ 2000 On the Total Refund of (₹ 2000)','2021-12-07','2000',0,'1061af3fa8431fd','Cash','',0,0,2000,'REF-31',1,'2021-12-07 16:34:08','2021-12-07 16:34:08');
/*!40000 ALTER TABLE `payment_refunds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `payments`
--

DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL DEFAULT 0,
  `bed_id` int(11) NOT NULL DEFAULT 0,
  `flat_id` int(11) NOT NULL DEFAULT 0,
  `receipt_no` varchar(100) NOT NULL,
  `res_id` int(11) NOT NULL,
  `transaction_date` date NOT NULL,
  `due_date` date DEFAULT NULL,
  `receipt_date` date DEFAULT NULL,
  `amount` varchar(100) NOT NULL,
  `service` int(11) NOT NULL DEFAULT 0,
  `gst` varchar(100) NOT NULL,
  `electricity_charges` varchar(50) NOT NULL DEFAULT '0',
  `gas_charges` varchar(50) NOT NULL DEFAULT '0',
  `water_charges` varchar(50) NOT NULL DEFAULT '0',
  `other_charges` int(11) NOT NULL DEFAULT 0,
  `discount_amt` varchar(100) NOT NULL,
  `due_amount` varchar(100) NOT NULL,
  `advance_amount` varchar(100) NOT NULL DEFAULT '0',
  `net_amount` varchar(100) NOT NULL,
  `payment_days` int(11) NOT NULL DEFAULT 0,
  `per_day_paymentsum` int(222) NOT NULL DEFAULT 0,
  `paymode` varchar(100) NOT NULL,
  `paymode_trans_id` varchar(191) NOT NULL,
  `unique_id` varchar(200) NOT NULL,
  `remarks` varchar(200) NOT NULL,
  `relase_remark` text NOT NULL DEFAULT '',
  `security_amount` int(11) NOT NULL DEFAULT 0,
  `collection_agent` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(4) NOT NULL COMMENT '1=active,2=inactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=378 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments`
--

LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
INSERT INTO `payments` VALUES (1,1,1,1,0,'Rec-6',3,'2021-05-05','2021-06-05','2021-05-09','3880.0',0,'0.00','0','0','0',0,'0','0','0','3880',0,0,'Cash','','1060923863d5922','','',0,0,1,1,'2021-05-05 11:47:07','2021-05-05 11:47:07'),(2,1,1,1,0,'Rec-7',3,'2021-05-05','2021-06-05','2021-05-05','3800.0',0,'0.00','0','0','0',0,'0','80','0','3800',0,0,'Cash','','106092397574759','','',0,0,1,1,'2021-05-05 11:51:41','2021-05-05 11:51:41'),(3,1,1,1,0,'Rec-8',3,'2021-05-05','2021-06-05','2021-05-05','3960.0',0,'0.00','0','0','0',0,'0','0','0','3960',0,0,'Cash','','1060923c7b8c964','','',0,0,1,1,'2021-05-05 12:04:35','2021-05-05 12:04:35'),(4,1,1,1,0,'Rec-9',3,'2021-05-05','2021-06-05','2021-05-05','4000.0',0,'0.00','0','0','0',0,'0','0','120','4000',0,0,'Cash','','1060923c8d20747','','',0,0,1,1,'2021-05-05 12:04:53','2021-05-05 12:04:53'),(5,1,1,1,0,'Rec-10',3,'2021-05-05','2021-06-05','2021-05-05','3760.0',0,'0.00','0','0','0',0,'0','0','0','3760',0,0,'Cash','','1060923c9be6bd0','','',0,0,1,1,'2021-05-05 12:05:07','2021-05-05 12:05:07'),(6,1,1,1,0,'Rec-11',3,'2021-05-05','2021-06-05','2021-05-05','3880.0',0,'184.76','0','0','0',0,'0','0','0','4064.76',0,0,'Cash','','1060923ca8b3c8f','','',0,0,1,1,'2021-05-05 12:05:20','2021-05-05 12:05:20'),(7,1,1,1,0,'Rec-12',3,'2021-05-05','2021-06-05','2021-05-05','3800.0',0,'0.00','0','0','0',0,'80','0','0','3800',0,0,'Cash','','1060924c7777697','','',0,0,1,1,'2021-05-05 13:12:47','2021-05-05 13:12:47'),(8,1,1,1,0,'Rec-13',3,'2021-05-05','2021-06-05','2021-05-05','5000',0,'0','0','0','0',0,'0','0','1120','5000',0,0,'Cash','','10609261e6812e6','','',0,0,1,1,'2021-05-05 14:44:14','2021-05-05 14:44:14'),(9,1,4,7,0,'Rec-14',12,'2021-05-05','2021-06-05','2021-05-05','5634.0',0,'0.00','0','0','0',0,'0','0','0','5634',0,0,'Cash','','106092626e2bbf3','','',0,0,1,1,'2021-05-05 14:46:30','2021-05-05 14:46:30'),(10,1,1,1,0,'Rec-15',3,'2021-05-05','2021-06-05','2021-05-05','2760.0',0,'0.00','0','0','0',0,'0','0','0','2760',0,0,'Cash','','1060926342eb09d','','',0,0,1,1,'2021-05-05 14:50:02','2021-05-05 14:50:02'),(11,1,2,13,0,'Rec-16',13,'2021-05-05','2021-06-05','2021-05-05','5500.0',0,'0.00','0','0','0',0,'0','134','0','5500',0,0,'Cash','','10609265aea6711','','',0,0,1,1,'2021-05-05 15:00:22','2021-05-05 15:00:22'),(12,1,1,1,0,'Rec-17',3,'2021-05-05','2021-06-05','2021-05-05','3980.0',0,'0.00','0','0','0',0,'0','0','0','3980',0,0,'Google Pay','','1060927fa683473','','',0,0,1,1,'2021-05-05 16:51:10','2021-05-05 16:51:10'),(13,1,1,1,0,'Rec-18',3,'2021-05-05','2021-06-05','2021-05-05','3880.0',0,'0.00','0','0','0',0,'0','0','0','3880',0,0,'Cash','','1060927fbfc8782','','',0,0,1,1,'2021-05-05 16:51:35','2021-05-05 16:51:35'),(14,1,1,3,0,'Rec-19',6,'2021-05-06','2021-06-06','2021-05-06','6000.0',0,'0.00','0','0','0',0,'0','800','0','6000',0,0,'Google Pay','','1060938ca335182','','',0,0,1,1,'2021-05-06 11:58:51','2021-05-06 11:58:51'),(15,1,1,3,0,'Rec-20',6,'2021-05-10','2021-06-10','2021-05-10','8000.0',0,'0.00','0','0','0',0,'0','0','200','8000',0,0,'Cash','','106098cb09b2bd0','','',0,0,1,1,'2021-05-10 11:26:25','2021-05-10 11:26:25'),(16,1,4,9,0,'Rec-21',5,'2021-05-11','2021-06-11','2021-05-11','5000.0',0,'0.00','0','0','0',0,'0','0','0','5000',0,0,'Cash','','10609a7d7838b43','','',0,0,1,1,'2021-05-11 18:20:00','2021-05-11 18:20:00'),(18,1,1,2,0,'Rec-23',16,'2021-05-12','2021-06-12','2021-05-12','2000',0,'0','0','0','0',0,'0','400','0','2000',0,0,'Phonepe','','10609ba5bf463bc','','',0,0,1,1,'2021-05-12 15:24:07','2021-05-12 15:24:07'),(19,2,7,12,0,'Rec-2',4,'2021-05-12','2021-06-12','2021-05-12','2535.0',0,'0.00','0','0','0',0,'0','0','0','2535',0,0,'Cash','','10609be8d4e9204','','',0,0,1,1,'2021-05-12 20:10:20','2021-05-12 20:10:20'),(20,2,7,12,0,'Rec-3',4,'2021-05-12','2021-06-12','2021-05-12','2535.0',0,'0.00','0','0','0',0,'0','0','0','2535',0,0,'Cash','','10609beaad13838','','',0,0,1,1,'2021-05-12 20:18:13','2021-05-12 20:18:13'),(21,1,5,16,0,'Rec-24',14,'2021-05-14','2021-06-14','2021-05-14','5500.0',0,'0.00','0','0','0',0,'0','0','0','5500',0,0,'Cash','','10609e4dac8efdd','','',0,0,1,1,'2021-05-14 15:45:08','2021-05-14 15:45:08'),(22,1,4,7,0,'Rec-25',12,'2021-05-21','2021-06-21','2021-05-21','5634.0',0,'0.00','0','0','0',0,'0','0','0','5634',0,0,'Cash','','1060a786a9099c4','','',0,0,1,1,'2021-05-21 15:38:41','2021-05-21 15:38:41'),(23,1,4,7,0,'Rec-26',12,'2021-05-21','2021-06-21','2021-05-21','5634.0',0,'0.00','0','0','0',0,'0','0','0','5634',0,0,'Cash','','1060a79eb544668','','',0,0,1,1,'2021-05-21 17:21:17','2021-05-21 17:21:17'),(24,2,7,12,0,'Rec-4',4,'2021-05-22','2021-06-22','2021-05-22','2535.0',0,'0.00','0','0','0',0,'0','0','0','2535',0,0,'Cash','','1060a8ddf5465f8','','',0,0,1,1,'2021-05-22 16:03:25','2021-05-22 16:03:25'),(25,2,7,12,0,'Rec-5',4,'2021-05-22','2021-06-22','2021-05-22','2535.0',0,'0.00','0','0','0',0,'0','0','0','2535',0,0,'Cash','','1060a8ea5fbca75','','',0,0,1,1,'2021-05-22 16:56:23','2021-05-22 16:56:23'),(26,2,7,12,0,'Rec-6',4,'2021-05-22','2021-06-22','2021-05-22','3000.0',0,'0.00','0','0','0',0,'0','0','465','3000',0,0,'Cash','','1060a8ea9500f87','','',0,0,1,1,'2021-05-22 16:57:16','2021-05-22 16:57:16'),(27,2,7,12,0,'Rec-7',4,'2021-05-22','2021-06-22','2021-05-22','2535.0',0,'0.00','0','0','0',0,'0','0','465','2535',0,0,'Cash','','1060a8eab8ca075','','',0,0,1,1,'2021-05-22 16:57:52','2021-05-22 16:57:52'),(28,1,1,3,0,'Rec-27',6,'2021-05-22','2021-06-22','2021-05-22','6800.0',0,'0.00','0','0','0',0,'0','0','0','6800',0,0,'Cash','','1060a8fcb54b0cb','','',0,0,1,1,'2021-05-22 18:14:37','2021-05-22 18:14:37'),(29,1,1,1,0,'Rec-28',3,'2021-05-22','2021-06-22','2021-05-22','3881.0',0,'0.00','0','0','0',0,'0','0','0','3881',0,0,'Cash','','1060aabb967bf18','','',0,0,1,1,'2021-05-24 02:01:18','2021-05-24 02:01:18'),(30,1,4,8,0,'Rec-29',17,'2021-05-31','2021-06-30','2021-05-31','4000.0',0,'0.00','0','0','0',0,'0','700','0','4000',0,0,'Cash','','1060b48bd245599','test','',0,0,1,1,'2021-05-31 12:40:10','2021-05-31 12:40:10'),(31,1,4,8,0,'Rec-30',17,'2021-05-31','2021-06-30','2021-05-31','4700.0',0,'0.00','0','0','0',0,'0','700','0','4700',0,0,'Cash','','1060b48d5a69aad','tezt','',0,0,1,1,'2021-05-31 12:46:42','2021-05-31 12:46:42'),(32,1,4,9,0,'Rec-31',5,'2021-05-31','2021-06-30','2021-05-31','5500.0',0,'0.00','0','0','0',0,'0','0','500','5500',0,0,'Cash','','1060b48ddd0729b','','',0,0,1,1,'2021-05-31 12:48:53','2021-05-31 12:48:53'),(33,1,2,13,0,'Rec-32',13,'2021-06-02','2021-07-02','2021-06-02','34',0,'0','0','0','0',0,'0','0','0','34',0,0,'Cash','','1060b7177b9541f','FnF done','',0,0,1,1,'2021-06-02 11:00:35','2021-06-02 11:00:35'),(34,1,2,5,0,'Rec-33',15,'2021-06-04','2021-07-04','2021-06-04','5500.0',0,'0.00','0','0','0',0,'0','0','500','5500',0,0,'Cash','','1060ba095d330a0','','',0,0,1,1,'2021-06-04 16:37:09','2021-06-04 16:37:09'),(35,1,4,7,0,'Rec-34',12,'2021-06-19','2021-07-19','2021-06-19','4000',0,'0','0','0','0',0,'0','1634','0','4000',0,0,'Paytm','','1060cdb872b266a','','',0,0,1,1,'2021-06-19 14:57:14','2021-06-19 14:57:14'),(36,1,1,1,0,'Rec-35',3,'2021-07-02','2021-08-02','2021-07-02','3881.0',0,'0.00','0','0','0',0,'0','0','0','3881',0,0,'Cash','','1060de92b79cbdb','','',0,0,1,1,'2021-07-02 09:44:47','2021-07-02 09:44:47'),(37,1,1,1,0,'Rec-36',3,'2021-07-04','2021-08-04','2021-07-04','3881.0',0,'0.00','0','0','0',0,'0','0','0','3881',0,0,'Paytm','','1060e1ba0d196ff','','',0,0,1,1,'2021-07-04 19:09:25','2021-07-04 19:09:25'),(38,1,1,1,0,'Rec-37',3,'2021-07-07','2021-08-07','2021-07-07','3881.006',0,'0.00','0','0','0',0,'0','0','0.0063573535753676','3881.0063573536',0,0,'Paytm','','1060e5843e75d1a','','',0,0,1,1,'2021-07-07 16:08:54','2021-07-07 16:08:54'),(39,1,4,7,0,'Rec-38',12,'2021-07-15','2021-08-15','2021-07-15','7268.0',0,'0.00','0','0','0',0,'0','0','0','7268',0,0,'Cash','','1060f0168d9298b','','',0,0,1,1,'2021-07-15 16:35:49','2021-07-15 16:35:49'),(40,1,4,8,0,'Rec-39',17,'2021-07-19','2021-08-19','2021-07-19','5400',0,'0','0','0','0',0,'0','0','0','5400',0,0,'Cash','','1060f566f726556','','',0,0,1,1,'2021-07-19 17:20:15','2021-07-19 17:20:15'),(41,1,4,7,0,'Rec-40',12,'2021-07-19','2021-08-19','2021-07-19','5634',0,'0','0','0','0',0,'0','0','0','5634',0,0,'PhonePe','','1060f5672be9279','','',0,0,1,1,'2021-07-19 17:21:07','2021-07-19 17:21:07'),(42,2,7,10,0,'Rec-8',14,'2021-07-19','2021-08-19','2021-07-19','1000',0,'0','0','0','0',0,'0','1500','0','1000',0,0,'PhonePe','fghgwQWETSRYDFKG','1060f567bc0469a','testing','',0,0,1,1,'2021-07-19 17:23:32','2021-07-19 17:23:32'),(43,2,7,11,0,'Rec-9',18,'2021-07-19','2021-08-19','2021-07-19','1000',0,'0','0','0','0',0,'0','1600','0','1000',0,0,'Cash','','1060f56976bf15e','','',0,0,1,1,'2021-07-19 17:30:54','2021-07-19 17:30:54'),(44,1,4,6,0,'Rec-41',19,'2021-07-19','2021-08-19','2021-07-19','300',0,'0','0','0','0',0,'0','4705','0','300',0,0,'Cash','','1060f5717ff3705','','',0,0,1,1,'2021-07-19 18:05:11','2021-07-19 18:05:11'),(45,1,4,6,0,'Rec-42',19,'2021-07-19','2021-08-19','2021-07-19','4705',0,'0','0','0','0',0,'0','0','0','4705',0,0,'Cash','','1060f5720e14e4f','','',0,0,1,1,'2021-07-19 18:07:34','2021-07-19 18:07:34'),(46,1,4,7,0,'Rec-43',20,'2021-07-19','2021-08-19','2021-07-19','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1060f57a4084ac0','','',0,0,1,1,'2021-07-19 18:42:32','2021-07-19 18:42:32'),(47,1,6,18,0,'Rec-44',21,'2021-07-19','2021-08-19','2021-07-19','1000',0,'0','0','0','0',0,'0','2600','0','1000',0,0,'Cash','','1060f57b5ee4463','','',0,0,1,1,'2021-07-19 18:47:18','2021-07-19 18:47:18'),(48,1,4,6,0,'Rec-45',22,'2021-07-19','2021-08-19','2021-07-19','500',0,'0','0','0','0',0,'0','4505','0','500',0,0,'Cash','','1060f57cba4c925','','',0,0,1,1,'2021-07-19 18:53:06','2021-07-19 18:53:06'),(49,1,4,6,0,'Rec-46',22,'2021-07-20','2021-08-20','2021-07-20','4505',0,'0','0','0','0',0,'0','4500','0','4505',0,0,'Cash','','1060f62405653d3','','',0,0,1,1,'2021-07-20 06:46:53','2021-07-20 06:46:53'),(50,1,4,8,0,'Rec-47',23,'2021-07-24','2021-08-24','2021-07-24','4700.0',0,'0.00','0','0','0',0,'0','0','0','4700.00',0,0,'Cash','','1060fbcf2c24134','','',0,0,1,1,'2021-07-24 13:58:28','2021-07-24 13:58:28'),(51,1,2,4,0,'Rec-48',24,'2021-07-24','2021-08-24','2021-07-24','8000.0',880,'0.00','0','0','0',0,'80','0','0','10800.00',0,0,'Cash','','1060fbcf894ba44','Test team','',0,0,1,1,'2021-07-24 14:00:01','2021-07-24 14:00:01'),(52,1,2,4,0,'Rec-49',24,'2021-07-24','2021-08-24','2021-07-24','8000.0',880,'0.00','0','0','0',0,'80','0','2000','10800.00',0,0,'Cash','','1060fbd070e915c','','',0,0,1,1,'2021-07-24 14:03:52','2021-07-24 14:03:52'),(53,1,2,4,0,'Rec-50',24,'2021-07-24','2021-08-24','2021-07-24','5000.0',0,'0.00','0','0','0',0,'0','500','500','5500.00',0,0,'Cash','','1060fbd103975a5','','',0,0,1,1,'2021-07-24 14:06:19','2021-07-24 14:06:19'),(54,1,2,4,0,'Rec-51',24,'2021-07-24','2021-08-24','2021-07-24','8000.0',0,'0.00','0','0','0',0,'0','0','0','8000.00',0,0,'Cash','','1060fbd16c87a26','','',0,0,1,1,'2021-07-24 14:08:04','2021-07-24 14:08:04'),(55,1,1,2,0,'Rec-52',28,'2021-07-24','2021-08-24','2021-07-24','2000.0',0,'0.00','0','0','0',0,'0','400','0','2000.00',0,0,'Google Pay','','1060fbd195d5f3f','','',0,0,1,1,'2021-07-24 14:08:45','2021-07-24 14:08:45'),(56,1,1,2,0,'Rec-53',28,'2021-07-24','2021-08-24','2021-07-24','2800.0',0,'0.00','0','0','0',0,'0','0','0','2800.00',0,0,'Cash','','1060fbd39e6431f','','',0,0,1,1,'2021-07-24 14:17:26','2021-07-24 14:17:26'),(57,1,2,5,0,'Rec-54',42,'2021-07-24','2021-08-24','2021-07-24','5000.0',0,'0.00','0','0','0',0,'0','0','500','5500.00',0,0,'Paytm','','1060fbd3eeaf585','','',0,0,1,1,'2021-07-24 14:18:46','2021-07-24 14:18:46'),(58,1,4,9,0,'Rec-55',5,'2021-07-24','2021-08-24','2021-07-24','4500.0',0,'0.00','0','0','0',0,'0','0','500','5000.00',0,0,'Phonepe','','1060fbd7276f0ca','Test','',0,0,1,1,'2021-07-24 14:32:31','2021-07-24 14:32:31'),(59,1,4,9,0,'Rec-56',5,'2021-07-24','2021-08-24','2021-07-24','4300.0',50,'0.00','0','0','0',0,'022','100','100','4428.00',0,0,'Cash','','1060fbdad7b05e6','','',0,0,1,1,'2021-07-24 14:48:15','2021-07-24 14:48:15'),(60,1,4,9,0,'Rec-57',5,'2021-07-24','2021-08-24','2021-07-24','4500.0',117,'0.00','0','0','0',0,'30','387','113','4700.00',0,0,'Cash','','1060fbdb50f0c94','','',0,0,1,1,'2021-07-24 14:50:16','2021-07-24 14:50:16'),(61,1,25,27,0,'Rec-60',46,'2021-07-24','2021-08-24','2021-07-24','3000',150,'0','0','0','0',0,'0150','0','0','3200.00',0,0,'Cash','','1060fbe3fd3616d','','',0,0,1,1,'2021-07-24 15:27:17','2021-07-24 15:27:17'),(62,1,25,27,0,'Rec-61',47,'2021-07-24','2021-08-24','2021-07-24','3000',100,'0','0','0','0',0,'050','0','0','3250.00',0,0,'Cash','','1060fbe51331f99','','',0,0,1,1,'2021-07-24 15:31:55','2021-07-24 15:31:55'),(63,1,26,30,0,'Rec-62',48,'2021-07-24','2021-08-24','2021-07-24','6000',0,'0','0','0','0',0,'0','0','0','7000.00',0,0,'Cash','','1060fbe860a8ebe','','',0,0,1,1,'2021-07-24 15:46:00','2021-07-24 15:46:00'),(64,1,16,32,0,'Rec-63',49,'2021-07-24','2021-08-24','2021-07-24','1000',0,'0','0','0','0',0,'0','0','500','1500.00',0,0,'Cash','','1060fbf10d7aefc','','',0,0,1,1,'2021-07-24 16:23:01','2021-07-24 16:23:01'),(65,1,16,33,0,'Rec-64',50,'2021-07-24','2021-08-24','2021-07-24','1000',0,'0','0','0','0',0,'0','0','500','1500.00',0,0,'Cash','','1060fbf193ed019','','',0,0,1,1,'2021-07-24 16:25:15','2021-07-24 16:25:15'),(66,1,16,34,0,'Rec-65',25,'2021-07-24','2021-08-24','2021-07-24','1000',100,'0','0','0','0',0,'0','0','0','1550.00',0,0,'Cash','','1060fbfea42a475','','',0,0,1,1,'2021-07-24 17:21:00','2021-07-24 17:21:00'),(67,1,16,36,0,'Rec-66',26,'2021-07-24','2021-08-24','2021-07-24','1000',200,'0','0','0','0',0,'0','0','0','1700.00',0,0,'Cash','','1060fbff3d27241','','',0,0,1,1,'2021-07-24 17:23:33','2021-07-24 17:23:33'),(68,1,16,35,0,'Rec-67',38,'2021-07-24','2021-08-24','2021-07-24','1000',200,'0','0','0','0',0,'0','0','0','1700.00',0,0,'Cash','','1060fc02bb2c264','','',0,0,1,1,'2021-07-24 17:38:27','2021-07-24 17:38:27'),(69,1,16,31,0,'Rec-68',33,'2021-07-24','2021-08-24','2021-07-24','5000',300,'0','0','0','0',0,'0','0','0','5800.00',0,0,'Cash','','1060fc03699420c','','',0,0,1,1,'2021-07-24 17:41:21','2021-07-24 17:41:21'),(70,1,24,38,0,'Rec-69',32,'2021-07-24','2021-08-24','2021-07-24','3500',250,'0','0','0','0',0,'0','0','600','4300.00',0,0,'Cash','','1060fc057659a46','','',0,0,1,1,'2021-07-24 17:50:06','2021-07-24 17:50:06'),(71,1,24,37,0,'Rec-70',35,'2021-07-24','2021-08-24','2021-07-24','5000',0,'0','0','0','0',0,'0','1000','0','5000.00',0,0,'Cash','','1060fc05bb78bca','','',0,0,1,1,'2021-07-24 17:51:15','2021-07-24 17:51:15'),(72,1,4,7,0,'Rec-71',20,'2021-07-26','2021-08-26','2021-07-26','4500',100,'0','0','0','0',0,'20','0','1000','5580',0,0,'Cash','','1060fe7d86bb378','','',0,0,1,1,'2021-07-26 14:46:54','2021-07-26 14:46:54'),(73,1,4,7,0,'Rec-72',20,'2021-07-26','2021-08-26','2021-07-26','2000',200,'0','0','0','0',0,'10','1500','0','2190',0,0,'Cash','','1060fe7db95fddc','','',0,0,1,1,'2021-07-26 14:47:45','2021-07-26 14:47:45'),(74,1,4,9,0,'Rec-73',5,'2021-07-26','2021-08-26','2021-07-26','5274',200,'0','0','0','0',0,'900','0','10000','14574',0,0,'Cash','','1060fe8671e0baf','','',0,0,1,1,'2021-07-26 15:24:57','2021-07-26 15:24:57'),(75,1,24,44,0,'Rec-74',51,'2021-07-26','2021-08-26','2021-07-26','3500',0,'0','0','0','0',0,'0','0','2000','5600',0,0,'Cash','','1060fe988225d41','','',0,0,1,1,'2021-07-26 16:42:02','2021-07-26 16:42:02'),(76,1,24,41,0,'Rec-75',52,'2021-07-26','2021-08-26','2021-07-26','2000',0,'0','0','0','0',0,'0','3500','1000','12800',0,0,'Cash','','1060fe9958ba83f','','',0,0,1,1,'2021-07-26 16:45:36','2021-07-26 16:45:36'),(77,1,16,33,0,'Rec-80',55,'2021-07-27','2021-08-27','2021-07-27','1000',11111,'0','0','0','0',0,'0','0','1000','15333',0,0,'Cash','','1060ff8dbadbfd4','','',2222,0,1,1,'2021-07-27 10:08:18','2021-07-27 10:08:18'),(78,1,16,33,0,'Rec-81',55,'2021-07-27','2021-08-27','2021-07-27','1000',1000,'0','0','0','0',0,'100','0','1000','3900',0,0,'Cash','','1060ff929e34861','','',1000,0,1,1,'2021-07-27 10:29:10','2021-07-27 10:29:10'),(79,1,24,41,0,'Rec-82',56,'2021-07-29','2021-08-29','2021-07-29','6500',0,'0','0','0','0',0,'0','0','0','6500',0,0,'Cash','','106102313d2472c','','',0,0,1,1,'2021-07-29 10:10:29','2021-07-29 10:10:29'),(80,1,24,44,0,'Rec-83',58,'2021-07-29','2021-08-29','2021-07-29','3500',0,'0','0','0','0',0,'0','0','0','4378',0,0,'PhonePe','wfghjyjry3343','10610234dd85c75','','',1000,0,1,1,'2021-07-29 10:25:57','2021-07-29 10:25:57'),(81,2,28,46,0,'Rec-10',53,'2021-07-29','2021-08-29','2021-07-29','4500',0,'0','0','0','0',0,'100','0','2000','9400',0,0,'Cash','','10610237f2cb700','','',3000,0,1,1,'2021-07-29 10:39:06','2021-07-29 10:39:06'),(82,1,1,1,0,'Rec-84',3,'2021-07-29','2021-08-29','2021-07-29','3881',0,'0','0','0','0',0,'0','0','0','3881',0,0,'Cash','','10610293ef4aabc','','',0,0,1,1,'2021-07-29 17:11:35','2021-07-29 17:11:35'),(83,1,1,1,0,'Rec-85',3,'2021-07-29','2021-08-29','2021-07-29','3881',0,'0','0','0','0',0,'0','0','0','3881',0,0,'Cash','','10610293f1b5c0d','','',0,0,1,1,'2021-07-29 17:11:37','2021-07-29 17:11:37'),(84,1,4,7,0,'Rec-88',20,'2021-07-29','2021-08-29','2021-07-29','6000',0,'0','0','0','0',0,'0','0','0','6000',0,0,'Cash','','106102948c24663','','',0,0,1,1,'2021-07-29 17:14:12','2021-07-29 17:14:12'),(85,1,4,7,0,'Rec-89',20,'2021-07-29','2021-08-29','2021-07-14','4500',0,'0','0','0','0',0,'0','0','0','4500',0,0,'Cash','','10610295b120f30','','',0,0,1,1,'2021-07-29 17:19:05','2021-07-29 17:19:05'),(86,1,1,1,0,'Rec-90',3,'2021-07-29','2021-08-29','2021-07-21','3881',0,'0','0','0','0',0,'0','0','0','3881',0,0,'Cash','','10610298d2b595d','','',0,0,1,1,'2021-07-29 17:32:26','2021-07-29 17:32:26'),(87,1,4,9,0,'Rec-91',5,'2021-07-29','2021-08-29','2021-07-21','5000',0,'0','0','0','0',0,'0','0','0','5000',0,0,'Cash','','1061029a7110b7d','','',0,0,1,1,'2021-07-29 17:39:21','2021-07-29 17:39:21'),(88,1,1,1,0,'Rec-92',3,'2021-07-29','2021-08-29','2021-07-29','3881',0,'0','0','0','0',0,'0','0','0','3881',0,0,'Cash','','1061029c9589634','','',0,0,1,1,'2021-07-29 17:48:29','2021-07-29 17:48:29'),(89,1,1,1,0,'Rec-93',3,'2021-07-29','2021-08-29','2021-07-14','3881',0,'0','0','0','0',0,'0','0','0','3881',0,0,'Cash','','1061029cadbdddb','','',0,0,1,1,'2021-07-29 17:48:53','2021-07-29 17:48:53'),(90,1,16,32,0,'Rec-94',59,'2021-07-29','2021-08-29','2021-07-29','1000',0,'0','0','0','0',0,'0','0','0','1000',0,0,'Cash','','1061029e4b55e40','','',0,0,1,1,'2021-07-29 17:55:47','2021-07-29 17:55:47'),(91,1,30,53,0,'Rec-95',62,'2021-07-29','2021-08-29','2021-07-29','2400',0,'0','0','0','0',0,'0','0','0','2400',0,0,'Cash','','106102a00620b49','','',0,0,1,1,'2021-07-29 18:03:10','2021-07-29 18:03:10'),(92,1,4,9,0,'Rec-97',5,'2021-07-30','2021-08-30','2021-07-30','3000',899,'0','0','0','0',899,'0','0','788','5586',0,0,'Cash','','106103be9b1343a','','',0,0,1,1,'2021-07-30 14:25:55','2021-07-30 14:25:55'),(93,1,1,1,0,'Rec-98',3,'2021-07-30','2021-08-30','2021-07-30','3881',150,'0','0','0','0',190,'0','0','1000','5221',0,0,'Cash','','106103c041b8413','testing','',0,0,1,1,'2021-07-30 14:32:57','2021-07-30 14:32:57'),(94,1,1,55,0,'Rec-99',64,'2021-07-30','2021-08-30','2021-07-30','7000',890,'0','0','0','0',120,'60','0','890','8900',0,0,'Cash','','106103c45cebdd6','','',60,0,1,1,'2021-07-30 14:50:28','2021-07-30 14:50:28'),(95,1,1,54,0,'Rec-100',65,'2021-07-30','2021-08-30','2021-07-30','3400',1333,'0','0','0','0',10000,'0','0','11','14744',0,0,'Cash','','106103c795c4dc7','','',0,0,1,1,'2021-07-30 15:04:13','2021-07-30 15:04:13'),(96,1,4,9,0,'Rec-101',5,'2021-07-30','2021-08-30','2021-07-30','4212',2000,'0','0','0','0',0,'0','0','1000','7212',0,0,'Cash','','106103ce9ec72f8','','',0,0,1,1,'2021-07-30 15:34:14','2021-07-30 15:34:14'),(97,1,4,7,0,'Rec-102',20,'2021-07-30','2021-08-30','2021-07-30','4500',1000,'0','0','0','0',1000,'0','0','1000','7500',0,0,'Cash','','106103e38b0fc00','Testing Data','',0,0,1,1,'2021-07-30 17:03:31','2021-07-30 17:03:31'),(98,1,4,9,0,'Rec-103',5,'2021-07-30','2021-08-30','2021-04-29','4000',0,'0','0','0','0',0,'0','0','1000','5000',0,0,'Cash','','106103e65c2a72d','','',0,0,1,1,'2021-07-30 17:15:32','2021-07-30 17:15:32'),(99,1,1,57,0,'Rec-104',67,'2021-07-30','2021-07-04','2021-07-30','2211',0,'0','0','0','0',0,'0','0','0','2188',0,0,'PhonePe','24344ffx','106103f0141d5b9','','',0,0,1,1,'2021-07-30 17:57:00','2021-07-30 17:57:00'),(100,1,1,1,0,'Rec-105',3,'2021-07-30','2021-07-15','2021-06-03','2881',0,'0','0','0','0',0,'0','0','1000','3881',0,0,'Cash','','106103f0cc27850','testing','',0,0,1,1,'2021-07-30 18:00:04','2021-07-30 18:00:04'),(101,1,3,15,0,'Rec-106',69,'2021-07-30','2021-07-25','2021-07-30','6000',0,'0','0','0','0',0,'0','0','2000','8000',0,0,'Cash','','106103f15bdaea5','','',0,0,1,1,'2021-07-30 18:02:27','2021-07-30 18:02:27'),(102,1,6,18,0,'Rec-107',21,'2021-08-02','2021-07-25','2021-08-02','6200',900,'0','0','0','0',0,'0','0','1000','8100',0,0,'PhonePe','','106107eaeab0f02','testing','',0,0,2,1,'2021-08-02 18:24:02','2021-08-02 18:52:14'),(103,1,6,18,0,'Rec-108',21,'2021-08-03','2021-07-25','2021-08-03','2600',12000,'0','0','0','0',0,'0','0','900','15500',0,0,'Cash','','1061091898d86c3','','',0,0,1,1,'2021-08-03 15:51:12','2021-08-03 15:51:12'),(104,1,4,9,0,'Rec-109',5,'2021-08-03','2021-07-24','2021-08-03','4000',900,'0','0','0','0',0,'0','0','0','4900',0,0,'Cash','','1061091a5f14f0a','','',0,0,1,1,'2021-08-03 15:58:47','2021-08-03 15:58:47'),(105,1,26,30,0,'Rec-110',48,'2021-08-03','2021-08-23','2021-08-03','3000',1250,'0','0','0','0',0,'0','3000','0','4250',0,0,'Cash','','1061091b53d11cf','','',0,0,1,1,'2021-08-03 16:02:51','2021-08-03 16:02:51'),(106,1,3,62,0,'Rec-111',64,'2021-08-03','2021-08-29','2021-08-03','1230',200,'0','0','0','0',0,'0','3','0','1430',0,0,'Cash','','1061092ec3918ca','','',0,0,1,1,'2021-08-03 17:25:47','2021-08-03 17:25:47'),(107,1,26,30,0,'Rec-112',48,'2021-08-03',NULL,'2021-08-03','2000',0,'0','0','0','0',500,'500','0','0','1500',0,0,'Cash','','1061093920777bd','','',0,0,1,1,'2021-08-03 18:10:00','2021-08-03 18:10:00'),(108,1,24,37,0,'Rec-113',35,'2021-08-04','2021-09-04','2021-08-04','3000',1000,'0','0','0','0',100,'200','3000','1000','4900',0,0,'Cash','','10610a451225ebe','','',0,0,1,1,'2021-08-04 13:13:14','2021-08-04 13:13:14'),(109,1,4,51,0,'Rec-114',71,'2021-08-04','2021-09-04','2021-08-04','1200',0,'0','0','0','0',0,'0','0','0','3200',0,0,'Cash','','10610a5ce454e35','','',2000,0,1,1,'2021-08-04 14:54:52','2021-08-04 14:54:52'),(110,1,1,1,0,'Rec-116',3,'2021-08-04','2021-08-28','2021-08-04','3881',0,'0','200','100','100',0,'0','0','0','4281',0,0,'Cash','','10610a69f85e8f4','Testing of Electricity','',0,0,1,1,'2021-08-04 15:50:40','2021-08-04 15:50:40'),(111,1,4,9,0,'Rec-117',5,'2021-08-04','2021-09-04','2021-08-04','5000',0,'0','','700','800',0,'0','0','0','6500',0,0,'Cash','','10610a6c185127c','','',0,0,1,1,'2021-08-04 15:59:44','2021-08-04 15:59:44'),(113,1,1,55,0,'Rec-119',70,'2021-08-04','2021-08-31','2021-08-04','7000',1000,'0','500','700','800',0,'0','0','0','10000',0,0,'Cash','','10610a721c7296c','','',0,0,1,1,'2021-08-04 16:25:24','2021-08-04 16:25:24'),(114,1,1,58,0,'Rec-121',73,'2021-08-04','2021-08-14','2021-08-04','9009',0,'0','0','1000','100',0,'0','0','0','10109',0,0,'Cash','','10610a777cad3ac','','',0,0,1,1,'2021-08-04 16:48:20','2021-08-04 16:48:20'),(115,1,4,9,0,'Rec-122',5,'2021-08-04','2021-08-25','2021-08-04','5000',1200,'0','100','100','100',100,'250','0','1000','7350',0,0,'Cash','','10610a77f502ec0','other charge for furniture','',0,0,1,1,'2021-08-04 16:50:21','2021-08-04 16:50:21'),(116,1,25,26,0,'Rec-123',34,'2021-08-04','2021-08-16','2021-08-04','2000',100,'0','100','100','100',100,'0','900','100','2600',0,0,'Cash','','10610a7867102f2','','',0,0,1,1,'2021-08-04 16:52:15','2021-08-04 16:52:15'),(117,1,1,57,0,'Rec-124',67,'2021-08-04','2021-09-01','2021-08-04','2211',89,'0','100','100','100',100,'0','0','100','2800',0,0,'Cash','','10610a78d82a2eb','','',0,0,1,1,'2021-08-04 16:54:08','2021-08-04 16:54:08'),(118,1,3,14,0,'Rec-125',74,'2021-08-04','2021-08-31','2021-08-04','6000',100,'0','100','100','100',100,'700','0','100','6000',0,0,'Cash','','10610a7a2df365a','F n F pending','',100,0,1,1,'2021-08-04 16:59:49','2021-08-04 16:59:49'),(119,2,28,47,0,'Rec-11',76,'2021-08-04','2021-09-02','2021-08-04','5000',0,'0','0','0','0',0,'0','0','0','6200',0,0,'Cash','','10610a87a565ee8','','',1200,0,1,1,'2021-08-04 17:57:17','2021-08-04 17:57:17'),(120,2,28,47,0,'Rec-12',76,'2021-08-04','2021-09-01','2021-08-04','5000',0,'0','','','',0,'0','0','2000','7000',0,0,'Cash','','10610a87d283147','','',0,0,1,1,'2021-08-04 17:58:02','2021-08-04 17:58:02'),(121,1,16,34,0,'Rec-126',25,'2021-08-04','2021-08-12','2021-08-04','10',0,'0','','','',0,'0','490','0','10',0,0,'Cash','','10610a883d609d3','','',0,0,1,1,'2021-08-04 17:59:49','2021-08-04 17:59:49'),(122,1,26,30,0,'Rec-127',77,'2021-08-04','2021-08-25','2021-08-04','6000',0,'0','0','0','0',0,'0','0','0','7200',0,0,'Cash','','10610a923f9b58c','','',1200,0,1,1,'2021-08-04 18:42:31','2021-08-04 18:42:31'),(123,1,26,30,0,'Rec-128',77,'2021-08-04','2021-08-11','2021-08-04','6000',1000,'0','1300','500','500',400,'50','0','1200','10850',0,0,'Cash','','10610a92db1829e','test','',0,0,1,1,'2021-08-04 18:45:07','2021-08-04 18:45:07'),(124,1,26,30,0,'Rec-129',77,'2021-08-04','2021-08-24','2021-08-04','4800',0,'0','0','0','0',0,'0','0','0','4800',0,0,'Cash','','10610a932e2e872','','',0,0,1,1,'2021-08-04 18:46:30','2021-08-04 18:46:30'),(125,1,26,30,0,'Rec-130',77,'2021-08-04','2021-08-31','2021-08-04','5000',0,'0','400','0','0',0,'0','1000','0','5400',0,0,'Cash','','10610a94573eb66','','',0,0,1,1,'2021-08-04 18:51:27','2021-08-04 18:51:27'),(126,1,25,27,0,'Rec-131',44,'2021-08-04','2021-09-02','2021-08-04','2000',0,'0','0','0','0',0,'0','1000','0','2000',0,0,'Cash','','10610a94bfb4948','test','',0,0,1,1,'2021-08-04 18:53:11','2021-08-04 18:53:11'),(127,1,26,30,0,'Rec-132',77,'2021-08-04','2021-08-25','2021-08-04','7000',0,'0','0','0','0',0,'0','0','0','7000',0,0,'Cash','','10610a94f5af55d','test','',0,0,1,1,'2021-08-04 18:54:05','2021-08-04 18:54:05'),(128,1,2,4,0,'Rec-133',24,'2021-08-04','2021-08-17','2021-08-04','8000',0,'0','0','0','0',0,'0','0','0','8000',0,0,'Cash','','10610a95503991c','','',0,0,1,1,'2021-08-04 18:55:36','2021-08-04 18:55:36'),(129,1,2,5,0,'Rec-134',42,'2021-08-04','2021-08-05','2021-08-04','4500',0,'0','0','0','0',0,'0','0','0','4500',0,0,'Cash','','10610a95650dcce','','',0,0,1,1,'2021-08-04 18:55:57','2021-08-04 18:55:57'),(130,1,1,58,0,'Rec-135',73,'2021-08-05','2021-08-18','2021-08-05','8009',0,'0','0','0','0',0,'0','1000','0','8009',0,0,'Cash','','10610b786e9e454','','',0,0,1,1,'2021-08-05 11:04:38','2021-08-05 11:04:38'),(131,1,3,14,0,'Rec-136',79,'2021-08-05','2021-09-01','2021-08-05','6000',1000,'0','0','0','0',0,'0','0','0','8200',0,0,'Cash','','10610bde3a80f06','','',1200,0,1,1,'2021-08-05 18:18:58','2021-08-05 18:18:58'),(132,1,3,14,0,'Rec-137',79,'2021-08-05','2021-09-09','2021-08-05','6000',0,'0','300','500','0',0,'100','0','2000','8700',0,0,'Cash','','10610bdeb8aa7e4','test remark','',0,0,1,1,'2021-08-05 18:21:04','2021-08-05 18:21:04'),(133,1,3,14,0,'Rec-138',79,'2021-08-05','2021-09-16','2021-08-05','4000',0,'0','0','500','0',0,'0','0','0','4500',0,0,'Cash','','10610bdeecb8496','','',0,0,1,1,'2021-08-05 18:21:56','2021-08-05 18:21:56'),(134,1,3,14,0,'Rec-139',79,'2021-08-05','2021-08-31','2021-08-05','4500',0,'0','0','0','0',0,'0','1500','0','4500',0,0,'Cash','','10610bdf30310a8','','',0,0,1,1,'2021-08-05 18:23:04','2021-08-05 18:23:04'),(135,1,3,14,0,'Rec-140',79,'2021-08-05','2021-08-24','2021-08-05','7500',0,'0','0','0','0',0,'0','0','0','7500',0,0,'Cash','','10610bdf4b1b521','','',0,0,1,1,'2021-08-05 18:23:31','2021-08-05 18:23:31'),(136,1,3,15,0,'Rec-141',80,'2021-08-06','2021-09-06','2021-08-06','6000',0,'0','0','0','0',0,'0','0','0','9000',0,0,'Cash','','10610cb9788ae75','','',3000,0,1,1,'2021-08-06 09:54:24','2021-08-06 09:54:24'),(137,1,1,58,0,'Rec-142',73,'2021-08-06',NULL,'2021-08-06','1000',0,'0','0','0','0',200,'0','0','0','1200',0,0,'Cash','','10610d3f12a9d32','','Previous Dues - 1000(To Be Collected)',0,0,1,1,'2021-08-06 19:24:26','2021-08-06 19:24:26'),(138,1,4,6,0,'Rec-143',22,'2021-08-06','2021-09-05','2021-08-06','120',0,'0','0','0','0',0,'0','8880','0','120',0,0,'Cash','','10610d3f5d8e76c','','',0,0,1,1,'2021-08-06 19:25:41','2021-08-06 19:25:41'),(139,1,4,6,0,'Rec-144',22,'2021-08-06',NULL,'2021-08-06','6880',0,'0','0','0','0',200,'0','0','0','7080',0,0,'Cash','','10610d3f8dd362c','','Previous Dues - 6880(To Be Collected)',0,0,1,1,'2021-08-06 19:26:29','2021-08-06 19:26:29'),(140,1,5,16,0,'Rec-145',63,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',2000,'0','0','0','2000',0,0,'PhonePe','GunjanHappy3323','10610e23a3d51c0','No due case testing','No Previous Dues (0)-2000has been Collected.',0,0,1,1,'2021-08-07 11:39:39','2021-08-07 11:39:39'),(141,1,30,52,0,'Rec-146',61,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',900,'50','0','0','850',0,0,'Cash','','10610e24567204a','No due case testing 2','No Previous Dues (₹ 0)- ₹ 900Other has been Collected.',0,0,1,1,'2021-08-07 11:42:38','2021-08-07 11:42:38'),(142,1,25,27,0,'Rec-147',47,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10610e24e5ce711','','No Previous Dues (₹ 0)',0,0,1,1,'2021-08-07 11:45:01','2021-08-07 11:45:01'),(143,1,25,27,0,'Rec-148',46,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',3000,'40','0','0','2960',0,0,'Google Pay','vdsvdfeqsaf','10610e24feb043c','','No Previous Dues (₹ 0) - ₹ 3000Other Charges has been Collected.',0,0,1,1,'2021-08-07 11:45:26','2021-08-07 11:45:26'),(144,1,24,40,0,'Rec-149',37,'2021-08-07','2021-08-28','2021-08-07','5000',0,'0','0','0','0',0,'0','0','0','5000',0,0,'Cash','','10610e25434b722','','',0,0,1,1,'2021-08-07 11:46:35','2021-08-07 11:46:35'),(145,1,24,40,0,'Rec-150',37,'2021-08-07','2021-09-05','2021-08-07','100',0,'0','0','0','0',0,'0','4900','0','100',0,0,'Cash','','10610e257ad6c67','','',0,0,1,1,'2021-08-07 11:47:30','2021-08-07 11:47:30'),(146,1,24,40,0,'Rec-151',37,'2021-08-07','2021-10-01','2021-08-07','200',0,'0','0','0','0',0,'0','9700','0','200',0,0,'Cash','','10610e25a37f8c1','','',0,0,1,1,'2021-08-07 11:48:11','2021-08-07 11:48:11'),(147,1,24,40,0,'Rec-152',37,'2021-08-07',NULL,'2021-08-07','4700',0,'0','0','0','0',0,'0','0','0','4700',0,0,'Cash','','10610e25b983e54','','Previous Dues - ₹ 4700 Added',0,0,1,1,'2021-08-07 11:48:33','2021-08-07 11:48:33'),(148,1,25,27,0,'Rec-153',44,'2021-08-07','2021-09-05','2021-08-07','40',0,'0','0','0','0',0,'0','3960','0','40',0,0,'Cash','','10610e25ea29bad','','',0,0,1,1,'2021-08-07 11:49:22','2021-08-07 11:49:22'),(149,1,25,27,0,'Rec-154',44,'2021-08-07',NULL,'2021-08-07','3960',0,'0','0','0','0',0,'0','0','0','3960',0,0,'Cash','','10610e26d7365c2','','Previous Dues - ₹ 3960 Added',0,0,1,1,'2021-08-07 11:53:19','2021-08-07 11:53:19'),(150,1,25,27,0,'Rec-155',45,'2021-08-07','2021-09-03','2021-08-07','200',0,'0','0','0','0',0,'0','2800','0','200',0,0,'Cash','','10610e270b5e3a2','','',0,0,1,1,'2021-08-07 11:54:11','2021-08-07 11:54:11'),(151,1,25,27,0,'Rec-156',45,'2021-08-07',NULL,'2021-08-07','2800',0,'0','0','0','0',3000,'0','0','0','5800',0,0,'Cash','','10610e271dda714','','Previous Dues - ₹ 2800and Other Charges (₹3000)Added',0,0,1,1,'2021-08-07 11:54:29','2021-08-07 11:54:29'),(152,1,24,43,0,'Rec-157',31,'2021-08-07','2021-09-05','2021-08-07','120',0,'0','0','0','0',0,'0','3380','0','120',0,0,'Cash','','10610e2812dc6c9','','',0,0,1,1,'2021-08-07 11:58:34','2021-08-07 11:58:34'),(153,1,2,5,0,'Rec-158',42,'2021-08-07','2021-10-01','2021-08-07','230',0,'0','0','0','0',0,'0','4770','0','230',0,0,'Cash','','10610e282ebb9e5','','',0,0,1,1,'2021-08-07 11:59:02','2021-08-07 11:59:02'),(154,1,2,5,0,'Rec-159',42,'2021-08-07',NULL,'2021-08-07','4770',0,'0','0','0','0',0,'0','0','0','4770',0,0,'Cash','','10610e28e54939f','','Previous Dues - ₹ 4770 Added',0,0,1,1,'2021-08-07 12:02:05','2021-08-07 12:02:05'),(155,1,6,18,0,'Rec-160',21,'2021-08-07','2021-08-12','2021-08-07','1700',0,'0','0','0','0',0,'0','1000','0','1700',0,0,'Cash','','10610e291b6dc02','','',0,0,1,1,'2021-08-07 12:02:59','2021-08-07 12:02:59'),(156,1,6,18,0,'Rec-161',21,'2021-08-07','2021-08-10','2021-08-07','4600',0,'0','0','0','0',0,'0','0','0','4600',0,0,'Cash','','10610e294d5b8f3','','',0,0,1,1,'2021-08-07 12:03:49','2021-08-07 12:03:49'),(157,1,6,18,0,'Rec-162',21,'2021-08-07','2021-08-25','2021-08-07','1600',0,'0','0','0','0',0,'0','2000','0','1600',0,0,'Cash','','10610e295b33e55','','',0,0,1,1,'2021-08-07 12:04:03','2021-08-07 12:04:03'),(158,1,6,18,0,'Rec-163',21,'2021-08-07','2021-08-19','2021-08-07','100',0,'0','0','0','0',0,'0','5500','0','100',0,0,'Cash','','10610e299d3372f','','',0,0,1,1,'2021-08-07 12:05:09','2021-08-07 12:05:09'),(159,1,6,18,0,'Rec-164',21,'2021-08-07',NULL,'2021-08-07','1500',0,'0','0','0','0',100,'0','0','0','1600',0,0,'Cash','','10610e29af56f5b','','Previous Dues - ₹ 1500 and Other Charges (₹ 100) Added',0,0,1,1,'2021-08-07 12:05:27','2021-08-07 12:05:27'),(160,1,8,19,0,'Rec-165',40,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',324,'0','0','0','324',0,0,'Cash','','10610e29c6bf519','','No Previous Dues (₹ 0) - ₹ 324Other Charges has been Collected.',0,0,1,1,'2021-08-07 12:05:50','2021-08-07 12:05:50'),(161,1,3,60,0,'Rec-166',68,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10610e29ec02f68','','No Previous Dues (₹ 0)',0,0,1,1,'2021-08-07 12:06:28','2021-08-07 12:06:28'),(162,1,5,16,0,'Rec-167',81,'2021-08-07','2021-09-05','2021-08-07','200',0,'0','0','0','0',0,'0','4800','0','2000',0,0,'Cash','','10610e2ab1004c6','','',1000,0,1,1,'2021-08-07 12:09:44','2021-08-07 12:09:44'),(163,2,29,49,0,'Rec-13',82,'2021-08-07','2021-09-07','2021-08-07','3000',0,'0','0','0','0',0,'0','3000','0','3000',0,0,'Cash','','10610e2aebefd3b','','',0,0,1,1,'2021-08-07 12:10:43','2021-08-07 12:10:43'),(164,1,4,6,0,'Rec-168',83,'2021-08-07','2021-10-03','2021-08-07','5005',0,'0','0','0','0',0,'0','0','0','6005',0,0,'Cash','','10610e2efaba79a','','',1000,0,1,1,'2021-08-07 12:28:02','2021-08-07 12:28:02'),(165,1,5,16,0,'Rec-169',81,'2021-08-07','2021-09-17','2021-08-07','9800',0,'0','0','0','0',0,'0','0','1200','11000',0,0,'Cash','','10610e2f3b2be51','','',0,0,1,1,'2021-08-07 12:29:07','2021-08-07 12:29:07'),(166,1,26,30,0,'Rec-170',77,'2021-08-07',NULL,'2021-08-07','1200',0,'0','0','0','0',2900,'0','0','0','1700',0,0,'Cash','','10610e35b908658','testing Refund Collected','No Previous Dues (₹ 1200) - ₹ 2900 Other Charges has been Collected.',0,0,1,1,'2021-08-07 12:56:49','2021-08-07 12:56:49'),(167,1,1,57,0,'Rec-171',67,'2021-08-07',NULL,'2021-08-07','100',0,'0','0','0','0',2000,'0','0','0','1900',0,0,'Cash','','10610e361488033','','No Previous Dues (₹ 100) - ₹ 2000 Other Charges has been Collected.',0,0,1,1,'2021-08-07 12:58:20','2021-08-07 12:58:20'),(168,1,4,51,0,'Rec-172',71,'2021-08-07',NULL,'2021-08-07','2000',0,'0','0','0','0',35000,'0','0','0','33000',0,0,'Cash','','10610e3a07f29b3','','Previous Refund (₹ 2000) Adjusted and - ₹ 35000 Other Charges has been Collected. Total Adjusted Amount ₹ 33000',0,0,1,1,'2021-08-07 13:15:11','2021-08-07 13:15:11'),(169,1,30,53,0,'Rec-173',62,'2021-08-07','2021-09-25','2021-08-07','2400',0,'0','0','0','0',0,'0','0','3000','5400',0,0,'Cash','','10610e3a7893ddc','','',0,0,1,1,'2021-08-07 13:17:04','2021-08-07 13:17:04'),(170,1,30,53,0,'Rec-174',62,'2021-08-07',NULL,'2021-08-07','3000',0,'0','0','0','0',3000,'0','0','0','0',0,0,'Cash','','10610e3ae89e13a','No dues no advance testing','Previous Refund (₹ 3000) Adjusted and - ₹ 3000 Other Charges has been Collected. Total Adjusted Amount ₹ 0',0,0,1,1,'2021-08-07 13:18:56','2021-08-07 13:18:56'),(171,1,5,16,0,'Rec-175',84,'2021-08-07','2021-09-07','2021-08-07','5000',0,'0','0','0','0',0,'0','0','200','5200',0,0,'Cash','','10610e449eaafe4','','',0,0,1,1,'2021-08-07 14:00:22','2021-08-07 14:00:22'),(172,1,2,13,0,'Rec-176',60,'2021-08-07','2021-08-24','2021-08-07','5699',0,'0','0','0','0',0,'0','0','1200','6899',0,0,'Cash','','10610e45288fc4f','','',0,0,1,1,'2021-08-07 14:02:40','2021-08-07 14:02:40'),(173,1,2,13,0,'Rec-177',60,'2021-08-07',NULL,'2021-08-07','1200',0,'0','0','0','0',1200,'0','0','0','0',0,0,'Cash','','10610e454f269ed','','Previous Refund (₹ 1200) Adjusted and - ₹ 1200 Other Charges has been Collected. Total Adjusted Amount ₹ 0',0,0,1,1,'2021-08-07 14:03:19','2021-08-07 14:03:19'),(174,1,16,32,0,'Rec-178',59,'2021-08-07','2021-08-25','2021-08-07','1000',0,'0','0','0','0',0,'0','0','1400','2400',0,0,'Cash','','10610e45b3f18fd','','',0,0,1,1,'2021-08-07 14:04:59','2021-08-07 14:04:59'),(175,1,16,32,0,'Rec-179',59,'2021-08-07',NULL,'2021-08-07','1400',0,'0','0','0','0',1500,'0','0','0','100',0,0,'Cash','','10610e45e0c096a','Hello Testing Yes Yes','Previous Refund (₹ 1400) Adjusted and - ₹ 1500 Other Charges has been Collected. Total Collected Amount ₹ 100',0,0,1,1,'2021-08-07 14:05:44','2021-08-07 14:05:44'),(176,1,4,8,0,'Rec-180',23,'2021-08-07','2021-08-13','2021-08-07','47',0,'0','0','0','0',0,'0','4653','0','47',0,0,'Cash','','10610e4d1777d53','','',0,0,1,1,'2021-08-07 14:36:31','2021-08-07 14:36:31'),(177,1,1,59,0,'Rec-181',72,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10610e55c09cecc','','No Previous Dues',0,0,1,1,'2021-08-07 15:13:28','2021-08-07 15:13:28'),(178,1,1,55,0,'Rec-182',70,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',12000,'100','0','0','11900',0,0,'Cash','','10610e55f71bf9c','No due case testing','No Previous Dues (₹ 12000) Other Charges has been Collected.',0,0,1,1,'2021-08-07 15:14:23','2021-08-07 15:14:23'),(179,1,1,56,0,'Rec-183',66,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10610e63c2a6fad','','No Previous Dues',0,0,1,1,'2021-08-07 16:13:14','2021-08-07 16:13:14'),(180,1,24,41,0,'Rec-184',56,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',1200,'0','0','0','1200',0,0,'Cash','','10610e64011038d','','No Previous Dues ₹ 1200 Other Charges has been Collected.',0,0,1,1,'2021-08-07 16:14:17','2021-08-07 16:14:17'),(181,1,1,3,0,'Rec-185',30,'2021-08-07',NULL,'2021-08-07','0',0,'0','0','0','0',2309,'0','0','0','2309',0,0,'Cash','','10610e64a50088e','','No Previous Dues <br>₹ 2309 Other Charges has been Collected.',0,0,1,1,'2021-08-07 16:17:01','2021-08-07 16:17:01'),(182,1,25,26,0,'Rec-186',34,'2021-08-07',NULL,'2021-08-07','800',0,'0','0','0','0',0,'0','0','0','800',0,0,'Cash','','10610e64c8aafdc','','Previous Dues - (₹ 800) Added',0,0,1,1,'2021-08-07 16:17:36','2021-08-07 16:17:36'),(183,1,4,8,0,'Rec-187',23,'2021-08-07',NULL,'2021-08-07','4653',0,'0','0','0','0',0,'0','0','0','4653',0,0,'Cash','','10610e6536a11b9','','Previous Dues (₹ 4653) Added',0,0,1,1,'2021-08-07 16:19:26','2021-08-07 16:19:26'),(184,1,16,34,0,'Rec-188',25,'2021-08-07',NULL,'2021-08-07','490',0,'0','0','0','0',1010,'0','0','0','1500',0,0,'Cash','','10610e65606536d','','Previous Dues  (₹ 490) and Other Charges (₹ 1010) Added',0,0,1,1,'2021-08-07 16:20:08','2021-08-07 16:20:08'),(185,1,24,39,0,'Rec-189',39,'2021-08-07',NULL,'2021-08-07','1000',0,'0','0','0','0',1000,'0','0','0','0',0,0,'Cash','','10610e66a25e520','','Previous Refund (₹ 1000) Adjusted with  ₹ 1000 Other Charges. Total Collected Amount - (₹ 0)',0,0,1,1,'2021-08-07 16:25:30','2021-08-07 16:25:30'),(186,1,24,42,0,'Rec-190',36,'2021-08-07',NULL,'2021-08-07','323',0,'0','0','0','0',323,'0','0','0','0',0,0,'Cash','','10610e66f06d67a','','Previous Refund (₹ 323) Adjusted with  ₹ 323 Other Charges. Total Collected Amount - (₹ 0)',0,0,1,1,'2021-08-07 16:26:48','2021-08-07 16:26:48'),(187,1,24,38,0,'Rec-191',32,'2021-08-07',NULL,'2021-08-07','600',0,'0','0','0','0',1400,'0','0','0','800',0,0,'Cash','','10610e673f3c375','','Previous Refund (₹ 600) Adjusted and  ₹ 1400 Other Charges has been Collected. Total Adjusted Amount ₹ 800',0,0,1,1,'2021-08-07 16:28:07','2021-08-07 16:28:07'),(188,1,2,4,0,'Rec-192',24,'2021-08-07','2021-08-27','2021-08-07','20',0,'0','0','0','0',0,'0','7980','0','20',0,0,'Cash','','10610e729402c45','','',0,0,1,1,'2021-08-07 17:16:28','2021-08-07 17:16:28'),(189,1,16,35,0,'Rec-193',38,'2021-08-07',NULL,'2021-08-07','500',0,'0','0','0','0',600,'0','0','0','100',0,0,'Cash','','10610e74af8fd30','','Previous Refund (₹ 500) Adjusted and  ₹ 600 Other Charges has been Collected. Total Adjusted Amount ₹ 100',0,0,1,1,'2021-08-07 17:25:27','2021-08-07 17:25:27'),(190,1,4,9,0,'Rec-194',5,'2021-08-09',NULL,'2021-08-09','0',0,'0','0','0','0',0,'0','0','0','400',0,0,'Google Pay','jiasdsdh','106110bb5ee8c47','','Security Amount Taken',400,0,1,1,'2021-08-09 10:51:34','2021-08-09 10:51:34'),(191,1,5,16,0,'Rec-195',85,'2021-08-09',NULL,'2021-08-09','0',0,'0','0','0','0',0,'0','0','0','1000',0,0,'Cash','','106110bf4abb7e3','','Security Amount Taken',1000,0,1,1,'2021-08-09 11:08:18','2021-08-09 11:08:18'),(192,1,1,25,0,'Rec-196',29,'2021-08-09','2021-08-13','2021-08-09','2800',0,'0','0','0','0',0,'0','0','0','2800',0,0,'Cash','','106110bfa8c4ef5','','',0,0,1,1,'2021-08-09 11:09:52','2021-08-09 11:09:52'),(193,1,2,4,0,'Rec-197',24,'2021-08-09','2021-08-10','2021-08-04','15980',0,'0','0','0','0',0,'0','0','0','15980',0,0,'Cash','','106110cebf99882','','',0,0,1,1,'2021-08-09 12:14:15','2021-08-09 12:14:15'),(194,1,4,6,0,'Rec-198',86,'2021-08-09','2021-09-01','2021-08-09','5005',0,'0','0','0','0',0,'0','0','0','6305',0,0,'Cash','','106110d50d4ed7f','','',1300,0,1,1,'2021-08-09 12:41:09','2021-08-09 12:41:09'),(195,1,4,8,0,'Rec-199',87,'2021-08-09','2021-08-25','2021-08-09','4700',0,'0','0','0','0',0,'0','0','0','6200',0,0,'Google Pay','','106110d592021c7','','',1500,0,1,1,'2021-08-09 12:43:21','2021-08-09 12:43:21'),(196,1,3,62,0,'Rec-200',88,'2021-08-09','2021-09-01','2021-08-09','1233',0,'0','0','0','0',0,'0','0','0','2433',0,0,'Google Pay','','106110d60fd92ec','','',1200,0,1,1,'2021-08-09 12:45:27','2021-08-09 12:45:27'),(197,1,3,62,0,'Rec-201',88,'2021-08-09',NULL,'2021-08-09','1200',0,'0','0','0','0',1500,'0','0','0','300',0,0,'PhonePe','','106110d635db39c','300 Collected for Cooler damage','Previous Refund (₹ 1200) Adjusted and  ₹ 1500 Other Charges has been Collected. Total Adjusted Amount ₹ 300',0,0,1,1,'2021-08-09 12:46:05','2021-08-09 12:46:05'),(198,1,4,6,0,'Rec-202',89,'2021-08-09','2021-08-11','2021-08-09','5005',0,'0','0','0','0',0,'0','0','0','5005',0,0,'PhonePe','','106110d7254d02d','','',0,0,1,1,'2021-08-09 12:50:05','2021-08-09 12:50:05'),(199,1,4,6,0,'Rec-203',89,'2021-08-09',NULL,'2021-08-09','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','106110d734a92c1','','No Previous Dues',0,0,1,1,'2021-08-09 12:50:20','2021-08-09 12:50:20'),(200,1,4,6,0,'Rec-204',90,'2021-08-09','2021-08-31','2021-08-09','5005',0,'0','0','0','0',0,'0','0','0','5005',0,0,'Cash','','106110d76f027f2','','',0,0,1,1,'2021-08-09 12:51:18','2021-08-09 12:51:18'),(201,1,4,6,0,'Rec-205',90,'2021-08-09',NULL,'2021-08-09','0',0,'0','0','0','0',1300,'0','0','0','1300',0,0,'Cash','','106110d79c04641','electricity','No Previous Dues <br>₹ 1300 Other Charges has been Collected.',0,0,1,1,'2021-08-09 12:52:04','2021-08-09 12:52:04'),(202,1,3,60,0,'Rec-206',91,'2021-08-09','2021-08-26','2021-08-09','3000',0,'0','0','0','0',0,'0','0','0','3000',0,0,'Cash','','106110d8e72740b','','',0,0,1,1,'2021-08-09 12:57:35','2021-08-09 12:57:35'),(203,1,3,60,0,'Rec-207',91,'2021-08-09','2021-08-26','2021-08-09','2000',0,'0','0','0','0',0,'0','1000','0','2000',0,0,'Cash','','106110d909c1455','','',0,0,1,1,'2021-08-09 12:58:09','2021-08-09 12:58:09'),(204,1,3,60,0,'Rec-208',91,'2021-08-09',NULL,'2021-08-09','1000',0,'0','0','0','0',1000,'100','0','0','1900',0,0,'Google Pay','gsdddddddrerae','106110dec0508e7','testing of collected','Previous Dues  (₹ 1000) and Other Charges (₹ 1000) Added',0,0,1,1,'2021-08-09 13:22:32','2021-08-09 13:22:32'),(205,1,24,37,0,'Rec-209',35,'2021-08-09',NULL,'2021-08-09','1000',0,'0','0','0','0',9000,'0','0','0','8000',0,0,'Cash','','106110dfaaef3f8','','Previous Refund (₹ 1000) Adjusted and  ₹ 9000 Other Charges has been Collected. Total Collected Amount ₹ 8000',0,0,1,1,'2021-08-09 13:26:26','2021-08-09 13:26:26'),(206,1,4,8,0,'Rec-210',92,'2021-08-09','2021-08-17','2021-08-09','4700',0,'0','0','0','0',0,'0','0','0','4700',0,0,'Cash','','106110dfeda780c','','',0,0,1,1,'2021-08-09 13:27:33','2021-08-09 13:27:33'),(207,1,4,8,0,'Rec-211',92,'2021-08-09','2021-08-18','2021-08-09','3700',0,'0','0','0','0',0,'0','1000','0','3700',0,0,'Google Pay','','106110e0078e612','','',0,0,1,1,'2021-08-09 13:27:59','2021-08-09 13:27:59'),(208,1,4,8,0,'Rec-212',92,'2021-08-09',NULL,'2021-08-09','1000',0,'0','0','0','0',0,'200','0','0','800',0,0,'Cash','','106110e02843ca0','','Previous Dues (₹ 1000) Added',0,0,1,1,'2021-08-09 13:28:32','2021-08-09 13:28:32'),(209,1,3,60,0,'Rec-213',93,'2021-08-09','2021-08-19','2021-08-09','3000',0,'0','0','0','0',0,'0','0','0','3000',0,0,'Cash','','106110e060766f1','','',0,0,1,1,'2021-08-09 13:29:28','2021-08-09 13:29:28'),(210,1,3,60,0,'Rec-214',93,'2021-08-09','2021-08-24','2021-08-09','1000',0,'0','0','0','0',0,'0','2000','0','1000',0,0,'Cash','','106110e07ec81ca','','',0,0,1,1,'2021-08-09 13:29:58','2021-08-09 13:29:58'),(211,1,3,60,0,'Rec-215',93,'2021-08-09',NULL,'2021-08-09','0',0,'0','0','0','0',0,'0','0','0','5000',0,0,'Cheque','','106110e09000d6f','','Security Amount Taken',5000,0,1,1,'2021-08-09 13:30:16','2021-08-09 13:30:16'),(212,1,1,1,0,'Rec-216',3,'2021-08-09','2021-08-09','2021-08-09','3881.0',0,'0.00','0','0','0',0,'0','0','100','3981.00',0,0,'Cash','','106110ff9829b81','','',0,0,2,1,'2021-08-09 15:42:40','2021-08-09 17:56:26'),(213,1,4,7,0,'Rec-217',20,'2021-08-09','2021-09-04','2021-08-09','3500',0,'0','0','0','0',0,'0','1700','200','3700',0,0,'Cash','','1061112e130d4a6','testing new mode','',0,0,1,1,'2021-08-09 19:00:59','2021-08-09 19:00:59'),(214,1,1,25,0,'Rec-218',29,'2021-08-09','2021-08-25','2021-08-09','2000',0,'0','0','0','0',0,'0','800','0','2000',0,0,'Cash','','1061112e77c533f','','',0,0,1,1,'2021-08-09 19:02:39','2021-08-09 19:02:39'),(215,1,1,25,0,'Rec-219',29,'2021-08-09','2021-09-03','2021-08-09','3300',0,'0','0','0','0',0,'0','600','0','3300',0,0,'Cash','','1061112e9d11f52','','',0,0,1,1,'2021-08-09 19:03:17','2021-08-09 19:03:17'),(216,1,4,7,0,'Rec-220',20,'2021-08-09','2021-08-17','2021-08-09','6000',0,'0','0','0','0',0,'0','100','0','6000',0,0,'Cash','','1061112ec6a483e','test','',0,0,1,1,'2021-08-09 19:03:58','2021-08-09 19:03:58'),(217,1,4,8,0,'Rec-221',95,'2021-08-10','2021-08-27','2021-08-10','4700',0,'0','0','0','0',0,'0','0','0','6100',0,0,'Cash','','1061121872c867f','','',1400,0,1,1,'2021-08-10 11:40:58','2021-08-10 11:40:58'),(218,1,4,8,0,'Rec-222',95,'2021-08-10','2021-09-09','2021-08-10','4700',0,'0','0','0','0',0,'0','','1300','6000',0,0,'Cash','','1061121890bdbbf','','',0,0,1,1,'2021-08-10 11:41:28','2021-08-10 11:41:28'),(219,1,6,18,0,'Rec-223',96,'2021-08-10','2021-08-28','2021-08-10','3600',0,'0','0','0','0',0,'0','0','1000','5600',0,0,'Cash','','10611218a6145a7','','',1000,0,1,1,'2021-08-10 11:41:50','2021-08-10 11:41:50'),(220,1,3,50,0,'Rec-224',97,'2021-08-10','2021-08-19','2021-08-10','2300',0,'0','0','0','0',0,'0','0','0','3600',0,0,'Cash','','10611218b4309d6','','',1300,0,1,1,'2021-08-10 11:42:04','2021-08-10 11:42:04'),(221,1,8,19,0,'Rec-225',98,'2021-08-10','2021-08-14','2021-08-10','2000',0,'0','0','0','0',0,'0','3000','0','2000',0,0,'Cash','','10611218dd469b9','','',0,0,1,1,'2021-08-10 11:42:45','2021-08-10 11:42:45'),(222,1,3,50,0,'Rec-226',97,'2021-08-10','2021-08-18','2021-08-10','1300',0,'0','0','0','0',0,'0','1000','0','1300',0,0,'Cash','','10611218f595283','','',0,0,1,1,'2021-08-10 11:43:09','2021-08-10 11:43:09'),(223,1,16,35,0,'Rec-227',99,'2021-08-10','2021-08-28','2021-08-10','10',0,'0','0','0','0',0,'0','990','0','2010',0,0,'Cash','','10611219147b17f','','',2000,0,1,1,'2021-08-10 11:43:40','2021-08-10 11:43:40'),(224,1,1,1,0,'Rec-228',3,'2021-08-10','2021-09-10','2021-08-10','3781',100,'0','100','200','0',0,'0','1181','0','4181',0,0,'Cash','','106112430caa3df','','',0,0,1,1,'2021-08-10 14:42:44','2021-08-10 14:42:44'),(225,1,4,7,0,'Rec-229',20,'2021-08-10','2021-09-02','2021-08-10','3000',0,'0','200','200','0',100,'0','2100','0','3500',0,0,'Cash','','1061124368df04b','','',0,0,1,1,'2021-08-10 14:44:16','2021-08-10 14:44:16'),(226,1,4,7,0,'Rec-230',20,'2021-08-10','2021-09-02','2021-08-10','3000',0,'0','200','200','0',100,'0','2100','0','3500',0,0,'Cash','','1061124369959e6','','',0,0,1,1,'2021-08-10 14:44:17','2021-08-10 14:44:17'),(227,1,8,19,0,'Rec-231',98,'2021-08-10',NULL,'2021-08-10','0',0,'0','0','0','0',0,'0','0','0','4000',0,0,'UPI','fdsgfdsgsdgds','10611243adb985f','','Security Amount Taken',4000,0,1,1,'2021-08-10 14:45:25','2021-08-10 14:45:25'),(228,1,4,6,0,'Rec-232',94,'2021-08-10',NULL,'2021-08-10','0',0,'0','0','0','0',500,'0','0','0','500',0,0,'Cash','','10611244134cc2e','','No Previous Dues <br>₹ 500 Other Charges has been Collected.',0,0,1,1,'2021-08-10 14:47:07','2021-08-10 14:47:07'),(229,1,1,1,0,'Rec-233',3,'2021-08-10','2021-09-02','2021-08-10','3000',0,'0','0','0','0',0,'0','2062','0','3000',0,0,'Cash','','106112443d9fc02','','',0,0,1,1,'2021-08-10 14:47:49','2021-08-10 14:47:49'),(230,1,1,1,0,'Rec-234',3,'2021-08-10',NULL,'2021-08-10','2062',0,'0','0','0','0',0,'62','0','0','2000',0,0,'Cash','','106112446f84497','testing','Previous Dues (₹ 2062) Added',0,0,1,1,'2021-08-10 14:48:39','2021-08-10 14:48:39'),(231,1,1,2,0,'Rec-235',28,'2021-08-10','2021-09-04','2021-08-10','2000',200,'0','200','200','200',0,'0','1200','200','3000',0,0,'Cash','','106112709717b4f','','',0,0,1,1,'2021-08-10 17:57:03','2021-08-10 17:57:03'),(232,1,2,4,0,'Rec-236',24,'2021-08-10','2021-09-04','2021-08-10','8000',0,'0','333','0','0',0,'0','1233','900','9233',0,0,'Cash','','106112741c44434','','',0,0,1,1,'2021-08-10 18:12:04','2021-08-10 18:12:04'),(233,1,4,6,0,'Rec-237',100,'2021-08-11','2021-08-14','2021-08-11','4000',500,'0','0','0','0',100,'0','975','30','16830',0,0,'Cash','','106113540cefc1d','','',10000,0,1,1,'2021-08-11 10:07:32','2021-08-11 10:07:32'),(234,1,16,32,0,'Rec-238',101,'2021-08-11','2021-08-28','2021-08-11','1000',0,'0','200','200','200',200,'0','0','200','2000',0,0,'Cash','','1061135495d6dcd','','',0,0,1,1,'2021-08-11 10:09:49','2021-08-11 10:09:49'),(235,1,2,5,0,'Rec-239',75,'2021-08-11','2021-08-12','2021-08-11','4000',100,'0','200','200','200',0,'0','900','100','5000',0,0,'Google Pay','asdfbgnhm','106113550441a5f','','',200,0,1,1,'2021-08-11 10:11:40','2021-08-11 10:11:40'),(236,1,3,50,0,'Rec-240',97,'2021-08-12','2021-08-19','2021-08-12','3300',0,'0','0','0','0',0,'0','0','0','3300',0,0,'Cash','','1061150997347d2','','',0,0,1,1,'2021-08-12 17:14:23','2021-08-12 17:14:23'),(237,1,3,50,0,'Rec-241',97,'2021-08-12','2021-08-19','2021-08-12','2300',100,'0','100','100','100',100,'0','300','0','2800',0,0,'Cash','','10611509ee63c75','','',0,0,1,1,'2021-08-12 17:15:50','2021-08-12 17:15:50'),(238,1,3,50,0,'Rec-242',97,'2021-08-12','2021-08-24','2021-08-12','2600',0,'0','0','0','0',0,'0','0','0','2600',0,0,'Cash','','1061150a0245ac7','','',0,0,1,1,'2021-08-12 17:16:10','2021-08-12 17:16:10'),(239,1,3,50,0,'Rec-243',97,'2021-08-12','2021-08-26','2021-08-12','2300.0',100,'0.00','0','0','0',0,'0','0','0','2800.00',0,0,'Cash','','1061150aae273a0','','',0,0,1,1,'2021-08-12 17:19:02','2021-08-12 17:19:02'),(240,1,3,50,0,'Rec-244',97,'2021-08-12','2021-08-24','2021-08-12','2300.0',0,'0.00','0','0','0',0,'0','0.0','0','2300.00',0,0,'Cash','','1061150ba7c24fe','','',0,0,1,1,'2021-08-12 17:23:11','2021-08-12 17:23:11'),(241,1,3,50,0,'Rec-245',97,'2021-08-12','2021-08-24','2021-08-12','2300.0',100,'0.00','100','100','100',100,'0','300.0','0','2800.00',0,0,'Cash','','1061150bde60506','','',0,0,1,1,'2021-08-12 17:24:06','2021-08-12 17:24:06'),(242,1,2,5,0,'Rec-246',75,'2021-08-13','2021-08-12','2021-08-13','5000.0',100,'0.00','100','100','100',100,'0','1300.0','0','5500.00',0,0,'Cash','','106116349e0db12','','',0,0,1,1,'2021-08-13 14:30:14','2021-08-13 14:30:14'),(243,1,4,7,0,'Rec-247',20,'2021-08-13',NULL,'2021-08-13','0',0,'0','0','0','0',0,'0','0','0','6000',0,0,'Cash','','106116564defb90','','Security Amount Taken',6000,0,1,1,'2021-08-13 16:53:57','2021-08-13 16:53:57'),(244,1,16,32,0,'Rec-248',101,'2021-08-13',NULL,'2021-08-13','0',0,'0','0','0','0',0,'0','0','0','100',0,0,'Cash','','106116566d896e2','','Security Amount Taken',100,0,1,1,'2021-08-13 16:54:29','2021-08-13 16:54:29'),(245,1,26,30,0,'Rec-249',102,'2021-08-13','2021-08-24','2021-08-13','6000',100,'0','100','100','100',100,'0','0','0','6600.00',0,0,'Cash','','1061165e8f6aed2','','',0,0,1,1,'2021-08-13 17:29:11','2021-08-13 17:29:11'),(246,1,1,25,0,'Rec-250',29,'2021-08-14','2021-09-08','2021-08-14','3400',0,'0','0','0','0',0,'0','0','0','3400',0,0,'Cash','','106117b1155c54f','','',0,0,2,1,'2021-08-14 17:33:33','2021-08-14 17:33:43'),(247,1,1,2,0,'Rec-251',28,'2021-08-14','2021-08-31','2021-08-01','3400',0,'0','0','0','0',0,'0','0','0','3400',0,0,'Cash','','106117b13f52f6d','','',0,0,1,1,'2021-08-14 17:34:15','2021-08-14 17:34:15'),(248,1,4,7,0,'Rec-252',20,'2021-08-18','2021-09-05','2021-08-18','5000',1000,'0','0','0','0',0,'0','1600','0','6000',0,0,'Cash','','10611c9c2426433','due collection next month','',0,0,1,1,'2021-08-18 11:05:32','2021-08-18 11:05:32'),(249,1,1,25,0,'Rec-253',29,'2021-08-18','2021-09-01','2021-08-18','2500',0,'0','0','1000','0',0,'0','300','0','3500',0,0,'Cash','','10611c9d327f8a3','Testing','',0,0,1,1,'2021-08-18 11:10:02','2021-09-06 18:28:28'),(250,1,26,30,0,'Rec-254',102,'2021-08-20','2021-09-26','2021-08-20','6600',0,'0','1000','0','0',7000,'0','0','0','1400',0,0,'Cash','','10611f965f60705','Testing','Previous Refund (₹ 6600) Adjusted and  ₹ 7000 Other Charges has been Collected. Total Collected Amount ₹ 400',0,0,1,1,'2021-08-20 17:17:43','2021-09-06 18:21:21'),(251,1,16,32,0,'Rec-255',101,'2021-08-21',NULL,'2021-08-21','0',0,'0','0','0','0',0,'0','0','0','400',0,0,'PhonePe','Shadsddafedfx','106120a78baa54b','Pending amount 1000','Security Amount Taken',400,0,1,1,'2021-08-21 12:43:15','2021-08-21 12:43:15'),(252,1,16,32,0,'Rec-256',101,'2021-08-21',NULL,'2021-08-21','0',0,'0','0','0','0',0,'0','0','0','400',0,0,'Cash','','106120be2fa4f72','Testing','Security Amount Taken',400,0,1,1,'2021-08-21 14:19:51','2021-08-21 14:19:51'),(253,1,8,19,0,'Rec-257',98,'2021-08-21',NULL,'2021-08-21','0',0,'0','0','0','0',0,'0','0','0','1000',0,0,'Cash','','106120d2dcb548d','hvhcgjhjb','Security Amount Taken',1000,0,1,1,'2021-08-21 15:48:04','2021-08-21 15:48:04'),(254,1,4,51,0,'Rec-258',105,'2021-08-28',NULL,'2021-08-28','0',0,'0','0','0','0',0,'0','0','0','1000',0,0,'Cash','','10612a1ba6e3def','Testing','Security Amount Taken',1000,0,1,1,'2021-08-28 16:49:02','2021-08-28 16:49:02'),(255,1,4,51,0,'Rec-259',105,'2021-08-28',NULL,'2021-08-01','0',0,'0','0','0','0',0,'0','0','0','2000',0,0,'Cash','','10612a20381688e','fhgvhhbh','Security Amount Taken',2000,0,1,1,'2021-08-28 17:08:32','2021-08-28 17:08:32'),(256,1,4,51,0,'Rec-260',105,'2021-08-28',NULL,'2021-08-13','0',0,'0','0','0','0',0,'0','0','0','2000',0,0,'Cash','','10612a2375a0a83','','Security Amount Taken',2000,0,1,1,'2021-08-28 17:22:21','2021-08-28 17:22:21'),(257,1,2,4,0,'Rec-261',24,'2021-08-31','2021-08-15','2021-08-31','8333',0,'0','1000','700','0',0,'0','0','0','10033',0,0,'Online/IMPS','','10612e2fec43b9b','','',0,0,1,1,'2021-08-31 19:04:36','2021-09-06 18:18:08'),(258,1,1,3,0,'Rec-264',112,'2021-09-04',NULL,'2021-09-04','0',0,'0','0','0','0',0,'0','0','0','3444',0,0,'Cash','','10613309510d5da','','Security Amount Taken',3444,0,2,1,'2021-09-04 11:21:13','2021-09-06 13:21:54'),(259,1,16,31,0,'Rec-265',113,'2021-09-04','2021-09-26','2021-09-04','5000',0,'0','','','',0,'0','0','0','8000',0,0,'Cash','','106133098f544b2','','',3000,0,2,1,'2021-09-04 11:22:15','2021-09-06 13:21:40'),(260,1,1,2,0,'Rec-266',28,'2021-09-06','2021-09-12','2021-09-02','2400',0,'0','200','123','0',0,'0','0','1000','3723',0,0,'Google Pay','tdgdsgsg44','106135ec36e0693','dasasfasfsa','',0,0,1,1,'2021-09-06 15:53:50','2021-09-07 16:28:57'),(261,1,25,29,0,'Rec-267',128,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','2000',0,0,'Cash','','10614426a98745c','','Security Amount Taken',2000,0,1,1,'2021-09-17 10:54:57','2021-09-17 10:54:57'),(262,1,3,60,0,'Rec-268',130,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','2000',0,0,'Cash','','106144293d93b70','','Security Amount Taken',2000,0,1,1,'2021-09-17 11:05:57','2021-09-17 11:05:57'),(263,1,3,14,0,'Rec-269',131,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','3333333333',0,0,'Cash','','106144299736e5d','','Security Amount Taken',2147483647,0,2,1,'2021-09-17 11:07:27','2021-09-23 21:48:14'),(264,1,3,62,0,'Rec-270',132,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','322',0,0,'Cash','','10614429f164894','','Security Amount Taken',322,0,1,1,'2021-09-17 11:08:57','2021-09-17 11:08:57'),(265,1,5,64,0,'Rec-271',133,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','2000',0,0,'Cash','','1061442ae8bf96e','','Security Amount Taken',2000,0,1,1,'2021-09-17 11:13:04','2021-09-17 11:13:04'),(266,1,1,56,0,'Rec-272',134,'2021-09-17','2021-10-10','2021-09-17','2211',800,'0','','800','',0,'50','0','0','6761',0,0,'Cash','','1061442be5ce6f4','','',3000,0,1,1,'2021-09-17 11:17:17','2021-09-17 11:17:17'),(267,1,1,58,0,'Rec-273',135,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','8000',0,0,'Cash','','1061442d1a6a328','','Security Amount Taken',8000,0,1,1,'2021-09-17 11:22:26','2021-09-17 11:22:26'),(268,1,1,59,0,'Rec-274',137,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','8000',0,0,'Cash','','1061442d82dccc6','','Security Amount Taken',8000,0,1,1,'2021-09-17 11:24:10','2021-09-17 11:24:10'),(269,1,24,40,0,'Rec-275',138,'2021-09-17','2021-11-06','2021-09-01','5000',1000,'0','','1000','',0,'0','0','500','7500',0,0,'Cash','','1061442e1916afe','','',0,0,1,1,'2021-09-17 11:26:41','2021-09-17 11:26:41'),(270,1,24,37,0,'Rec-276',139,'2021-09-17','2021-10-08','2021-09-17','5000',0,'0','','200','',0,'0','0','0','8200',0,0,'Cash','','1061442ef95d2c0','','',3000,0,1,1,'2021-09-17 11:30:25','2021-09-17 11:30:25'),(271,1,30,52,0,'Rec-277',140,'2021-09-17','2021-10-22','2021-09-04','1200',0,'0','','2000','',0,'0','0','0','5200',0,0,'Cash','','1061442ff932875','','',2000,0,1,1,'2021-09-17 11:34:41','2021-09-17 11:34:41'),(272,1,30,52,0,'Rec-278',142,'2021-09-17','2021-10-22','2021-09-04','1200',0,'0','','2000','',0,'0','0','0','5200',0,0,'Cash','','10614433bd6f55b','','',2000,0,1,1,'2021-09-17 11:50:45','2021-09-17 11:50:45'),(273,1,1,55,0,'Rec-279',119,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',900,'0','0','0','900',0,0,'Cash','','1061445b8f28951','','No Previous Dues <br>₹ 900 Other Charges has been Collected.',0,0,1,1,'2021-09-17 14:40:39','2021-09-17 14:40:39'),(274,1,25,27,0,'Rec-280',118,'2021-09-10',NULL,'2021-09-10','0',0,'0','0','0','0',800,'0','0','0','800',0,0,'Cash','','1061445c90ab9f3','testing','No Previous Dues <br>₹ 800 Other Charges has been Collected.',0,0,1,1,'2021-09-17 14:44:56','2021-09-17 14:44:56'),(275,1,16,34,0,'Rec-281',108,'2021-09-12',NULL,'2021-09-12','4000',0,'0','0','0','0',5000,'0','0','0','1000',0,0,'Cash','','1061445db988925','','Previous Refund (₹ 4000) Adjusted and  ₹ 5000 Other Charges has been Collected. Total Collected Amount ₹ 1000',0,0,1,1,'2021-09-17 14:49:53','2021-09-17 14:49:53'),(276,1,30,53,0,'Rec-282',142,'2021-09-17','2021-09-17','2021-09-10','2400',0,'0','0','0','0',0,'0','0','0','2400',0,0,'Cash','','10614461e52b44e','','',0,0,1,1,'2021-09-17 15:07:41','2021-09-17 15:07:41'),(277,1,30,53,0,'Rec-283',142,'2021-09-17','2021-10-08','2021-09-12','2400',0,'0','0','0','0',0,'0','0','0','2400',0,0,'Cash','','10614461fcd92e3','','',0,0,1,1,'2021-09-17 15:08:04','2021-09-17 15:08:04'),(278,1,1,59,0,'Rec-284',141,'2021-09-17','2021-09-27','2021-09-05','2345',0,'0','0','0','0',0,'0','345','0','2345',0,0,'Cash','','106144625ae7a13','','',0,0,1,1,'2021-09-17 15:09:38','2021-09-17 15:09:38'),(279,1,1,59,0,'Rec-285',141,'2021-09-17','2021-09-15','2021-09-17','2690',0,'0','0','0','0',0,'0','0','0','2690',0,0,'Cash','','106144628e00d45','','',0,0,1,1,'2021-09-17 15:10:30','2021-09-17 15:10:30'),(280,1,1,59,0,'Rec-286',141,'2021-09-17',NULL,'2021-09-17','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614462ab9a379','','No Previous Dues',0,0,1,1,'2021-09-17 15:10:59','2021-09-17 15:10:59'),(281,1,1,1,0,'Rec-287',110,'2021-09-17','2021-09-29','2021-09-14','3400',0,'0','0','0','0',0,'0','0','0','3400',0,0,'Cash','','10614462cb0ed18','','',0,0,1,1,'2021-09-17 15:11:31','2021-09-17 15:11:31'),(282,1,1,56,0,'Rec-288',145,'2021-09-21',NULL,'2021-09-21','0',0,'0','0','0','0',0,'0','0','0','10000',0,0,'Cash','','10614984db588c8','','Security Amount Taken',10000,0,1,1,'2021-09-21 12:38:11','2021-09-21 12:38:11'),(283,2,29,49,0,'Rec-14',82,'2021-09-21',NULL,'2021-09-21','0',0,'0','0','0','0',0,'0','0','0','300',0,0,'Cash','','106149d63621df8','','Security Amount Taken',300,0,1,1,'2021-09-21 18:25:18','2021-09-21 18:25:18'),(284,1,1,59,0,'Rec-289',150,'2021-09-21',NULL,'2021-09-21','0',0,'0','0','0','0',0,'0','0','0','1000',0,0,'Cash','','106149d76647356','','Security Amount Taken',1000,0,1,1,'2021-09-21 18:30:22','2021-09-21 18:30:22'),(285,1,4,9,0,'Rec-290',151,'2021-09-21','2021-09-18','2021-09-21','5000',0,'0','','','',0,'0','0','0','5000',0,0,'Cash','','106149d9c2223fa','','',0,0,1,1,'2021-09-21 18:40:26','2021-09-21 18:40:26'),(286,1,1,25,0,'Rec-291',29,'2021-09-22','2021-10-10','2021-09-22','3100',0,'0','0','0','0',0,'0','0','0','3100',0,0,'PhonePe','gyvcvm','10614aedc3dfd60','','',0,0,1,1,'2021-09-22 14:18:03','2021-09-22 14:18:03'),(287,1,2,5,0,'Rec-292',75,'2021-09-22','2021-10-10','2021-09-22','6300',0,'0','0','0','0',0,'0','5300','0','6300',0,0,'Google Pay','fghgwQWETSRYDFKG','10614aede7bd807','','',0,0,1,1,'2021-09-22 14:18:39','2021-09-22 14:18:39'),(288,1,16,34,0,'Rec-293',152,'2021-09-22','2021-10-03','2021-09-22','1000',0,'0','','','',0,'0','0','0','1010',0,0,'Cash','','10614b0afd8f47e','','',10,0,1,1,'2021-09-22 16:22:45','2021-09-22 16:22:45'),(289,1,30,52,0,'Rec-294',153,'2021-09-22','2021-09-10','2020-12-10','1200',0,'0','','','',0,'0','0','0','1200',0,0,'Cash','','10614b1c7895ff2','','',0,0,1,1,'2021-09-22 17:37:20','2021-09-22 17:37:20'),(290,1,30,52,0,'Rec-295',154,'2021-09-22','2021-09-10','2020-12-10','1200',0,'0','','','',0,'0','0','0','1200',0,0,'Cash','','10614b1dd442104','','',0,0,1,1,'2021-09-22 17:43:08','2021-09-22 17:43:08'),(291,1,30,52,0,'Rec-296',155,'2021-09-22','2021-09-10','2020-12-10','1200',0,'0','','','',0,'0','0','0','1200',0,0,'Cash','','10614b1df529eb5','','',0,0,1,1,'2021-09-22 17:43:41','2021-09-22 17:43:41'),(292,1,30,52,0,'Rec-297',156,'2021-09-22','2021-09-10','2020-12-10','1200',0,'0','','','',0,'0','0','0','1200',0,0,'Cash','','10614b1eac00c97','','',0,0,1,1,'2021-09-22 17:46:43','2021-09-22 17:46:43'),(293,1,30,52,0,'Rec-298',153,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c09eb4c9fb','','No Previous Dues',0,0,1,1,'2021-09-23 10:30:27','2021-09-23 10:30:27'),(294,1,30,53,0,'Rec-299',154,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c09f0e3900','','No Previous Dues',0,0,1,1,'2021-09-23 10:30:32','2021-09-23 10:30:32'),(295,1,30,52,0,'Rec-300',155,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c09f5830b2','','No Previous Dues',0,0,1,1,'2021-09-23 10:30:37','2021-09-23 10:30:37'),(296,1,30,52,0,'Rec-301',156,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c09fb21185','','No Previous Dues',0,0,1,1,'2021-09-23 10:30:43','2021-09-23 10:30:43'),(297,1,4,9,0,'Rec-302',151,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c0a0096847','','No Previous Dues',0,0,1,1,'2021-09-23 10:30:48','2021-09-23 10:30:48'),(298,1,4,9,0,'Rec-303',157,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c0ae89af57','','No Previous Dues',0,0,1,1,'2021-09-23 10:34:40','2021-09-23 10:34:40'),(299,1,4,9,0,'Rec-304',160,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c0aef23bcb','','No Previous Dues',0,0,1,1,'2021-09-23 10:34:47','2021-09-23 10:34:47'),(300,1,4,9,0,'Rec-305',161,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c0b03d7480','','No Previous Dues',0,0,1,1,'2021-09-23 10:35:07','2021-09-23 10:35:07'),(301,1,4,9,0,'Rec-306',162,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c0b0eba776','','No Previous Dues',0,0,1,1,'2021-09-23 10:35:18','2021-09-23 10:35:18'),(302,1,4,9,0,'Rec-307',159,'2021-09-23',NULL,'2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c0b169cf4b','','No Previous Dues',0,0,1,1,'2021-09-23 10:35:26','2021-09-23 10:35:26'),(303,1,4,9,0,'Rec-308',163,'2021-09-23','2021-10-20','2021-09-23','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10614c0b2b63cb5','','No Previous Dues',0,0,1,1,'2021-09-23 10:35:47','2021-10-01 05:46:38'),(304,1,4,9,0,'Rec-309',164,'2021-10-01',NULL,'2021-10-01','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10615653c841057','','No Previous Dues',0,0,1,1,'2021-10-01 05:48:16','2021-10-01 05:48:16'),(305,1,4,9,0,'Rec-310',158,'2021-10-01',NULL,'2021-10-01','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10615653cd8f88f','','No Previous Dues',0,0,1,1,'2021-10-01 05:48:21','2021-10-01 05:48:21'),(306,1,1,2,0,'Rec-311',28,'2021-10-04','2021-10-06','2021-10-04','1400',0,'0','0','0','0',0,'0','0','0','1400',0,0,'Cash','','10615b0a7495696','','',0,0,1,1,'2021-10-04 19:36:44','2021-10-04 19:36:44'),(307,1,16,31,0,'Rec-312',113,'2021-10-04','2021-10-29','2021-10-04','5000',0,'0','0','0','0',0,'0','0','0','5000',0,0,'Cash','','10615b0a9ac1ab8','','',0,2,1,1,'2021-10-04 19:37:22','2021-10-04 19:37:22'),(308,1,1,2,0,'Rec-313',28,'2021-10-05','2021-10-28','2021-10-05','2400',0,'0','0','0','0',0,'0','0','0','2400',0,0,'Cash','','10615bda5475e5f','','',0,4,1,1,'2021-10-05 10:23:40','2021-10-05 10:23:40'),(309,1,24,37,0,'Rec-314',139,'2021-10-05','2021-10-28','2021-10-05','5000',0,'0','0','0','0',0,'0','0','0','5000',0,0,'Cash','','10615bf3dc04fb6','','',0,4,1,1,'2021-10-05 12:12:36','2021-10-05 12:12:36'),(310,1,8,19,0,'Rec-315',98,'2021-10-05','2021-10-22','2021-10-05','8000',0,'0','0','0','0',0,'0','0','0','8000',0,0,'Cash','','10615c0dce87032','','',0,0,1,1,'2021-10-05 14:03:18','2021-10-05 14:03:18'),(311,1,4,6,0,'Rec-316',100,'2021-10-05','2021-10-31','2021-10-05','5950',0,'0','0','0','0',0,'0','0','0','5950',0,0,'Cash','','10615c0dfd9abc5','','',0,3,1,1,'2021-10-05 14:04:05','2021-10-05 14:04:05'),(312,1,6,18,0,'Rec-317',96,'2021-10-05','2021-11-04','2021-10-05','2600',0,'0','0','0','0',0,'0','0','0','2600',0,0,'Cash','','10615c13ef6dc2d','','',0,3,1,1,'2021-10-05 14:29:27','2021-10-05 14:29:27'),(313,1,2,4,0,'Rec-318',24,'2021-10-06','2021-11-07','2021-10-06','8000',0,'0','0','0','0',0,'0','3000','0','8000',0,0,'Cash','','10615d4b7fdc768','','',0,2,1,1,'2021-10-06 12:38:47','2021-10-06 12:38:47'),(314,1,2,4,0,'Rec-319',24,'2021-10-06','2021-12-15','2021-10-06','11000',0,'0','0','0','0',0,'0','4000','0','7000',0,0,'Cash','','10615d4d3951a17','','',0,2,1,1,'2021-10-06 12:46:09','2021-10-06 12:46:09'),(315,1,5,16,0,'Rec-320',85,'2021-10-06','2021-12-10','2021-10-06','2500',0,'0','0','0','0',0,'0','500','0','2000',0,0,'Cash','','10615d4d8586e98','','',0,1,1,1,'2021-10-06 12:47:25','2021-10-06 12:47:25'),(316,1,3,50,0,'Rec-321',97,'2021-10-06','2021-11-02','2021-10-06','2600',0,'0','0','0','0',0,'0','1100','0','1500',0,0,'Cash','','10615d4f6b81cd2','','',0,1,1,1,'2021-10-06 12:55:31','2021-10-06 12:55:31'),(317,1,5,16,0,'Rec-322',85,'2021-10-06','2021-10-28','2021-10-06','3000',0,'0','0','0','0',0,'0','0','0','3000',0,0,'Cash','','10615d8a13aae31','','',0,1,1,1,'2021-10-06 17:05:47','2021-10-06 17:05:47'),(318,1,1,25,0,'Rec-323',29,'2021-10-07','2021-10-27','2021-10-07','2800',0,'0','0','0','0',0,'0','0','0','2800',0,0,'Cash','','10615e5ff47971f','','',0,4,1,1,'2021-10-07 08:18:20','2021-10-07 08:18:20'),(319,1,1,2,0,'Rec-324',28,'2021-10-08','2021-10-29','2021-10-08','2400',0,'0','0','0','0',0,'0','0','0','2400',0,0,'Cash','','10615fd3a3d161b','','',0,1,1,1,'2021-10-08 10:44:11','2021-10-08 10:44:11'),(320,4,22,22,0,'Rec-1',170,'2021-10-08',NULL,'2021-10-08','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10616034ee85def','','No Previous Dues',0,0,1,41,'2021-10-08 17:39:18','2021-10-08 17:39:18'),(321,1,4,9,0,'Rec-325',173,'2021-10-08',NULL,'2021-10-08','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061604415ed2a3','','No Previous Dues',0,0,1,1,'2021-10-08 18:43:57','2021-10-08 18:43:57'),(322,1,30,53,0,'Rec-326',167,'2021-10-16',NULL,'2021-10-16','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10616a51db5478c','','No Previous Dues',0,0,1,1,'2021-10-16 09:45:23','2021-10-16 09:45:23'),(323,1,4,9,0,'Rec-327',165,'2021-10-16',NULL,'2021-10-16','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','10616a51f8a8857','','No Previous Dues',0,0,1,1,'2021-10-16 09:45:52','2021-10-16 09:45:52'),(324,1,6,18,0,'Rec-328',96,'2021-10-16','2021-10-30','2021-03-02','3600',0,'0','0','0','0',0,'0','1600','0','2000',0,0,'Cash','','10616a62133ca0b','','',0,0,1,1,'2021-10-16 10:54:35','2021-10-16 10:54:35'),(325,1,6,18,0,'Rec-329',96,'2021-10-16',NULL,'2021-10-16','600',0,'0','0','0','0',0,'20','0','0','580',0,0,'Paytm','tdgdsgsg44','10616a63003d6e9','Testing','Previous Dues (₹ 600) Added',0,0,1,1,'2021-10-16 10:58:32','2021-10-16 10:58:32'),(326,1,25,27,0,'Rec-330',148,'2021-10-12',NULL,'2021-10-12','0',0,'0','0','0','0',600,'0','0','0','600',0,0,'Wallet','','10616a6a932fc21','','No Previous Dues <br>₹ 600 Other Charges has been Collected.',0,0,1,1,'2021-10-16 11:30:51','2021-10-16 11:30:51'),(327,1,1,55,0,'Rec-331',146,'2021-10-16','2021-10-31','2021-10-01','7000',0,'0','0','0','0',0,'0','4000','0','3000',0,0,'Cash','','10616a6adf7584c','','',0,0,1,1,'2021-10-16 11:32:07','2021-10-16 11:32:07'),(328,1,2,4,0,'Rec-332',24,'2021-10-21','2021-11-21','2021-10-06','12000',0,'0','0','0','0',0,'0','0','0','12000',0,0,'Cash','','1061715d66d8703','','',0,1,1,1,'2021-10-21 18:00:30','2021-10-21 18:00:30'),(329,1,1,25,0,'Rec-333',29,'2021-11-15','2021-11-24','2021-11-15','2800',200,'0','0','0','0',0,'0','2200','1000','1800',0,0,'Paytm','tdgdsgsg44','1061922ce78b710','','',0,2,1,1,'2021-11-15 15:18:23','2021-11-16 14:43:19'),(330,1,1,25,0,'Rec-334',29,'2021-11-15','2021-11-27','2021-11-02','4000',0,'0','0','0','0',0,'0','0','2000','06000',0,0,'Cash','','1061922d1c50d9b','','',0,2,1,1,'2021-11-15 15:19:16','2021-11-15 15:19:16'),(331,1,1,2,0,'Rec-335',28,'2021-11-15','2021-11-25','2021-11-15','2400',0,'0','0','0','0',0,'0','0','0','2400',0,0,'Cash','','10619253d0eb5fa','','',0,1,1,1,'2021-11-15 18:04:24','2021-11-15 18:04:24'),(332,1,1,2,0,'Rec-336',28,'2021-11-16','2021-12-09','2021-11-12','2400',0,'0','0','0','0',0,'22','0','122','2500',0,0,'Cash','','1061933640436b6','','',0,2,1,1,'2021-11-16 10:10:32','2021-11-16 10:10:32'),(333,1,1,25,0,'Rec-337',29,'2021-11-16','2021-12-03','2021-11-13','800',0,'0','100','0','0',0,'0','0','0','900',0,0,'Cash','','10619336e4d2a08','','',0,3,1,1,'2021-11-16 10:13:16','2021-11-16 14:39:56'),(334,1,1,2,0,'Rec-338',28,'2021-11-16','2021-11-19','2021-11-13','2278',0,'0','0','0','0',0,'0','0','0','2278',0,0,'Cash','','1061933a7184597','','',0,2,1,1,'2021-11-16 10:28:25','2021-11-16 10:28:25'),(335,1,2,5,0,'Rec-339',75,'2021-11-16','2021-12-11','2021-11-14','10300',0,'0','0','0','0',0,'300','9000','0','1000',0,0,'Cash','','1061933bead81e1','','',0,2,1,1,'2021-11-16 10:34:42','2021-11-16 10:34:42'),(336,1,5,16,0,'Rec-340',85,'2021-11-16','2021-12-03','2021-11-15','2500',0,'0','0','0','0',0,'0','0','0','2500',0,0,'Cash','','1061933c81e8b96','','',0,4,1,1,'2021-11-16 10:37:13','2021-11-16 10:37:13'),(337,1,2,5,0,'Rec-341',75,'2021-11-16','2021-11-18','2021-11-16','1000',0,'0','0','0','0',0,'0','13000','0','1000',0,0,'Cash','','10619341ba31339','','',0,3,1,1,'2021-11-16 10:59:30','2021-11-16 10:59:30'),(338,1,4,6,0,'Rec-342',100,'2021-11-16','2021-12-03','2021-11-14','5005',0,'0','0','0','0',0,'0','0','0','5005',0,0,'Cash','','1061934219232a7','','',0,4,1,1,'2021-11-16 11:01:05','2021-11-16 11:01:05'),(339,1,1,1,0,'Rec-343',110,'2021-11-16','2021-12-12','2021-11-11','3400',0,'0','0','0','0',0,'0','0','0','3400',0,0,'Cash','','10619342fc64787','','',0,4,1,1,'2021-11-16 11:04:52','2021-11-16 11:04:52'),(340,1,1,1,0,'Rec-344',110,'2021-11-16','2021-11-25','2021-11-09','3400',0,'0','0','0','0',0,'0','0','0','3400',0,0,'Cash','','10619344424e1f1','','',0,2,1,1,'2021-11-16 11:10:18','2021-11-16 11:10:18'),(341,1,2,61,0,'Rec-345',111,'2021-11-16','2021-11-30','2021-11-07','1200',0,'0','0','0','0',0,'0','0','0','1200',0,0,'Cash','','1061934c7b222f6','','',0,2,1,1,'2021-11-16 11:45:23','2021-11-16 11:45:23'),(342,1,24,42,0,'Rec-346',114,'2021-11-16','2021-12-12','2021-11-06','5000',0,'0','0','0','0',0,'0','0','0','5000',0,0,'Cash','','10619350dddc426','','',0,4,2,1,'2021-11-16 12:04:05','2021-11-16 12:28:47'),(343,1,0,0,6,'Rec-348',187,'2021-12-04','2022-01-08','2021-12-04','2000',0,'0','','700','',0,'0','0','0','2700',0,0,'Cash','','1061aaf4887a268','','',0,0,1,1,'2021-12-04 10:24:32','2021-12-04 10:24:32'),(344,1,0,0,4,'Rec-349',179,'2021-12-04','2022-01-08','2021-12-04','12000',0,'0','','','',0,'0','0','200','12200',0,0,'Cash','','1061ab0ee27bcc2','','',0,0,1,1,'2021-12-04 12:16:58','2021-12-04 12:16:58'),(345,1,0,0,0,'Rec-351',187,'2021-12-06',NULL,'2021-12-06','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061adb336d201b','','No Previous Dues',0,0,1,1,'2021-12-06 12:22:38','2021-12-06 12:22:38'),(346,1,0,0,0,'Rec-352',183,'2021-12-06',NULL,'2021-12-06','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061adb341c94d5','','No Previous Dues',0,0,1,1,'2021-12-06 12:22:49','2021-12-06 12:22:49'),(347,1,0,0,0,'Rec-353',186,'2021-12-06',NULL,'2021-12-06','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061adb350f139b','','No Previous Dues',0,0,1,1,'2021-12-06 12:23:04','2021-12-06 12:23:04'),(348,1,0,0,0,'Rec-354',188,'2021-12-06',NULL,'2021-12-06','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061adb35e9ad14','','No Previous Dues',0,0,1,1,'2021-12-06 12:23:18','2021-12-06 12:23:18'),(349,1,0,0,0,'Rec-355',192,'2021-12-06',NULL,'2021-12-06','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061adb382e29d1','','No Previous Dues',0,0,1,1,'2021-12-06 12:23:54','2021-12-06 12:23:54'),(350,1,0,0,2,'Rec-356',193,'2021-12-06',NULL,'2021-12-06','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061adbab3f0709','','No Previous Dues',0,0,1,1,'2021-12-06 12:54:35','2021-12-06 12:54:35'),(351,1,1,59,0,'Rec-357',166,'2021-12-06',NULL,'2021-12-06','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061adbba274463','','No Previous Dues',0,0,1,1,'2021-12-06 12:58:34','2021-12-06 12:58:34'),(352,1,0,0,0,'Rec-358',179,'2021-12-07','2022-01-09','2021-12-07','11800',0,'0','0','0','0',0,'0','1800','0','10000',0,0,'Cash','','1061af35021462a','','',0,1,1,1,'2021-12-07 15:48:42','2021-12-07 15:48:42'),(353,1,0,0,0,'Rec-359',192,'2021-12-07',NULL,'2021-12-07','0',0,'0','0','0','0',0,'0','0','0','2000',0,0,'Cash','','1061af3b5a0e1fa','','Security Amount Taken',2000,0,1,1,'2021-12-07 16:15:46','2021-12-07 16:15:46'),(354,1,11,0,0,'Rec-360',172,'2021-12-07','2021-12-06','2021-12-04','11000',0,'0','0','0','0',0,'0','0','0','11000',0,0,'Cash','','1061af43722d969','','',0,2,1,1,'2021-12-07 16:50:18','2021-12-07 16:50:18'),(355,1,0,0,4,'Rec-361',179,'2021-12-08',NULL,'2021-12-08','1800',0,'0','0','0','0',0,'0','0','0','1800',0,0,'Cash','','1061b0979841edc','','Previous Dues (₹ 1800) Added',0,0,1,1,'2021-12-08 17:01:36','2021-12-08 17:01:36'),(356,1,0,0,5,'Rec-362',172,'2021-12-08',NULL,'2021-12-08','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'Cash','','1061b097c71bf65','','No Previous Dues',0,0,1,1,'2021-12-08 17:02:23','2021-12-08 17:02:23'),(357,1,0,0,6,'Rec-363',194,'2021-12-08','2022-01-01','2021-12-08','2000',0,'0','','','',0,'0','0','100','2100',0,0,'Cash','','1061b09c5f27d7d','','',0,0,1,1,'2021-12-08 17:21:59','2021-12-08 17:21:59'),(358,1,0,0,0,'Rec-364',188,'2021-12-09','2021-11-09','2021-10-05','18000',0,'0','0','0','0',0,'0','0','0','18000',0,0,'Cash','','1061b1de46a31d9','','',0,1,1,1,'2021-12-09 16:15:26','2021-12-09 16:15:26'),(359,1,0,0,0,'Rec-365',195,'2022-01-27','2022-01-27','2022-01-27','12000',0,'0','0','0','0',0,'0','11000','0','1000',12,83,'Cash','','1061f28ebb4ad5d','','',0,0,1,1,'2022-01-27 17:53:23','2022-01-27 17:53:23'),(360,1,0,0,0,'Rec-366',195,'2022-01-27','2022-01-27','2022-01-27','23000',0,'0','0','0','0',0,'0','19667','0','3333',0,0,'Cash','','1061f28ee486bd5','','',0,0,1,1,'2022-01-27 17:54:04','2022-01-27 17:54:04'),(361,1,0,0,0,'Rec-367',187,'2022-01-27','2022-01-30','2022-01-27','14000',0,'0','0','0','0',0,'0','0','0','14000',30,466,'Cash','','1061f28f6fa0db8','','',0,0,1,1,'2022-01-27 17:56:23','2022-01-27 17:56:23'),(362,1,0,0,3,'Rec-368',198,'2022-01-28','2022-02-06','2022-01-28','15000',0,'0','','','',0,'0','0','0','15000',0,0,'Cash','','1061f38646702bd','','',0,0,1,1,'2022-01-28 11:29:34','2022-01-28 11:29:34'),(364,1,0,0,5,'Rec-370',200,'2022-01-28','2022-01-22','2022-01-28','11000',0,'0','','','',0,'0','0','0','11000',0,0,'Cash','','1061f3895d339f8','','',0,0,1,1,'2022-01-28 11:42:45','2022-01-28 11:42:45'),(365,1,0,0,8,'Rec-371',201,'2022-01-28','2022-02-18','2022-01-28','12000',0,'0','','','',0,'0','0','0','12000',0,0,'Cash','','1061f38c6f796a4','','',0,0,1,1,'2022-01-28 11:55:51','2022-01-28 11:55:51'),(366,1,0,0,9,'Rec-372',202,'2022-01-28','2022-02-17','2022-01-28','2222',0,'0','','','',0,'0','0','0','2222',12,185,'Cash','','1061f38dd2e0e9b','','',0,0,1,1,'2022-01-28 12:01:46','2022-01-28 12:01:46'),(367,1,16,35,0,'Rec-373',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f394f46d234','','',0,3,1,1,'2022-01-28 12:32:12','2022-01-28 12:32:12'),(368,1,16,35,0,'Rec-374',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f394f6ddef8','','',0,3,1,1,'2022-01-28 12:32:14','2022-01-28 12:32:14'),(369,1,16,35,0,'Rec-375',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f395041478a','','',0,3,1,1,'2022-01-28 12:32:28','2022-01-28 12:32:28'),(370,1,16,35,0,'Rec-376',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f39505f31d0','','',0,3,1,1,'2022-01-28 12:32:29','2022-01-28 12:32:29'),(371,1,16,35,0,'Rec-377',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f3950650c60','','',0,3,1,1,'2022-01-28 12:32:30','2022-01-28 12:32:30'),(372,1,16,35,0,'Rec-378',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f395067cf0f','','',0,3,1,1,'2022-01-28 12:32:30','2022-01-28 12:32:30'),(373,1,16,35,0,'Rec-379',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f39506b05c2','','',0,3,1,1,'2022-01-28 12:32:30','2022-01-28 12:32:30'),(374,1,16,35,0,'Rec-380',99,'2022-01-28','2022-01-30','2022-01-28','1990',0,'0','0','0','0',0,'0','990','0','1000',12,83,'Cash','','1061f3956fd7a74','','',0,3,1,1,'2022-01-28 12:34:15','2022-01-28 12:34:15'),(375,1,4,9,0,'Rec-381',103,'2022-01-28','2022-01-29','2022-01-28','5000',0,'0','0','0','0',0,'0','3778','0','1222',12,101,'Cash','','1061f395c976969','','',0,2,1,1,'2022-01-28 12:35:45','2022-01-28 12:35:45'),(376,1,0,0,9,'Rec-382',202,'2022-01-29',NULL,'2022-01-29','0',0,'0','0','0','0',0,'0','0','0','0',0,0,'UPI','e3333','1061f4bfbe63691','','No Previous Dues',0,0,1,1,'2022-01-29 09:47:02','2022-01-29 09:47:02'),(377,1,0,0,9,'Rec-383',203,'2022-01-29','2022-02-04','2022-01-29','2222',0,'0','','','',0,'0','0','0','2222',3333,0,'Cash','','1061f4c25ee2b17','','',0,0,1,1,'2022-01-29 09:58:14','2022-01-29 09:58:14');
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `permissions`
--

DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `guard_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permissions`
--

LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
INSERT INTO `permissions` VALUES (1,'create rooms','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(2,'create beds','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(3,'create terms conditions','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(4,'update amenities','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(5,'add residents','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(6,'edit residents','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(7,'transfer rooms','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(8,'release resident','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(9,'add payments','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(10,'edit payments','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(11,'cancel payments','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(12,'add staff','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(13,'add expenses','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(14,'view payments','web','2021-10-01 00:00:00','2021-10-01 00:00:00'),(17,'reactivate resident','web','2021-10-01 00:00:00','2021-10-01 00:00:00');
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pgs`
--

DROP TABLE IF EXISTS `pgs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pgs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_slug` text NOT NULL DEFAULT '',
  `pg_name` varchar(50) NOT NULL,
  `contact_1` varchar(20) NOT NULL,
  `contact_2` varchar(20) NOT NULL,
  `address` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `max_branch` int(11) NOT NULL,
  `logo` text NOT NULL,
  `ref_prefix` varchar(100) NOT NULL,
  `client_type` int(11) NOT NULL DEFAULT 1 COMMENT '1 Demo 2 Live',
  `registration_date` datetime NOT NULL,
  `inv_prefix` varchar(5) NOT NULL,
  `renewal_date` datetime NOT NULL,
  `status` enum('2','1') NOT NULL COMMENT '1=active,2=inactive',
  `gstin` text NOT NULL DEFAULT '',
  `send_sms` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 No 1 Yes',
  `collection_agents` int(11) NOT NULL DEFAULT 0 COMMENT '0 No 1 Yes',
  `form_expire_time` int(11) NOT NULL DEFAULT 30,
  `mail_verification` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 No 1 Yes',
  `share_mail_receipt` int(11) NOT NULL DEFAULT 0 COMMENT '0 No 1 Yes',
  `listing_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 Free 2 Paid',
  `verified_status` enum('Telephonic Verified','Physical Verified','UnVerified') NOT NULL DEFAULT 'UnVerified',
  `flat_wise` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 No 1 yes',
  `flat_module` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 No 1 yes',
  `pan_no` varchar(222) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pgs`
--

LOCK TABLES `pgs` WRITE;
/*!40000 ALTER TABLE `pgs` DISABLE KEYS */;
INSERT INTO `pgs` VALUES (1,'unique-pg','Unique Pg','9782939007','78671903432','17- manav asaram ,near gopalpura puliya , Jaipur',3,'uploads/logo/phpXJXyZM.jpg','REF',2,'2021-04-15 17:44:02','Rec','2022-07-28 18:16:59','1','09EEEEEEEEEEE2S',0,0,150,0,0,2,'UnVerified',1,0,'ACCE334DF',1,'2021-04-15 17:46:33','2021-10-07 11:36:49'),(3,'gulati-pg','Gulati PG','7412011777','','Dadi ka Phatak, Jaipiur, Rajasthan',2,'','REF',2,'2021-06-23 14:26:31','Rec','2022-03-25 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-23 14:26:31','2021-09-22 10:52:44'),(4,'malik-house','Malik House','9667783662','','Vaishali Nagar, Jaipiur, Rajasthan',2,'','REF',2,'2021-06-24 11:27:09','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-06-24 11:27:09','2021-09-22 10:52:44'),(5,'royal-pg','Royal PG','8529547249','','Jaipur, Rajasthan',2,'','REF',2,'2021-06-24 18:05:23','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-24 18:05:23','2021-09-22 10:52:44'),(6,'easypg','Easypg','8529379900','','BB-50Milap nagar,jaipur',2,'','REF',2,'2021-06-24 22:25:02','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-06-24 22:25:02','2021-09-22 10:52:44'),(7,'vadic-kanya','Vadic Kanya','7412016633','','37, Shyam Marg,  Sarovar, Mansarovar, Jaipur',2,'','REF',2,'2021-06-24 22:25:38','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',9,'2021-06-24 22:25:38','2021-09-22 10:52:44'),(8,'ks-house','KS house','8890625020','','64 A Durgapura jaipur',2,'','REF',2,'2021-06-24 22:26:34','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-24 22:26:34','2021-09-22 10:52:44'),(9,'hanumangarh-boys-pg','Hanumangarh Boys pg','8890624277','','Ram tirth marg, Mansarover, jaipur',2,'','REF',2,'2021-06-24 22:27:14','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-06-24 22:27:14','2021-09-22 10:52:44'),(10,'pgvg','PGVG','8529547245','','Jaipur, Rajasthan',2,'','REF',2,'2021-06-24 22:27:44','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-24 22:27:44','2021-09-22 10:52:44'),(11,'apna-pg','Apna PG','6375175966','','201, Manglam Signeture Tower, lalkothi, jaipur 302015',2,'','REF',2,'2021-06-24 22:33:04','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',13,'2021-06-24 22:33:04','2021-09-22 10:52:44'),(12,'bt-pg','BT PG','7412036334','','201, Manglam Signeture Tower, lalkothi, jaipur 302015',2,'','REF',2,'2021-06-24 22:33:33','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-06-24 22:33:33','2021-09-22 10:52:44'),(13,'pg-hub','PG hub','8890626107','','519, 5th floor JMD Megapolis IT park Sohna road, Gurugram, Haryana',2,'','REF',2,'2021-06-24 22:34:16','Rec','2021-12-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-24 22:34:16','2021-09-22 10:52:44'),(14,'sky-pg','Sky PG','7849904536','','201, Manglam Signeture Tower, lalkothi, jaipur 302015',2,'','REF',2,'2021-06-24 22:35:21','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-24 22:35:21','2021-09-22 10:52:44'),(15,'pg-finder','PG Finder','7877343607','','201, Manglam signature tower, lal kothi , Jaipur , 302015',2,'','REF',2,'2021-06-24 22:35:57','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-06-24 22:35:57','2021-09-22 10:52:44'),(16,'pg-zone','PG Zone','8529547231','','205, Manglam signature tower, lal kothi , Jaipur , 302015',2,'','REF',2,'2021-06-24 22:36:31','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-24 22:36:31','2021-09-22 10:52:44'),(17,'pg-nest','PG Nest','7412063323','','205, Manglam signature tower, lal kothi , Jaipur , 302015',2,'','REF',2,'2021-06-24 22:37:01','Rec','2021-07-24 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-06-24 22:37:01','2021-09-22 10:52:44'),(18,'agarwal-house','Agarwal House','7412016633','','205, Manglam signature tower, lal kothi , Jaipur , 302015',2,'','REF',2,'2021-06-25 16:06:40','Rec','2021-07-25 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-06-25 16:06:40','2021-09-22 10:52:44'),(19,'shyam-pg','Shyam PG','9414001123','','Plot no. 154, himmat Nagar, Gopal Pura Mod, Tonk Road, Jaipur, 302018',2,'','REF',2,'2021-07-01 11:22:52','Rec','2021-07-31 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-07-01 11:22:52','2021-09-22 10:52:44'),(20,'navya-girls-pg','Navya Girls PG','8005810321','','Shop no 3, 4, 5 Keshav vihar Near Gopal pura by pass Jaipur 302018',2,'','REF',2,'2021-07-01 12:23:20','Rec','2021-07-31 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-07-01 12:23:20','2021-09-22 10:52:44'),(21,'shree-vinayak-homes','Shree Vinayak Homes','9414363656','','Plot No 292. Surya nagar, mahesh nager road gopalpura baypass jaipur 302015',2,'','REF',2,'2021-07-01 16:49:34','Rec','2021-07-31 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-07-01 16:49:34','2021-09-22 10:52:44'),(23,'mansa-girls-pg','Mansa Girls PG','7014337725','','678, Dayal Nagar, Gopalpura Bypass, Jaipur',2,'','REF',2,'2021-07-08 17:18:27','Rec','2021-08-07 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-07-08 17:18:27','2021-09-22 10:52:44'),(24,'krc-boys-pg','KRC Boys pg','9462510911','','180 Dr. Rajender Prasad nager mansarovar jaipur 302019',2,'','REF',2,'2021-07-09 12:18:07','Rec','2021-08-08 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-07-09 12:18:07','2021-09-22 10:52:44'),(25,'executive-pg','Executive PG','9029644455','','Executive PG, Shop No.1,Plot No.5,Sector 8, Airoli Navi Mumbai 400 708, Maharashtra',2,'','REF',2,'2021-07-13 17:51:36','Recei','2022-07-13 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',0,'2021-07-13 17:51:36','2021-09-22 10:52:44'),(26,'karni-pg','Karni Pg','6988856327','','Sodala, Jaipur',2,'','REF',2,'2021-07-22 07:35:17','Rec','2021-08-21 00:00:00','1','',0,0,30,0,0,1,'UnVerified',0,0,'',1,'2021-07-22 07:35:17','2021-09-22 10:52:44'),(27,'preeti-pg','Preeti Pg','1111111111','','Ajmer',2,'','REF',2,'2021-07-29 15:20:22','Rec','2021-08-08 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-07-29 15:20:22','2021-09-22 10:52:44'),(28,'gunjan-pg','Gunjan Pg','2222222222','','jaipur',2,'','REF',2,'2021-07-30 12:02:22','Rec','2021-08-09 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-07-30 12:02:22','2021-09-22 10:52:44'),(29,'gunjan-at','Gunjan@','9782839000','','Test',2,'','REF',2,'2021-07-30 16:02:31','Rec','2021-08-09 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'',0,'2021-07-30 16:02:31','2021-09-22 10:52:44'),(30,'vish-pg','Vish PG','5867984576','','zucol jaipur',1,'','REF',2,'2022-02-12 11:17:22','Rec','2022-02-22 00:00:00','1','',0,0,30,0,0,2,'UnVerified',0,0,'AABCZ2081K',0,'2022-02-12 11:17:22','2022-02-12 11:17:22');
/*!40000 ALTER TABLE `pgs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `preferences`
--

DROP TABLE IF EXISTS `preferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `preferences` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `res_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `flat_id` int(11) NOT NULL DEFAULT 0,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `preferences`
--

LOCK TABLES `preferences` WRITE;
/*!40000 ALTER TABLE `preferences` DISABLE KEYS */;
INSERT INTO `preferences` VALUES (1,19,1,0,0,'2021-07-19 18:04:27','2021-07-19 18:04:27'),(2,22,1,0,0,'2021-07-19 18:52:07','2021-07-19 18:52:07'),(3,25,1,0,0,'2021-07-20 12:42:38','2021-07-20 12:42:38'),(4,26,1,0,0,'2021-07-20 12:43:43','2021-07-20 12:43:43'),(5,31,1,0,0,'2021-07-22 11:24:16','2021-07-22 11:24:16'),(6,32,1,0,0,'2021-07-22 11:30:09','2021-07-22 11:30:09'),(7,33,1,0,0,'2021-07-22 11:32:10','2021-07-22 11:32:10'),(8,34,1,11,0,'2021-07-22 11:35:08','2021-07-22 11:35:08'),(9,35,1,25,0,'2021-07-22 11:38:34','2021-07-22 11:38:34'),(10,36,1,8,0,'2021-07-22 11:43:59','2021-07-22 11:43:59'),(11,37,1,25,0,'2021-07-22 11:45:53','2021-07-22 11:45:53'),(12,38,1,0,0,'2021-07-22 11:48:07','2021-07-22 11:48:07'),(13,39,1,0,0,'2021-07-22 11:49:17','2021-07-22 11:49:17'),(14,53,1,0,0,'2021-07-27 09:52:34','2021-07-27 09:52:34'),(15,54,1,0,0,'2021-07-27 09:53:18','2021-07-27 09:53:18'),(16,55,1,0,0,'2021-07-27 09:54:43','2021-07-27 09:54:43'),(17,59,1,0,0,'2021-07-29 17:54:40','2021-07-29 17:54:40'),(18,60,1,0,0,'2021-07-29 17:57:22','2021-07-29 17:57:22'),(19,64,1,0,0,'2021-07-30 14:46:10','2021-07-30 14:46:10'),(20,69,1,0,0,'2021-07-30 18:01:49','2021-07-30 18:01:49'),(21,70,1,0,0,'2021-08-04 12:36:39','2021-08-04 12:36:39'),(22,74,1,0,0,'2021-08-04 16:58:52','2021-08-04 16:58:52'),(23,75,1,0,0,'2021-08-04 17:32:46','2021-08-04 17:32:46'),(24,103,1,0,0,'2021-08-13 17:31:12','2021-08-13 17:31:12'),(25,116,1,0,0,'2021-09-04 13:13:16','2021-09-04 13:13:16'),(26,144,1,0,0,'2021-09-18 18:27:25','2021-09-18 18:27:25'),(27,171,2,31,0,'2021-09-23 23:57:42','2021-09-23 23:57:42'),(28,172,1,11,0,'2021-10-06 15:03:39','2021-10-06 15:03:39'),(29,174,1,0,0,'2021-11-13 18:00:43','2021-11-13 18:00:43'),(30,175,1,0,0,'2021-11-13 18:18:40','2021-11-13 18:18:40'),(31,176,1,0,0,'2021-11-13 18:19:50','2021-11-13 18:19:50'),(32,177,1,11,0,'2021-11-13 18:25:57','2021-11-13 18:25:57'),(33,178,1,0,0,'2021-11-13 18:28:03','2021-11-13 18:28:03'),(34,179,1,0,0,'2021-11-13 18:29:13','2021-11-13 18:29:13'),(35,189,1,0,0,'2021-12-04 15:12:06','2021-12-04 15:12:06'),(36,190,1,0,0,'2021-12-04 15:12:38','2021-12-04 15:12:38'),(37,191,1,0,3,'2021-12-04 15:14:35','2021-12-04 15:14:35'),(38,194,1,0,2,'2021-12-07 11:20:31','2021-12-07 11:20:31'),(39,197,1,0,0,'2021-12-09 17:17:41','2021-12-09 17:17:41');
/*!40000 ALTER TABLE `preferences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `purchase_parties`
--

DROP TABLE IF EXISTS `purchase_parties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `purchase_parties` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `party_name` varchar(100) NOT NULL,
  `phone` varchar(20) NOT NULL,
  `address` text NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0 No. 1 Yes',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `purchase_parties`
--

LOCK TABLES `purchase_parties` WRITE;
/*!40000 ALTER TABLE `purchase_parties` DISABLE KEYS */;
INSERT INTO `purchase_parties` VALUES (1,1,'Sadsadsa','12312312','',1,1,'2021-10-09 11:50:04','2021-10-09 11:50:04'),(2,1,'Vishnu','8769606272','jaipur',1,1,'2021-10-09 11:50:58','2021-10-09 14:13:49'),(3,1,'Vishnu','8769606272','sdsfdsf',0,1,'2021-10-09 11:51:21','2021-10-09 14:12:34'),(4,1,'Vishnu','8769606272','7410d',0,1,'2021-10-09 11:52:45','2021-10-09 13:17:06'),(5,1,'Vishnu Choudhary','7412589633','sfdsf',0,1,'2021-10-09 11:54:10','2021-10-09 14:13:42'),(6,1,'3eertret','1234567897','',1,1,'2021-10-09 14:24:19','2021-10-09 16:18:01');
/*!40000 ALTER TABLE `purchase_parties` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resident_accomdations`
--

DROP TABLE IF EXISTS `resident_accomdations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `resident_accomdations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `res_id` int(11) NOT NULL,
  `bed_id` int(11) NOT NULL DEFAULT 0,
  `flat_id` int(11) NOT NULL DEFAULT 0,
  `from_date` date NOT NULL,
  `to_date` date DEFAULT NULL,
  `rent` int(11) NOT NULL,
  `status` tinyint(4) NOT NULL COMMENT '1=active,2=inactive',
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=229 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resident_accomdations`
--

LOCK TABLES `resident_accomdations` WRITE;
/*!40000 ALTER TABLE `resident_accomdations` DISABLE KEYS */;
INSERT INTO `resident_accomdations` VALUES (1,1,1,5,0,'2021-05-03','2021-05-03',6788,2,'2021-04-29 12:39:39','2021-05-03 19:28:01'),(2,1,2,4,0,'2021-04-30','2021-04-30',8000,2,'2021-04-29 12:42:22','2021-04-30 10:01:25'),(3,1,3,1,0,'2021-04-29','2021-05-22',3880,2,'2021-04-29 18:32:50','2021-05-22 18:55:14'),(4,1,4,2,0,'2021-04-30','2021-05-04',2500,2,'2021-04-30 09:55:17','2021-05-04 18:34:37'),(5,1,5,9,0,'2021-05-01','2021-09-01',5000,2,'2021-04-30 09:58:29','2021-09-17 15:29:53'),(6,1,6,3,0,'2021-05-23','2021-05-23',7000,2,'2021-04-30 10:04:32','2021-05-23 22:36:10'),(7,1,7,6,0,'2021-05-03','2021-05-03',5600,2,'2021-04-30 10:14:27','2021-05-03 19:52:36'),(8,1,8,2,0,'2021-05-05','2021-05-05',2400,2,'2021-04-30 10:22:43','2021-05-05 08:27:19'),(11,1,11,7,0,'2021-04-30','2021-04-30',5600,2,'2021-04-30 10:37:48','2021-04-30 15:50:01'),(12,1,12,9,0,'2021-04-30','2021-05-01',5000,2,'2021-04-30 12:06:10','2021-05-01 15:25:15'),(13,1,13,8,0,'2021-04-30','2021-05-01',5500,2,'2021-04-30 12:12:01','2021-05-01 18:01:59'),(14,2,14,10,0,'2021-07-19',NULL,2500,1,'2021-04-30 17:24:23','2021-07-19 17:23:32'),(15,1,12,7,0,'2021-05-01','2021-07-19',5634,2,'2021-05-01 15:25:15','2021-07-19 18:31:49'),(16,1,13,13,0,'2021-05-01','2021-05-17',5500,2,'2021-05-01 18:01:59','2021-06-02 11:00:35'),(17,1,15,5,0,'2021-05-04','2021-07-23',5000,2,'2021-05-04 14:55:37','2021-07-23 17:09:22'),(18,1,16,2,0,'2021-05-14','2021-05-14',2400,2,'2021-05-04 15:35:48','2021-05-14 07:17:47'),(19,2,4,12,0,'2021-05-04',NULL,2535,1,'2021-05-04 18:34:37','2021-05-04 18:34:37'),(20,1,17,4,0,'2021-05-14','2021-05-14',4700,2,'2021-05-14 07:10:23','2021-05-14 07:12:40'),(21,1,17,8,0,'2021-05-14','2021-07-19',4700,2,'2021-05-14 07:12:40','2021-07-19 18:26:49'),(22,1,13,13,0,'2021-05-17','2021-06-02',6000,1,'2021-05-17 14:17:03','2021-06-02 11:00:35'),(25,1,3,1,0,'2021-05-22','2021-08-10',3881,2,'2021-05-22 18:55:14','2021-08-10 14:48:39'),(26,2,18,11,0,'2021-07-19',NULL,2600,1,'2021-07-19 17:30:54','2021-07-19 17:30:54'),(27,1,19,6,0,'2021-07-19','2021-07-19',5005,2,'2021-07-19 18:04:27','2021-07-19 18:07:34'),(28,1,20,7,0,'2021-07-19','2021-09-01',4500,2,'2021-07-19 18:42:32','2021-09-17 15:29:38'),(29,1,21,18,0,'2021-07-19','2021-08-07',3600,2,'2021-07-19 18:47:18','2021-08-07 12:05:27'),(30,1,22,6,0,'2021-07-19','2021-07-20',5005,2,'2021-07-19 18:52:07','2021-07-20 06:09:10'),(31,1,23,8,0,'2021-07-20','2021-08-07',4700,2,'2021-07-20 05:21:42','2021-08-07 16:19:26'),(32,1,24,4,0,'2021-07-20',NULL,8000,1,'2021-07-20 05:47:51','2021-07-20 05:47:51'),(33,1,22,6,0,'2021-07-20','2021-08-06',4500,2,'2021-07-20 06:09:10','2021-08-06 19:26:29'),(34,1,25,34,0,'2021-07-24','2021-08-07',1000,2,'2021-07-20 12:42:38','2021-08-07 16:20:08'),(35,1,26,36,0,'2021-07-24','2021-08-07',1000,2,'2021-07-20 12:43:43','2021-08-07 16:29:20'),(36,1,27,13,0,'2021-07-20','2021-07-24',5699,2,'2021-07-20 12:56:52','2021-07-24 13:09:58'),(37,1,28,2,0,'2021-07-20',NULL,2400,1,'2021-07-20 13:02:01','2021-07-20 13:02:01'),(38,1,29,25,0,'2021-07-20','2021-07-20',2500,2,'2021-07-20 13:03:48','2021-07-20 13:13:48'),(39,1,29,25,0,'2021-07-20','2021-07-20',2800,2,'2021-07-20 13:13:48','2021-07-20 13:14:35'),(40,1,29,25,0,'2021-07-20',NULL,2800,1,'2021-07-20 13:14:35','2021-07-20 13:14:35'),(41,1,30,3,0,'2021-07-20','2021-08-07',3567,2,'2021-07-20 13:16:18','2021-08-07 16:17:01'),(42,1,31,43,0,'2021-07-27','2021-08-07',3500,2,'2021-07-22 11:24:16','2021-08-07 17:41:21'),(43,1,32,38,0,'2021-07-24','2021-08-07',3500,2,'2021-07-22 11:30:09','2021-08-07 16:28:07'),(44,1,33,31,0,'2021-07-24','2021-08-09',5000,2,'2021-07-22 11:32:10','2021-08-09 11:53:07'),(45,1,34,26,0,'2021-07-23','2021-08-07',3000,2,'2021-07-22 11:35:08','2021-08-07 16:17:36'),(46,1,35,37,0,'2021-07-24','2021-08-09',6000,2,'2021-07-22 11:38:34','2021-08-09 13:26:26'),(47,1,36,42,0,'2021-07-26','2021-08-07',5000,2,'2021-07-22 11:43:59','2021-08-07 16:26:48'),(48,1,37,40,0,'2021-07-26','2021-08-07',5000,2,'2021-07-22 11:45:53','2021-08-07 11:48:33'),(49,1,38,35,0,'2021-07-24','2021-08-07',1000,2,'2021-07-22 11:48:07','2021-08-07 17:25:27'),(50,1,39,39,0,'2021-07-26','2021-08-07',5000,2,'2021-07-22 11:49:17','2021-08-07 16:25:30'),(51,1,40,19,0,'2021-07-23','2021-08-07',5000,2,'2021-07-23 16:43:13','2021-08-07 12:05:50'),(52,1,41,27,0,'2021-07-23','2021-07-24',3000,2,'2021-07-23 16:47:23','2021-07-24 13:10:15'),(53,1,42,5,0,'2021-07-24','2021-08-07',5000,2,'2021-07-24 13:01:03','2021-08-07 12:02:05'),(54,1,43,13,0,'2021-07-24','2021-07-29',5699,2,'2021-07-24 13:11:14','2021-07-29 17:57:54'),(55,1,44,27,0,'2021-07-24','2021-08-07',3000,2,'2021-07-24 15:23:24','2021-08-07 11:53:19'),(56,1,45,27,0,'2021-07-24','2021-08-07',3000,2,'2021-07-24 15:25:51','2021-08-07 11:54:29'),(57,1,46,27,0,'2021-07-24','2021-08-07',3000,2,'2021-07-24 15:27:17','2021-08-07 11:45:26'),(58,1,47,27,0,'2021-07-24','2021-08-07',3000,2,'2021-07-24 15:31:55','2021-08-07 11:45:01'),(59,1,48,30,0,'2021-07-24','2021-08-03',6000,2,'2021-07-24 15:46:00','2021-08-03 18:10:00'),(60,1,49,32,0,'2021-07-24','2021-07-29',1000,2,'2021-07-24 16:23:01','2021-07-29 10:32:05'),(61,1,50,33,0,'2021-07-24','2021-07-27',1000,2,'2021-07-24 16:25:15','2021-07-27 09:58:49'),(62,1,51,44,0,'2021-07-26','2021-07-27',3500,2,'2021-07-26 16:42:02','2021-07-27 09:58:45'),(63,1,52,41,0,'2021-07-26','2021-07-27',6500,2,'2021-07-26 16:45:36','2021-07-27 09:58:41'),(64,2,53,46,0,'2021-07-29',NULL,4500,1,'2021-07-27 09:52:34','2021-07-29 10:39:06'),(65,2,54,45,0,'2021-07-29',NULL,4000,1,'2021-07-27 09:53:18','2021-07-29 10:38:06'),(66,1,55,33,0,'2021-07-27','2021-08-07',1000,2,'2021-07-27 09:54:43','2021-08-07 16:23:46'),(67,1,56,41,0,'2021-07-29','2021-08-07',6500,2,'2021-07-29 10:10:29','2021-08-07 16:14:17'),(68,1,57,44,0,'2021-07-29','2021-07-29',3500,2,'2021-07-29 10:23:59','2021-07-29 10:25:08'),(69,1,58,44,0,'2021-07-29','2021-08-07',3500,2,'2021-07-29 10:25:57','2021-08-07 16:22:27'),(70,1,59,32,0,'2021-07-29','2021-08-07',1000,2,'2021-07-29 17:54:40','2021-08-07 14:05:44'),(71,1,60,13,0,'2021-07-29','2021-08-07',5699,2,'2021-07-29 17:57:22','2021-08-07 14:03:19'),(72,1,61,52,0,'2021-07-29','2021-08-07',1200,2,'2021-07-29 18:02:08','2021-08-07 11:42:38'),(73,1,62,53,0,'2021-07-29','2021-08-07',2400,2,'2021-07-29 18:03:10','2021-08-07 13:18:56'),(74,1,63,16,0,'2021-07-01','2021-08-07',5000,2,'2021-07-30 12:46:51','2021-08-07 11:39:39'),(75,1,64,55,0,'2021-07-30','2021-08-03',7000,2,'2021-07-30 14:46:10','2021-08-03 17:24:45'),(76,1,65,54,0,'2021-07-30','2021-08-03',3400,2,'2021-07-30 15:04:13','2021-08-03 16:58:20'),(77,1,66,56,0,'0000-00-00','2021-08-07',2211,2,'2021-07-30 17:54:22','2021-08-07 16:13:14'),(78,1,67,57,0,'2021-06-01','2021-08-07',2211,2,'2021-07-30 17:57:00','2021-08-07 12:58:20'),(79,1,68,60,0,'2021-07-30','2021-08-07',3000,2,'2021-07-30 17:59:01','2021-08-07 12:06:28'),(80,1,69,15,0,'2021-07-30','2021-08-03',6000,2,'2021-07-30 18:01:49','2021-08-03 18:10:34'),(81,1,64,62,0,'2021-08-03','2021-08-07',1233,2,'2021-08-03 17:24:45','2021-08-07 14:02:07'),(82,1,70,55,0,'2021-08-04','2021-08-07',7000,2,'2021-08-04 12:36:39','2021-08-07 15:14:23'),(83,1,71,51,0,'2021-08-04','2021-08-07',1200,2,'2021-08-04 14:54:52','2021-08-07 13:15:11'),(84,1,72,59,0,'2021-08-04','2021-08-07',2345,2,'2021-08-04 16:44:55','2021-08-07 15:13:28'),(85,1,73,58,0,'2021-08-04','2021-08-06',9009,2,'2021-08-04 16:48:20','2021-08-06 19:24:26'),(86,1,74,14,0,'2021-08-04','2021-08-04',6000,2,'2021-08-04 16:58:52','2021-08-04 17:55:23'),(87,1,75,5,0,'2021-08-11',NULL,5000,1,'2021-08-04 17:32:46','2021-08-11 10:11:40'),(88,2,76,47,0,'2021-08-04',NULL,5000,1,'2021-08-04 17:57:17','2021-08-04 17:57:17'),(89,1,77,30,0,'2021-08-04','2021-08-07',6000,2,'2021-08-04 18:42:31','2021-08-07 12:56:49'),(90,2,78,48,0,'2021-08-05',NULL,4000,1,'2021-08-05 16:08:56','2021-08-05 16:08:56'),(91,1,79,14,0,'2021-08-05','2021-08-07',6000,2,'2021-08-05 18:18:58','2021-08-07 16:20:49'),(92,1,80,15,0,'2021-08-06','2021-08-06',6000,2,'2021-08-06 09:54:24','2021-08-06 18:52:11'),(93,1,81,16,0,'2021-08-07','2021-08-07',5000,2,'2021-08-07 12:09:44','2021-08-07 12:54:50'),(94,2,82,49,0,'2021-08-07',NULL,6000,1,'2021-08-07 12:10:43','2021-08-07 12:10:43'),(95,1,83,6,0,'2021-08-07','2021-08-07',5005,2,'2021-08-07 12:28:02','2021-08-07 12:53:27'),(96,1,84,16,0,'2021-08-01','2021-08-07',5000,2,'2021-08-07 14:00:22','2021-08-07 14:01:04'),(97,1,85,16,0,'2021-08-09',NULL,2500,1,'2021-08-09 11:07:46','2021-08-09 11:07:46'),(98,1,86,6,0,'2021-08-09','2021-08-09',5005,2,'2021-08-09 12:41:09','2021-08-09 12:41:58'),(99,1,87,8,0,'2021-08-08','2021-08-09',4700,2,'2021-08-09 12:43:21','2021-08-09 12:44:25'),(100,1,88,62,0,'2021-08-08','2021-08-09',1233,2,'2021-08-09 12:45:27','2021-08-09 12:46:05'),(101,1,89,6,0,'2021-08-09','2021-08-09',5005,2,'2021-08-09 12:50:05','2021-08-09 12:50:20'),(102,1,90,6,0,'2021-08-09','2021-08-09',5005,2,'2021-08-09 12:51:18','2021-08-09 12:52:04'),(103,1,91,60,0,'2021-08-09','2021-08-09',3000,2,'2021-08-09 12:57:35','2021-08-09 13:22:32'),(104,1,92,8,0,'2021-08-09','2021-08-09',4700,2,'2021-08-09 13:27:33','2021-08-09 13:28:32'),(105,1,93,60,0,'2021-08-05','2021-08-09',3000,2,'2021-08-09 13:29:28','2021-08-09 13:30:42'),(106,1,94,6,0,'2021-08-10','2021-08-10',5005,2,'2021-08-10 11:40:27','2021-08-10 14:47:07'),(107,1,95,8,0,'2021-08-10',NULL,4700,1,'2021-08-10 11:40:58','2021-08-10 11:40:58'),(108,1,96,18,0,'2021-08-10','2021-10-16',3600,2,'2021-08-10 11:41:50','2021-10-16 10:58:32'),(109,1,97,50,0,'2021-08-10',NULL,2300,1,'2021-08-10 11:42:04','2021-08-10 11:42:04'),(110,1,98,19,0,'2021-08-10',NULL,5000,1,'2021-08-10 11:42:45','2021-08-10 11:42:45'),(111,1,99,35,0,'2021-08-10',NULL,1000,1,'2021-08-10 11:43:40','2021-08-10 11:43:40'),(112,1,100,6,0,'2021-08-11',NULL,5005,1,'2021-08-11 10:07:32','2021-08-11 10:07:32'),(113,1,101,32,0,'2021-08-11',NULL,1000,1,'2021-08-11 10:09:49','2021-08-11 10:09:49'),(114,1,102,30,0,'2021-08-13','2021-08-20',6000,2,'2021-08-13 17:29:11','2021-08-20 17:17:43'),(115,1,103,9,0,'2021-10-16',NULL,5000,1,'2021-08-13 17:31:12','2021-10-16 11:35:49'),(116,1,104,33,0,'2021-08-28',NULL,1000,1,'2021-08-28 16:27:10','2021-08-28 16:27:10'),(117,1,105,51,0,'2021-08-28',NULL,1200,1,'2021-08-28 16:48:11','2021-08-28 16:48:11'),(118,1,106,41,0,'2021-09-04',NULL,6500,1,'2021-09-04 10:24:57','2021-09-04 10:24:57'),(119,1,107,63,0,'2021-09-04',NULL,5000,1,'2021-09-04 10:28:48','2021-09-04 10:28:48'),(120,1,108,34,0,'2021-09-04','2021-09-12',1000,2,'2021-09-04 10:54:29','2021-09-17 14:49:53'),(121,1,109,13,0,'2021-09-04',NULL,5699,1,'2021-09-04 10:57:22','2021-09-04 10:57:22'),(122,1,110,1,0,'2021-09-04','2021-09-04',3400,2,'2021-09-04 11:19:14','2021-09-17 12:53:23'),(123,1,111,61,0,'2021-09-04',NULL,1200,1,'2021-09-04 11:20:19','2021-09-04 11:20:19'),(124,1,112,3,0,'2021-09-04','2021-08-30',3567,2,'2021-09-04 11:21:13','2021-09-17 12:39:26'),(125,1,113,31,0,'2021-09-04',NULL,5000,1,'2021-09-04 11:22:15','2021-09-04 11:22:15'),(126,1,114,42,0,'2021-09-04',NULL,5000,1,'2021-09-04 12:47:08','2021-09-04 12:47:08'),(127,1,115,36,0,'2021-09-04',NULL,1000,1,'2021-09-04 12:53:27','2021-09-04 12:53:27'),(128,1,116,0,0,'2021-09-04',NULL,0,2,'2021-09-04 13:13:16','2021-09-04 13:13:16'),(129,1,117,43,0,'2021-09-07',NULL,3500,1,'2021-09-07 16:31:54','2021-09-07 16:31:54'),(130,1,118,27,0,'2021-09-08','2021-09-10',3000,2,'2021-09-08 16:01:28','2021-09-17 14:44:56'),(131,1,119,55,0,'2021-09-15','2021-09-17',7000,2,'2021-09-15 14:34:10','2021-09-17 14:40:39'),(132,1,121,15,0,'2021-09-16',NULL,6000,1,'2021-09-16 18:14:24','2021-09-16 18:14:24'),(133,1,124,28,0,'2021-09-05',NULL,5000,1,'2021-09-17 10:43:43','2021-09-17 10:43:43'),(134,1,125,39,0,'2021-09-17',NULL,5000,1,'2021-09-17 10:50:48','2021-09-17 10:50:48'),(135,1,126,26,0,'2021-09-01',NULL,3000,1,'2021-09-17 10:52:07','2021-09-17 10:52:07'),(136,1,127,30,0,'2021-09-17',NULL,6000,1,'2021-09-17 10:54:08','2021-09-17 10:54:08'),(137,1,128,29,0,'2021-09-17',NULL,5000,1,'2021-09-17 10:54:57','2021-09-17 10:54:57'),(138,1,129,57,0,'2021-09-17',NULL,2211,1,'2021-09-17 11:05:38','2021-09-17 11:05:38'),(139,1,130,60,0,'2021-09-17',NULL,3000,1,'2021-09-17 11:05:57','2021-09-17 11:05:57'),(140,1,131,14,0,'2021-09-17',NULL,6000,1,'2021-09-17 11:07:27','2021-09-17 11:07:27'),(141,1,132,62,0,'2021-09-17',NULL,1233,1,'2021-09-17 11:08:57','2021-09-17 11:08:57'),(142,1,133,64,0,'2021-09-17',NULL,1200,1,'2021-09-17 11:13:04','2021-09-17 11:13:04'),(143,1,134,56,0,'2021-09-17','2021-09-17',2211,2,'2021-09-17 11:17:17','2021-09-17 14:41:25'),(144,1,135,58,0,'2021-09-17',NULL,9009,1,'2021-09-17 11:22:26','2021-09-17 11:22:26'),(145,1,136,38,0,'2021-09-17',NULL,3500,1,'2021-09-17 11:23:12','2021-09-17 11:23:12'),(146,1,137,59,0,'2021-09-17','2021-09-17',2345,2,'2021-09-17 11:24:10','2021-09-17 12:24:41'),(147,1,138,40,0,'2021-09-01',NULL,5000,1,'2021-09-17 11:26:41','2021-09-17 11:26:41'),(148,1,139,37,0,'2021-09-17',NULL,5000,1,'2021-09-17 11:30:25','2021-09-17 11:30:25'),(149,1,140,52,0,'2021-09-04','2021-09-17',1200,2,'2021-09-17 11:34:41','2021-09-17 12:24:34'),(150,1,141,44,0,'2021-09-17','2021-09-01',3500,2,'2021-09-17 11:37:06','2021-09-17 12:25:09'),(151,1,142,52,0,'2021-09-04','2021-09-05',1200,2,'2021-09-17 11:50:45','2021-09-17 12:24:08'),(152,1,142,53,0,'2021-09-05','2021-09-12',2400,2,'2021-09-17 12:24:08','2021-09-17 15:08:47'),(153,1,141,59,0,'2021-09-01','2021-09-17',2345,2,'2021-09-17 12:25:09','2021-09-17 15:10:59'),(154,1,112,44,0,'2021-08-30',NULL,3500,1,'2021-09-17 12:39:26','2021-09-17 12:39:26'),(155,1,110,3,0,'2021-09-04','2021-09-17',3567,2,'2021-09-17 12:53:23','2021-09-17 12:54:27'),(156,1,110,1,0,'2021-09-17',NULL,3400,1,'2021-09-17 12:54:27','2021-09-17 12:54:27'),(157,1,143,3,0,'2021-09-18',NULL,3567,1,'2021-09-18 18:17:56','2021-09-18 18:17:56'),(158,1,144,0,0,'2021-09-18',NULL,0,2,'2021-09-18 18:27:25','2021-09-18 18:27:25'),(159,1,145,56,0,'2021-09-21',NULL,2211,1,'2021-09-21 12:38:11','2021-09-21 12:38:11'),(160,1,146,55,0,'2021-09-21',NULL,7000,1,'2021-09-21 12:45:31','2021-09-21 12:45:31'),(161,1,147,7,0,'2021-09-21',NULL,4500,1,'2021-09-21 15:31:37','2021-09-21 15:31:37'),(162,1,148,27,0,'2021-09-21','2021-10-12',3000,2,'2021-09-21 15:32:56','2021-10-16 11:30:51'),(163,1,149,27,0,'2021-09-21',NULL,3000,1,'2021-09-21 15:35:07','2021-09-21 15:35:07'),(164,1,150,59,0,'2021-09-21','2021-10-14',2345,2,'2021-09-21 18:30:22','2021-10-16 11:29:36'),(165,1,151,9,0,'2021-09-21','2021-09-23',5000,2,'2021-09-21 18:40:26','2021-09-23 10:30:48'),(166,1,152,34,0,'2021-09-22','2021-10-16',1000,2,'2021-09-22 16:22:45','2021-10-16 09:53:44'),(167,1,153,52,0,'2020-12-10','2021-09-23',1200,2,'2021-09-22 17:37:20','2021-09-23 10:30:27'),(168,1,154,52,0,'2020-12-10','2020-12-15',1200,2,'2021-09-22 17:43:08','2021-09-22 17:43:37'),(169,1,154,53,0,'2020-12-15','2021-09-23',2400,2,'2021-09-22 17:43:37','2021-09-23 10:30:32'),(170,1,155,52,0,'2020-12-10','2021-09-23',1200,2,'2021-09-22 17:43:41','2021-09-23 10:30:37'),(171,1,156,52,0,'2020-12-10','2021-09-23',1200,2,'2021-09-22 17:46:43','2021-09-23 10:30:43'),(172,1,157,9,0,'2021-09-23','2021-09-23',5000,2,'2021-09-23 10:32:20','2021-09-23 10:34:40'),(173,1,158,9,0,'2021-09-23','2021-10-01',5000,2,'2021-09-23 10:32:43','2021-10-01 05:48:21'),(174,1,159,9,0,'2021-09-23','2021-09-23',5000,2,'2021-09-23 10:33:28','2021-09-23 10:35:26'),(175,1,160,9,0,'2021-09-23','2021-09-23',5000,2,'2021-09-23 10:34:43','2021-09-23 10:34:47'),(176,1,161,9,0,'2021-09-23','2021-09-23',5000,2,'2021-09-23 10:34:49','2021-09-23 10:35:07'),(177,1,162,9,0,'2021-09-23','2021-09-23',5000,2,'2021-09-23 10:35:10','2021-09-23 10:35:18'),(178,1,163,9,0,'2021-09-23','2021-09-23',5000,2,'2021-09-23 10:35:21','2021-09-23 10:35:47'),(179,1,164,9,0,'2021-09-23','2021-10-01',5000,2,'2021-09-23 10:35:28','2021-10-01 05:48:16'),(180,1,165,9,0,'2021-09-23','2021-10-16',5000,2,'2021-09-23 10:45:46','2021-10-16 09:45:52'),(181,1,166,52,0,'2021-09-23','2021-12-06',1200,2,'2021-09-23 10:47:25','2021-12-06 12:42:34'),(182,1,167,53,0,'2021-09-23','2021-10-16',2400,2,'2021-09-23 10:51:05','2021-10-16 09:45:23'),(183,4,168,20,0,'2021-09-23',NULL,5000,1,'2021-09-23 10:54:18','2021-09-23 10:54:18'),(184,4,169,23,0,'2021-09-23',NULL,5400,1,'2021-09-23 10:55:21','2021-09-23 10:55:21'),(185,4,170,22,0,'2021-09-23','2021-10-08',5800,2,'2021-09-23 10:59:00','2021-10-08 17:39:18'),(186,2,171,0,0,'2021-09-23',NULL,0,2,'2021-09-23 23:57:42','2021-09-23 23:57:42'),(187,1,172,0,5,'2021-12-04','2021-12-08',11000,2,'2021-10-06 15:03:39','2021-12-08 17:02:23'),(188,1,173,9,0,'2021-10-07','2021-10-08',5000,2,'2021-10-07 12:08:25','2021-10-08 18:43:57'),(189,4,134,22,0,'2021-10-08',NULL,5800,1,'2021-10-08 18:42:29','2021-10-08 18:42:29'),(190,1,140,9,0,'2021-10-08',NULL,5000,1,'2021-10-08 18:44:13','2021-10-08 18:44:13'),(191,1,174,0,0,'2021-11-13',NULL,0,2,'2021-11-13 18:00:43','2021-11-13 18:00:43'),(192,1,175,0,0,'2021-11-13',NULL,0,2,'2021-11-13 18:18:40','2021-11-13 18:18:40'),(193,1,176,0,0,'2021-11-13',NULL,0,2,'2021-11-13 18:19:50','2021-11-13 18:19:50'),(194,1,177,0,0,'2021-11-13',NULL,0,2,'2021-11-13 18:25:57','2021-11-13 18:25:57'),(195,1,178,27,0,'2021-11-30',NULL,3000,1,'2021-11-13 18:28:03','2021-11-30 17:04:52'),(196,1,179,0,4,'2021-12-04','2021-12-08',12000,2,'2021-11-13 18:29:13','2021-12-08 17:01:36'),(197,1,180,34,0,'2021-11-30',NULL,1000,1,'2021-11-30 16:38:54','2021-11-30 16:38:54'),(198,1,181,18,0,'2021-11-30','2021-12-06',3600,2,'2021-11-30 16:42:21','2021-12-06 11:21:06'),(199,1,182,53,0,'2021-11-30',NULL,2400,1,'2021-11-30 16:44:17','2021-11-30 16:44:17'),(200,1,183,0,0,'2021-12-03','2021-12-06',12000,2,'2021-12-03 18:34:51','2021-12-06 12:22:49'),(201,1,185,0,0,'2021-12-04','2021-12-05',2000,2,'2021-12-04 10:08:33','2021-12-06 12:33:54'),(202,1,186,0,3,'2021-12-04','2021-12-06',15000,2,'2021-12-04 10:22:18','2021-12-06 12:23:04'),(203,1,187,0,6,'2021-12-04','2021-12-06',2000,2,'2021-12-04 10:24:32','2021-12-06 12:22:38'),(204,1,188,0,1,'2021-12-04','2021-12-06',7000,2,'2021-12-04 12:33:00','2021-12-06 12:23:18'),(205,1,190,0,0,'2021-12-04',NULL,0,2,'2021-12-04 15:12:38','2021-12-04 15:12:38'),(206,1,191,0,0,'2021-12-04',NULL,0,2,'2021-12-04 15:14:35','2021-12-04 15:14:35'),(207,1,192,0,3,'2021-12-04','2021-12-06',15000,2,'2021-12-04 15:18:33','2021-12-06 12:23:54'),(208,1,193,0,2,'2021-12-04','2021-12-06',12000,2,'2021-12-04 16:05:44','2021-12-06 11:17:05'),(209,1,193,0,2,'2021-12-06','2021-12-06',13000,2,'2021-12-06 11:17:05','2021-12-06 12:54:35'),(210,1,181,18,0,'2021-12-06',NULL,3700,1,'2021-12-06 11:21:06','2021-12-06 11:21:06'),(211,1,185,0,3,'2021-12-05','2021-12-06',15000,2,'2021-12-06 12:33:54','2021-12-06 12:38:40'),(212,1,185,0,5,'2021-12-06',NULL,11000,1,'2021-12-06 12:38:40','2021-12-06 12:38:40'),(213,1,166,59,0,'2021-12-06','2021-12-06',2345,2,'2021-12-06 12:42:34','2021-12-06 12:58:34'),(214,1,194,0,6,'2021-12-08',NULL,2000,1,'2021-12-07 11:20:31','2021-12-08 17:21:59'),(215,1,192,0,2,'2021-12-07','2021-12-07',12000,2,'2021-12-07 14:30:49','2021-12-07 16:34:08'),(216,1,188,0,4,'2021-12-07',NULL,9000,1,'2021-12-07 14:33:52','2021-12-07 14:33:52'),(217,1,187,0,1,'2021-12-07',NULL,7000,1,'2021-12-07 14:37:51','2021-12-07 14:37:51'),(218,1,195,0,2,'2021-12-08',NULL,12000,1,'2021-12-08 15:45:10','2021-12-08 15:45:10'),(219,1,196,0,7,'2021-12-08',NULL,10000,1,'2021-12-08 17:00:40','2021-12-08 17:00:40'),(220,1,197,0,0,'2021-12-09',NULL,0,2,'2021-12-09 17:17:41','2021-12-09 17:17:41'),(224,1,201,0,8,'2022-01-28',NULL,12000,1,'2022-01-28 11:55:51','2022-01-28 11:55:51'),(225,1,202,0,9,'2022-01-28','2022-01-29',2222,2,'2022-01-28 12:01:46','2022-01-29 09:47:02'),(226,1,203,0,9,'2022-01-29','2022-01-29',2222,2,'2022-01-29 09:58:14','2022-01-29 10:00:21'),(227,1,203,0,10,'2022-01-29',NULL,2222,1,'2022-01-29 10:00:21','2022-01-29 10:00:21'),(228,1,202,0,9,'2022-02-12',NULL,2222,1,'2022-02-12 12:47:42','2022-02-12 12:47:42');
/*!40000 ALTER TABLE `resident_accomdations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resident_details`
--

DROP TABLE IF EXISTS `resident_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `resident_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `room_id` int(11) NOT NULL DEFAULT 0,
  `branch_id` int(11) NOT NULL,
  `bed_id` int(11) NOT NULL DEFAULT 0,
  `flat_id` int(11) NOT NULL DEFAULT 0,
  `registration_date` date NOT NULL,
  `resident_name` varchar(50) NOT NULL,
  `resident_contatct` varchar(50) NOT NULL,
  `gender` enum('1','2') NOT NULL COMMENT '1=male , 2=female',
  `martial_status` enum('0','1','2') NOT NULL COMMENT '1=single,2=married,0=none',
  `address` text NOT NULL,
  `mail_id` text NOT NULL DEFAULT '',
  `district` varchar(50) NOT NULL,
  `state` varchar(50) NOT NULL,
  `dob` date DEFAULT NULL,
  `food_status` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1=yes,2=No',
  `courses` text NOT NULL,
  `organization` varchar(100) NOT NULL,
  `rent` varchar(200) NOT NULL DEFAULT '0',
  `renewal_plan` enum('1','2','3','4') NOT NULL COMMENT '1 = Monthly/ 2= Quartley/ 3= Half Yearly/ 4 = YEarly',
  `release_date` date DEFAULT NULL,
  `total_due` varchar(100) NOT NULL DEFAULT '0',
  `other_charges` int(11) NOT NULL,
  `total_advance` varchar(100) NOT NULL DEFAULT '0',
  `security_amount` varchar(100) NOT NULL DEFAULT '0',
  `status` enum('1','2','3','4') NOT NULL COMMENT '1=active,2=inactive, 3=''Verify Pending'', 4= ''Released''',
  `due_date` date DEFAULT NULL,
  `source` varchar(10) NOT NULL DEFAULT 'web',
  `govt_id` varchar(100) NOT NULL,
  `agreement_date` date DEFAULT NULL,
  `remark` text NOT NULL DEFAULT '',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resident_details`
--

LOCK TABLES `resident_details` WRITE;
/*!40000 ALTER TABLE `resident_details` DISABLE KEYS */;
INSERT INTO `resident_details` VALUES (1,2,1,5,0,'2021-04-29','Testing','11111111111','2','2','test','','Test','Test','2014-05-29','1','12th','Sms School','6788','1','2021-05-02','0',0,'0','0','4','2021-05-13','App','',NULL,'',1,'2021-04-29 00:00:00','2021-05-03 19:28:01'),(2,2,1,4,0,'2021-04-29','Sunil','7596326926','1','1','Jadol','','Udaipur','Rajasthan','1970-01-01','1','','','8000','1','2021-05-20','0',0,'0','0','4','2021-06-14','App','',NULL,'',1,'2021-04-29 00:00:00','2021-04-30 10:01:25'),(3,1,1,1,0,'2021-04-29','Kartik Agarwal','7597824223','1','1','Test address','','Test District','Rajasthan','1970-05-31','1','','','3881','1','2021-08-10','0',0,'0','0','3',NULL,'App','',NULL,'',1,'2021-04-29 00:00:00','2021-08-10 14:48:39'),(4,7,2,12,0,'2021-04-30','Gunjan','9263955444','2','1','Jajput','','Jaipur','Karnataka','1970-05-19','1','Mca','Sms School','2535','1',NULL,'0',0,'465','0','1','2021-06-06','App','',NULL,'',1,'2021-04-30 00:00:00','2021-05-22 16:57:52'),(5,4,1,9,0,'2021-04-30','GUNJAN','5523534341','2','1','sodala','','Jaipur','Maharashtra','2021-04-10','1','98hggh','JNU','5000','1','2021-09-01','0',0,'0','400','4',NULL,'web','',NULL,'',1,'2021-04-30 09:58:29','2021-09-17 15:29:53'),(6,1,1,3,0,'2021-04-30','Krishna Sharma','3543645767','1','2','test','','Test','Test','2014-09-22','1','12th','Sms School','7000','1','2021-05-23','0',0,'0','0','4','2021-06-15','App','',NULL,'',1,'2021-04-30 00:00:00','2021-05-23 22:36:10'),(7,4,1,6,0,'2021-04-30','Gulifer','3543645767','2','2','test','','Test','Test','2014-05-25','1','12th','Sms School','5600','1','2021-05-01','0',0,'0','0','4','2021-05-14','App','',NULL,'',1,'2021-04-30 00:00:00','2021-05-03 19:52:36'),(8,1,1,2,0,'2021-04-30','Final Tester','3333333333','1','1','1 St floor Ganga Heights, SB-154, Tonk Road, Bapu Nagar, Jaipur, Rajasthan','','Port','Manipur','2000-05-25','1','Mbbs','Ru','2400','1','2021-05-05','0',0,'0','0','4','2021-05-10','web','',NULL,'',1,'2021-04-30 10:22:43','2021-05-05 08:27:19'),(11,4,1,7,0,'2021-04-30','kapil','3543645767','2','2','test','','Ererer','Test','2014-09-22','1','12th','Sms School','5600','1','2021-05-01','0',0,'0','0','4','2021-05-14','App','',NULL,'',1,'2021-04-30 00:00:00','2021-04-30 15:50:01'),(12,4,1,7,0,'2021-04-30','Suraj','9335695949','1','1','Policewale k saamne','','Udaipur','Rajasthan','1970-05-21','1','','','5634','1','2021-07-19','0',0,'0','2000','4',NULL,'App','',NULL,'',1,'2021-04-30 00:00:00','2021-07-19 18:31:49'),(13,2,1,13,0,'2021-04-30','Vikas','3695686979','1','1','Sukaridya circle','','Udaipur','Rajasthan','1968-05-25','1','B.Tech','Zucol','6000','1','2021-06-02','0',0,'0','100','4',NULL,'App','',NULL,'',1,'2021-04-30 00:00:00','2021-06-02 11:23:34'),(14,7,2,10,0,'2021-04-30','Jivika','5523534341','1','1','B-41 Ganesh','','JAMMU','Maharashtra','2021-05-25','1','Sdsdsadsa','','2500','1','0000-00-00','1500',0,'0','0','1','2021-08-19','web','',NULL,'',1,'2021-04-30 17:24:23','2021-07-19 17:23:32'),(15,2,1,5,0,'2021-05-04','Jeeshan','3625147896','1','2','Pratap nagar','','Jaipur','Rajasthan','1998-05-20','1','Job','Zucol','5000','1','2021-07-23','0',0,'0','0','4',NULL,'App','',NULL,'',1,'2021-05-04 00:00:00','2021-07-23 17:09:22'),(16,1,1,2,0,'2021-05-04','Test2','1231111111','1','1','udaipur','','Udaipur','Rajasthan','1990-05-25','1','Job','Zucol','2400','1','2021-05-14','400',0,'0','0','4','2021-06-04','web','',NULL,'',1,'2021-05-04 15:35:48','2021-05-14 07:17:47'),(17,4,1,8,0,'2021-05-14','Wasim','3959484676','1','1','Near gurjar ki thadi underpass, sultan nagar','','Jaipur','Rajasthan','2005-05-31','1','','','4700','1','2021-07-19','0',0,'0','5000','4',NULL,'App','',NULL,'',1,'2021-05-14 00:00:00','2021-07-19 18:26:49'),(18,7,2,11,0,'2021-07-19','Komal','6789373232','2','2','sodala','','Rajasthan','Arunachal Pradesh','2021-07-09','1','Generalism','','2600','1',NULL,'1600',0,'0','0','1','2021-08-27','web','sfsdg3343Ffgfd',NULL,'',1,'2021-07-19 17:30:54','2021-07-19 17:30:54'),(19,4,1,6,0,'2021-07-19','Ritu','7888899999','1','1','Ghdjdhdhd','','Test','Assam','2021-07-17','1','','','5005','1','2021-07-19','0',0,'0','0','4',NULL,'url','Fshheheje',NULL,'',1,'2021-07-19 18:04:27','2021-07-19 18:07:34'),(20,4,1,7,0,'2021-07-19','Manav','9999999999','1','2','jaipur','','Jaipur','Arunachal Pradesh','2021-07-13','1','Mca','','4500','1','2021-09-01','0',0,'0','6000','4',NULL,'web','dsadsa',NULL,'',1,'2021-07-19 18:42:32','2021-09-17 15:29:38'),(21,6,1,18,0,'2021-07-19','Test Test','5523534341','2','1','sodala','','JAMMU','Arunachal Pradesh','2021-07-06','1','','','3600','1','2021-08-07','0',0,'0','4000','4',NULL,'web','dsadsa',NULL,'',1,'2021-07-19 18:47:18','2021-08-07 12:05:27'),(22,4,1,6,0,'2021-07-19','Tina','7666666777','1','1','Ghhjjjjx','','Hhjj','Chhattisgarh','2021-07-09','1','Ghu','','4500','1','2021-08-06','0',0,'0','2000','4',NULL,'url','Juyy55gff',NULL,'',1,'2021-07-19 18:52:07','2021-08-06 19:26:29'),(23,4,1,8,0,'2021-07-20','Anish','8653166495','1','2','Test address','','','Rajasthan',NULL,'1','','','4700','1','2021-08-07','0',0,'0','0','4',NULL,'App','74774bi3646 83647','2021-07-22','',1,'2021-07-20 00:00:00','2021-08-07 16:19:26'),(24,2,1,4,0,'2021-07-20','Sachin','6956436565','1','0','Mumbai','','','Haryana',NULL,'1','','','8000','1',NULL,'0',0,'0','3000','1','2021-11-21','App','83 847 28747',NULL,'',1,'2021-07-20 00:00:00','2021-10-21 18:00:30'),(25,16,1,34,0,'2021-07-20','gunjan','1111111111','1','1','sodala','','','',NULL,'1','','','1000','1','2021-08-07','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-07-20 12:42:38','2021-08-07 16:20:08'),(26,16,1,36,0,'2021-07-20','Chandan','5523534341','1','1','sodala','','','',NULL,'1','','','1000','1','2021-08-07','0',0,'0','0','4',NULL,'url','','2021-07-22','',1,'2021-07-20 12:43:43','2021-08-07 16:29:20'),(27,2,1,13,0,'2021-07-20','Piyush Sharma','1111111111','1','1','Nagaland','','','',NULL,'1','','','5699','1','2021-07-24','0',0,'0','0','4','2021-08-19','web','',NULL,'',1,'2021-07-20 12:56:52','2021-07-24 13:09:58'),(28,1,1,2,0,'2021-07-20','Gogi Mishra','5523534341','1','1','jaipur','','','',NULL,'1','','','2400','1',NULL,'0',0,'0','10000','1','2021-11-19','web','',NULL,'',1,'2021-07-20 13:02:01','2021-11-16 10:28:25'),(29,1,1,25,0,'2021-07-20','Himanshu','2314124214','1','1','sodala','','','',NULL,'1','','','2800','1',NULL,'0',0,'0','1000','1','2021-11-24','web','',NULL,'',1,'2021-07-20 13:03:48','2021-11-16 14:43:19'),(30,1,1,3,0,'2021-07-20','Pears','4129429149','1','0','jaipur','','','',NULL,'1','','','3567','1','2021-08-07','0',0,'0','0','4',NULL,'web','','2021-11-23','',1,'2021-07-20 13:16:18','2021-08-07 16:17:01'),(31,24,1,43,0,'2021-07-22','Pinnu','9999999999','2','1','sodala','','','','2021-07-22','1','','','3500','1','2021-08-07','0',0,'0','5000','4',NULL,'url','',NULL,'',1,'2021-07-22 11:24:16','2021-08-07 17:41:21'),(32,24,1,38,0,'2021-07-22','Martha','6860798098','1','0','zdxgfhjkl','','','',NULL,'1','','','3500','1','2021-08-07','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-07-22 11:30:09','2021-08-07 16:28:07'),(33,16,1,31,0,'2021-07-22','Minnu','0000000000','1','0','sodala','','','',NULL,'1','','','5000','1','2021-08-09','0',0,'0','5000','4',NULL,'url','',NULL,'',1,'2021-07-22 11:32:10','2021-08-09 11:53:07'),(34,25,1,26,0,'2021-07-22','Pratyush','8746467882','1','0','14,15 muktanand nagar, Gopalpura Bypass, Near Gopalpura police chowki, Jaipur','','','',NULL,'1','','','3000','1','2021-08-07','0',0,'0','0','4',NULL,'url','sfsdg3343Ffgfd','2021-07-30','',1,'2021-07-22 11:35:08','2021-08-07 16:17:36'),(35,24,1,37,0,'2021-07-22','Tfvhjb','5523534341','1','0','sodala','','','',NULL,'1','','','6000','1','2021-08-09','0',0,'0','3000','4',NULL,'url','',NULL,'',1,'2021-07-22 11:38:34','2021-08-09 13:26:26'),(36,24,1,42,0,'2021-07-22','Manav','5523534341','1','0','jaipur','','','',NULL,'1','','','5000','1','2021-08-07','0',0,'0','323','4',NULL,'url','',NULL,'',1,'2021-07-22 11:43:59','2021-08-07 16:26:48'),(37,24,1,40,0,'2021-07-22','Gjsdas','2253434545','1','0','fzfdzf','','','',NULL,'1','','','5000','1','2021-08-07','0',0,'0','5000','4',NULL,'url','','2021-10-23','',1,'2021-07-22 11:45:53','2021-08-07 11:48:33'),(38,16,1,35,0,'2021-07-22','Test Test','2324354365','1','0','jaipur','','','',NULL,'1','','','1000','1','2021-08-07','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-07-22 11:48:07','2021-08-07 17:25:27'),(39,24,1,39,0,'2021-07-22','Gudzdfd','6463563463','1','0','sfddd','','','',NULL,'1','','','5000','1','2021-08-07','0',0,'0','1000','4',NULL,'url','',NULL,'',1,'2021-07-22 11:49:17','2021-08-07 16:25:30'),(40,8,1,19,0,'2021-07-23','Test Tenant','9694212650','1','0','Adarsh Nagar Jaipur','','','',NULL,'1','','','5000','1','2021-08-07','0',0,'0','0','4',NULL,'App','Qwertyui','2021-10-23','',1,'2021-07-23 00:00:00','2021-08-07 12:05:50'),(41,25,1,27,0,'2021-07-23','Test Tenant 2','9694215689','1','0','Adarsh Nagar Jaipur','','','',NULL,'1','','','3000','1','2021-07-24','0',0,'0','0','4','2021-08-22','App','Uytrewq','2021-10-23','',1,'2021-07-23 00:00:00','2021-07-24 13:10:15'),(42,2,1,5,0,'2021-07-24','Jeenu','3843491414','1','0','jaipur','','','','2021-04-28','1','','','5000','1','2021-08-07','0',0,'0','0','4',NULL,'web','','2021-07-24','',1,'2021-07-24 13:01:03','2021-08-07 12:02:05'),(43,2,1,13,0,'2021-07-24','Vinay Sharma','4344223423','1','0','guhati','','','',NULL,'1','','','5699','1','2021-07-29','0',0,'0','0','4','2021-08-23','web','','2021-10-24','',1,'2021-07-24 13:11:14','2021-07-29 17:57:54'),(44,25,1,27,0,'2021-07-24','Tenant Test','9696852547','1','0','Aadarsh nagar','','','',NULL,'1','','','3000','1','2021-08-07','0',0,'0','0','4',NULL,'App','Qwerty','2021-10-24','',1,'2021-07-24 00:00:00','2021-08-07 11:53:19'),(45,25,1,27,0,'2021-07-24','Tenant Test','9696852547','1','0','Aadarsh nagar','','','',NULL,'1','','','3000','1','2021-08-07','0',0,'0','0','4',NULL,'App','Qwerty','2021-10-24','',1,'2021-07-24 00:00:00','2021-08-07 11:54:29'),(46,25,1,27,0,'2021-07-24','Tenant Test','9696852547','1','0','Aadarsh nagar','','','',NULL,'1','','','3000','1','2021-08-07','0',0,'0','0','4',NULL,'App','Qwerty','2021-10-24','',1,'2021-07-24 00:00:00','2021-08-07 11:45:26'),(47,25,1,27,0,'2021-07-24','Tenant 2','9685741258','1','0','Adarsh nagar','','','',NULL,'1','','','3000','1','2021-08-07','0',0,'0','0','4',NULL,'App','Qwer1234','2021-09-24','',1,'2021-07-24 00:00:00','2021-08-07 11:45:01'),(48,26,1,30,0,'2021-07-24','Bhavi Ka','6868959656','2','0','Address','','','',NULL,'1','','','6000','1','2021-08-03','0',0,'0','0','4',NULL,'App','8477472',NULL,'',1,'2021-07-24 00:00:00','2021-08-03 18:10:00'),(49,16,1,32,0,'2021-07-24','Yogita','6468668686','2','0','Test','','','',NULL,'1','','','1000','1','2021-07-29','0',0,'0','0','4','2021-08-23','App','4655',NULL,'',1,'2021-07-24 00:00:00','2021-07-29 10:32:05'),(50,16,1,33,0,'2021-07-24','Yogita','6468668686','2','0','Test','','','',NULL,'1','','','1000','1','2021-07-27','0',0,'0','0','4',NULL,'App','4655',NULL,'',1,'2021-07-24 00:00:00','2021-07-27 09:58:49'),(51,24,1,44,0,'2021-07-26','Ritu Sharma','1234567767','1','0','udaipur','','','','2021-07-11','1','','','3500','1','2021-07-27','0',0,'0','1000','4',NULL,'web','',NULL,'',1,'2021-07-26 16:42:02','2021-07-27 09:58:45'),(52,24,1,41,0,'2021-07-26','Manyata','2321414143','1','0','ujjain','','','',NULL,'1','','','6500','1','2021-07-27','0',0,'0','1000','4',NULL,'web','',NULL,'',1,'2021-07-26 16:45:36','2021-07-27 09:58:41'),(53,28,2,46,0,'2021-07-27','Jeetu','8888888888','1','0','Ggjjj','','','',NULL,'1','','','4500','1',NULL,'0',0,'0','3000','1','2021-08-26','url','',NULL,'',1,'2021-07-27 09:52:34','2021-07-29 10:39:06'),(54,27,2,45,0,'2021-07-27','Test Person','1321432423','1','0','sodala','','','',NULL,'1','','','4000','1',NULL,'0',0,'0','0','1','2021-08-26','url','',NULL,'',1,'2021-07-27 09:53:18','2021-07-29 10:38:06'),(55,16,1,33,0,'2021-07-27','Vaisali','3333333333','1','0','jaipur','','','',NULL,'1','','','1000','1','2021-08-07','0',0,'0','1000','4',NULL,'url','',NULL,'',1,'2021-07-27 09:54:43','2021-08-07 16:23:46'),(56,24,1,41,0,'2021-07-29','Ritu Kala','1224242322','1','0','nagor','','','','2020-05-04','1','','','6500','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-07-29 10:10:29','2021-08-07 16:14:17'),(57,24,1,44,0,'2021-07-29','Test Test','5523534341','1','0','jaipur','','','',NULL,'1','','','3500','1','2021-07-29','0',0,'0','0','4','2021-08-28','web','',NULL,'',1,'2021-07-29 10:23:59','2021-07-29 10:25:08'),(58,24,1,44,0,'2021-07-29','Jim Bim','9999999999','1','0','jaipur','','','',NULL,'1','','','3500','1','2021-08-07','0',0,'0','1000','4',NULL,'web','',NULL,'',1,'2021-07-29 10:25:57','2021-08-07 16:22:27'),(59,16,1,32,0,'2021-07-29','Mansi 2','4993846276','2','0','Udaipur','','','',NULL,'1','','','1000','1','2021-08-07','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-07-29 17:54:40','2021-08-07 14:05:44'),(60,2,1,13,0,'2021-07-29','Mansi 3','9889898989','1','0','jaipur','','','',NULL,'1','','','5699','1','2021-08-07','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-07-29 17:57:22','2021-08-07 14:03:19'),(61,30,1,52,0,'2021-07-29','Mansi 5','6567575756','1','0','jaipur','','','',NULL,'1','','','1200','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-07-29 18:02:08','2021-08-07 11:42:38'),(62,30,1,53,0,'2021-07-29','Mansi 6','8732894768','1','0','jaipur','','','','2021-07-28','1','','','2400','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-07-29 18:03:10','2021-08-07 13:18:56'),(63,5,1,16,0,'2021-07-01','Sfdfa','5523534341','1','0','aasa','','','',NULL,'1','','','5000','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-07-30 12:46:51','2021-08-07 11:39:39'),(64,3,1,62,0,'2021-07-30','Gunjan Bhatra','9999999999','1','0','sodala','','','',NULL,'1','','','1233','1','2021-08-07','0',0,'0','60','4',NULL,'url','',NULL,'',1,'2021-07-30 14:46:10','2021-08-07 14:02:07'),(65,1,1,54,0,'2021-07-30','Umma Bharti','9999999999','1','0','sodala','','','',NULL,'1','','','3400','1','2021-08-03','0',0,'0','0','4','2021-08-20','web','',NULL,'',1,'2021-07-30 15:04:13','2021-08-03 16:58:20'),(66,1,1,56,0,'0000-00-00','Tete','3533535656','1','0','Test','','','',NULL,'1','','','2211','1','2021-08-07','0',0,'0','0','4',NULL,'App','7',NULL,'',1,'2021-07-30 00:00:00','2021-08-07 16:13:14'),(67,1,1,57,0,'2021-06-01','Minu','9999999999','1','0','sodala','','','','2017-02-28','1','','','2211','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-07-30 17:57:00','2021-08-07 12:58:20'),(68,3,1,60,0,'2021-07-30','Test2 Ddddddd Test2','3333333333','1','0','sodala','','','',NULL,'1','','','3000','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-07-30 17:59:01','2021-08-07 12:06:28'),(69,3,1,15,0,'2021-07-30','Test Test','9999999999','1','0','jaipur','','','',NULL,'1','','','6000','1','2021-08-03','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-07-30 18:01:49','2021-08-03 18:10:34'),(70,1,1,55,0,'2021-08-04','Jinal','9999999999','1','1','sodala','','','',NULL,'1','','','7000','1','2021-08-07','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-08-04 12:36:39','2021-08-07 15:14:23'),(71,4,1,51,0,'2021-08-04','Kimaya','2899232322','1','0','ujjain','','','',NULL,'1','','','1200','1','2021-08-07','0',0,'0','2000','4',NULL,'web','',NULL,'',1,'2021-08-04 14:54:52','2021-08-07 13:15:12'),(72,1,1,59,0,'2021-08-04','TinKy','9999999999','1','0','jaipur','','','',NULL,'1','','','2345','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-04 16:44:55','2021-08-07 15:13:28'),(73,1,1,58,0,'2021-08-04','Gunjan','9999999999','1','0','sodala','','','',NULL,'1','','','9009','1','2021-08-06','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-04 16:48:20','2021-08-06 19:24:26'),(74,3,1,14,0,'2021-08-04','Chanchal','5523534341','1','0','sodala','','','',NULL,'1','','','6000','1','2021-08-04','0',0,'0','100','4',NULL,'url','',NULL,'',1,'2021-08-04 16:58:52','2021-08-04 17:55:23'),(75,2,1,5,0,'2021-08-04','Umma Bharti','5523534341','2','0','sodala','','','',NULL,'1','','','5000','1',NULL,'13000',0,'0','200','1','2021-11-18','url','',NULL,'',1,'2021-08-04 17:32:46','2021-11-16 10:59:30'),(76,28,2,47,0,'2021-08-04','Test Sohil','3645734657','1','0','Dholpur k laddu','','','',NULL,'1','','','5000','1',NULL,'0',0,'2000','1200','1','2021-09-01','web','',NULL,'',1,'2021-08-04 17:57:17','2021-08-04 17:58:02'),(77,26,1,30,0,'2021-08-04','Dummy','4765786357','1','0','jaipur','','','',NULL,'1','','','6000','1','2021-08-07','0',0,'0','1200','4',NULL,'web','',NULL,'',1,'2021-08-04 18:42:31','2021-08-07 12:56:49'),(78,27,2,48,0,'2021-08-05','Preeto','9999999999','1','0','jaipur','','','',NULL,'1','','','4000','1',NULL,'0',0,'0','0','1','2021-09-04','web','','2022-06-05','',1,'2021-08-05 16:08:56','2021-08-05 16:08:56'),(79,3,1,14,0,'2021-08-05','Ashok JI','8247365978','1','0','Jaipur Rajasthan','','','',NULL,'1','','','6000','1','2021-08-07','0',0,'0','1200','4',NULL,'web','',NULL,'',1,'2021-08-05 18:18:58','2021-08-07 16:20:49'),(80,3,1,15,0,'2021-08-06','New Test','5523534341','1','0','Udaipur','','','',NULL,'1','','','6000','1','2021-08-06','0',0,'0','3000','4','2021-09-06','web','','2022-02-06','',1,'2021-08-06 09:54:24','2021-08-06 18:52:11'),(81,5,1,16,0,'2021-08-07','Imti','9999999999','1','0','jaipur','','','',NULL,'1','','','5000','1','2021-08-07','0',0,'0','1000','4',NULL,'web','',NULL,'',1,'2021-08-07 12:09:44','2021-08-07 12:54:50'),(82,29,2,49,0,'2021-08-07','Sohil','3333333333','1','0','udaipur','','','',NULL,'1','','','6000','1',NULL,'3000',0,'0','300','1','2021-09-07','web','',NULL,'',1,'2021-08-07 12:10:43','2021-09-21 18:25:18'),(83,4,1,6,0,'2021-08-07','Mina','5523534341','1','0','sodala','','','',NULL,'1','','','5005','1','2021-08-07','0',0,'0','1000','4',NULL,'web','',NULL,'',1,'2021-08-07 12:28:02','2021-08-07 12:53:27'),(84,5,1,16,0,'2021-08-01','Himali','2422141222','1','0','sdfdfd','','','',NULL,'1','','','5000','1','2021-08-07','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-07 14:00:22','2021-08-07 14:01:04'),(85,5,1,16,0,'2021-08-09','Charu','2222222222','1','0','sdfdfd','charu@gmail.com','','',NULL,'1','','','2500','1',NULL,'0',0,'0','1000','1','2021-12-03','web','',NULL,'',1,'2021-08-09 11:07:46','2021-11-16 10:37:13'),(86,4,1,6,0,'2021-08-09','Test45','7534523462','1','0','jaipur','','','',NULL,'1','','','5005','1','2021-08-09','0',0,'0','1300','4',NULL,'web','',NULL,'',1,'2021-08-09 12:41:09','2021-08-09 12:41:58'),(87,4,1,8,0,'2021-08-08','Test46','3857364592','1','0','jaipur','','','',NULL,'1','','','4700','1','2021-08-09','0',0,'0','1500','4',NULL,'web','',NULL,'',1,'2021-08-09 12:43:21','2021-08-09 12:44:25'),(88,3,1,62,0,'2021-08-08','Test47','6753475324','1','0','jaipur','','','',NULL,'1','','','1233','1','2021-08-09','0',0,'0','1200','4',NULL,'web','',NULL,'',1,'2021-08-09 12:45:27','2021-08-09 12:46:05'),(89,4,1,6,0,'2021-08-09','Test68','8347657843','1','0','jaipur','','','',NULL,'1','','','5005','1','2021-08-09','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-09 12:50:05','2021-08-09 12:50:20'),(90,4,1,6,0,'2021-08-09','Test669','8342756784','1','0','jaipur','','','',NULL,'1','','','5005','1','2021-08-09','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-09 12:51:18','2021-08-09 12:52:04'),(91,3,1,60,0,'2021-08-09','Test78','8365734687','1','0','jaipur','','','',NULL,'1','','','3000','1','2021-08-09','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-09 12:57:35','2021-08-09 13:22:32'),(92,4,1,8,0,'2021-08-09','Sohil Bhai','8645732465','1','0','jaipur','','','',NULL,'1','','','4700','1','2021-08-09','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-09 13:27:33','2021-08-09 13:28:32'),(93,3,1,60,0,'2021-08-05','Sohil Bhai 2','8763478234','1','0','jaipur','','','',NULL,'1','','','3000','1','2021-08-09','0',0,'0','5000','4',NULL,'web','',NULL,'',1,'2021-08-09 13:29:28','2021-08-09 13:30:42'),(94,4,1,6,0,'2021-08-10','Sohil 1','4265762398','1','0','Jaipour','','','',NULL,'1','','','5005','1','2021-08-10','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-08-10 11:40:27','2021-08-10 14:47:07'),(95,4,1,8,0,'2021-08-10','Sohil 2','4897583465','1','0','Jaipur','','','',NULL,'1','','','4700','1',NULL,'',0,'1300','1400','1','2021-09-09','web','',NULL,'',1,'2021-08-10 11:40:58','2021-08-10 11:41:28'),(96,6,1,18,0,'2021-08-10','Binu','9999999999','1','0','sodala','','','',NULL,'1','','','3600','1','2021-10-16','0',0,'0','1000','4',NULL,'web','',NULL,'',1,'2021-08-10 11:41:50','2021-10-16 10:58:32'),(97,3,1,50,0,'2021-08-10','Sohil 3','4785362523','1','0','Jaipur','','','','2021-08-10','1','','','2300','1',NULL,'1100',0,'0','1300','1','2021-11-02','web','',NULL,'',1,'2021-08-10 11:42:04','2021-10-06 12:55:31'),(98,8,1,19,0,'2021-08-10','Arun','5523534341','1','0','jaipur','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','5000','1','2021-10-22','web','',NULL,'',1,'2021-08-10 11:42:45','2021-10-05 14:03:18'),(99,16,1,35,0,'2021-08-10','Shefu','9999999999','1','0','sodala','','','',NULL,'1','','','1000','1',NULL,'990',0,'0','2000','1','2022-01-30','web','',NULL,'',1,'2021-08-10 11:43:40','2022-01-28 12:34:15'),(100,4,1,6,0,'2021-08-11','Gunjan Test','2435353353','1','0','fnmbnmn','','','',NULL,'1','','','5005','1',NULL,'0',0,'0','10000','1','2021-12-03','web','','2022-02-11','',1,'2021-08-11 10:07:32','2021-11-16 11:01:05'),(101,16,1,32,0,'2021-08-11','AsDZFxvb','3444444444','1','0','asrar','','','',NULL,'1','','','1000','1',NULL,'0',0,'200','900','1','2021-08-28','web','','2022-08-11','',1,'2021-08-11 10:09:49','2021-08-21 14:19:51'),(102,26,1,30,0,'2021-08-13','Sohil BEg','4657834658','2','0','Jaipur','','','',NULL,'1','','','6000','1','2021-08-20','0',0,'0','6600.00','4','2021-09-26','App','87346',NULL,'',1,'2021-08-13 00:00:00','2021-09-06 18:21:21'),(103,4,1,9,0,'2021-08-13','Tetest','8475346597','1','0','japur','','','',NULL,'1','','','5000','1',NULL,'3778',0,'0','0','1','2022-01-29','url','',NULL,'',1,'2021-08-13 17:31:12','2022-01-28 12:35:45'),(104,16,1,33,0,'2021-08-28','Mancis','','1','0','','','','',NULL,'1','','','1000','1',NULL,'0',0,'0','0','1','2021-09-27','web','',NULL,'',1,'2021-08-28 16:27:10','2021-08-28 16:27:10'),(105,4,1,51,0,'2021-08-28','Unnati','4344414141','1','0','32e23','','','',NULL,'1','','','1200','1',NULL,'0',0,'0','6000','1','2021-09-27','web','',NULL,'',1,'2021-08-28 16:48:11','2021-09-03 19:21:56'),(108,16,1,34,0,'2021-09-04','I97987','','1','0','','','','',NULL,'1','','','1000','1','2021-09-12','0',0,'0','4000','4',NULL,'web','',NULL,'',1,'2021-09-04 10:54:29','2021-09-17 14:49:53'),(109,2,1,13,0,'2021-09-04','Dsdsds','','1','0','','','','',NULL,'1','','','5699','1',NULL,'0',0,'0','4000','1','2021-10-04','web','',NULL,'',1,'2021-09-04 10:57:22','2021-09-04 10:57:22'),(110,1,1,1,0,'2021-09-04','Rrerdfdf','','2','0','','','','',NULL,'1','','','3400','1',NULL,'0',0,'0','3000','1','2021-11-25','web','',NULL,'',1,'2021-09-04 11:19:14','2021-11-16 11:10:18'),(111,2,1,61,0,'2021-09-04','Dsdsds','','2','0','','','','',NULL,'1','','','1200','1',NULL,'0',0,'0','2000','1','2021-11-30','web','',NULL,'',1,'2021-09-04 11:20:19','2021-11-16 11:45:23'),(112,24,1,44,0,'2021-09-04','Sfdgf','','2','0','','','','',NULL,'1','','','3500','1',NULL,'0',0,'0','0','1','2021-10-04','web','',NULL,'',1,'2021-09-04 11:21:13','2021-09-17 12:39:26'),(113,16,1,31,0,'2021-09-04','Dsfghm','','2','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','0','1','2021-10-29','web','',NULL,'',1,'2021-09-04 11:22:15','2021-10-04 19:37:22'),(114,24,1,42,0,'2021-09-04',';xszdxfgchvjbklm','','1','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','0','2','2021-12-12','web','',NULL,'',1,'2021-09-04 12:47:08','2021-11-16 12:28:47'),(115,16,1,36,0,'2021-09-04','D Mart','','2','1','','','','','2020-09-03','1','','','1000','1',NULL,'0',0,'0','0','1','2021-10-04','web','',NULL,'',1,'2021-09-04 12:53:27','2021-09-11 17:45:37'),(116,0,1,0,0,'2021-09-04','Mansi  New','7777777777','1','0','gghbvv','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2021-10-04','url','',NULL,'',0,'2021-09-04 13:13:16','2021-09-04 13:13:16'),(117,24,1,43,0,'2021-09-07','Json','4333333333','1','0','','','Port','Assam',NULL,'1','','','3500','1',NULL,'0',0,'0','0','1','2021-10-07','web','',NULL,'',1,'2021-09-07 16:31:54','2021-09-11 17:43:02'),(118,25,1,27,0,'2021-09-08','Hfcgvhjk','45345435','1','0','Jaipur','','Jaipur','','2021-09-09','1','','SMS','3000','1','2021-09-10','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-09-08 16:01:28','2021-09-17 14:44:56'),(119,1,1,55,0,'2021-09-15','Test Reg','9658234578','1','0','Barkat nagar','','','',NULL,'1','','','7000','1','2021-09-17','0',0,'0','0','4',NULL,'App','Pan',NULL,'',1,'2021-09-15 00:00:00','2021-09-17 14:40:39'),(120,24,1,40,0,'2021-09-16','Anjana Sharma','5523534341','1','0','','','','','2021-09-15','1','','','5000','1',NULL,'0',0,'0','0','1','2021-10-16','web','',NULL,'',1,'2021-09-16 18:10:38','2021-09-16 18:10:38'),(121,3,1,15,0,'2021-09-16','Anjana Sharma','2442424242','1','0','','','','','2021-09-14','1','','','6000','1',NULL,'0',0,'0','0','1','2021-10-16','web','',NULL,'',1,'2021-09-16 18:14:24','2021-09-16 18:14:24'),(122,3,1,60,0,'2021-09-16','Sdhfjnksd','','1','0','','','','',NULL,'1','','','3000','1',NULL,'0',0,'0','0','1','2021-10-16','web','',NULL,'',1,'2021-09-16 18:22:20','2021-09-16 18:22:20'),(123,5,1,64,0,'2021-09-16','Asdfdbnb N','','1','0','','','','',NULL,'1','','','1200','1',NULL,'0',0,'0','0','1','2021-10-16','web','',NULL,'',1,'2021-09-16 18:25:35','2021-09-16 18:25:35'),(124,25,1,28,0,'2021-09-05','Himali Singh','7890281311','1','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','0','1','2021-10-17','web','','2021-11-05','',1,'2021-09-17 10:43:43','2021-09-17 10:43:43'),(125,24,1,39,0,'2021-09-17','Gunjan Testing','3434324324','1','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','0','1','2021-10-17','web','',NULL,'',1,'2021-09-17 10:50:48','2021-09-17 10:50:48'),(126,25,1,26,0,'2021-09-01','Sfdgnb','','1','0','','','','',NULL,'1','','','3000','1',NULL,'0',0,'0','0','1','2021-10-17','web','','2022-02-01','',1,'2021-09-17 10:52:07','2021-09-17 10:52:07'),(127,26,1,30,0,'2021-09-17','Cxcxcx','','1','0','','','','',NULL,'1','','','6000','1',NULL,'0',0,'0','0','1','2021-10-17','web','','2021-11-17','',1,'2021-09-17 10:54:08','2021-09-17 10:54:08'),(128,25,1,29,0,'2021-09-17','Ssdbsd','2323233232','1','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','2000','1','2021-10-17','web','',NULL,'',1,'2021-09-17 10:54:57','2021-09-17 10:54:57'),(129,1,1,57,0,'2021-09-17','Jinni','3232222222','1','0','','','','',NULL,'1','','','2211','1',NULL,'0',0,'0','0','1','2021-10-17','web','',NULL,'',1,'2021-09-17 11:05:38','2021-09-17 11:05:38'),(130,3,1,60,0,'2021-09-17','Dsfs','','1','0','','','','',NULL,'1','','','3000','1',NULL,'0',0,'0','2000','1','2021-10-17','web','',NULL,'',1,'2021-09-17 11:05:57','2021-09-17 11:05:57'),(131,3,1,14,0,'2021-09-17','Sfdg','','1','0','','','','',NULL,'1','','','6000','1',NULL,'0',0,'0','1185849686','1','2021-10-17','web','',NULL,'',1,'2021-09-17 11:07:27','2021-09-23 21:48:14'),(132,3,1,62,0,'2021-09-17','Dsdsd','','1','0','','','','',NULL,'1','','','1233','1',NULL,'0',0,'0','322','1','2021-10-17','web','',NULL,'',1,'2021-09-17 11:08:57','2021-09-17 11:08:57'),(133,5,1,64,0,'2021-09-17','Manav Bumrah','','1','0','','','','',NULL,'1','','','1200','1',NULL,'0',0,'0','2000','1','2021-10-17','web','',NULL,'',1,'2021-09-17 11:13:04','2021-09-17 11:13:04'),(134,22,4,22,0,'2021-09-17','Hhiadada','','1','0','','','','',NULL,'1','','','5800','1','2021-09-17','0',0,'0','3000','1',NULL,'web','',NULL,'',1,'2021-09-17 11:17:17','2021-10-08 18:42:29'),(135,1,1,58,0,'2021-09-17','Gunjasa','','1','0','','','','',NULL,'1','','','9009','1',NULL,'0',0,'0','8000','1','2021-10-17','web','',NULL,'',1,'2021-09-17 11:22:26','2021-09-17 11:22:26'),(136,24,1,38,0,'2021-09-17','Dfhdhf','','1','0','','','','',NULL,'1','','','3500','1',NULL,'0',0,'0','0','1','2021-10-17','web','','2021-12-18','',1,'2021-09-17 11:23:12','2021-09-18 10:20:21'),(137,1,1,59,0,'2021-09-17','Dxfchgvjlk;\'','','1','0','','','','',NULL,'1','','','2345','1','2021-09-17','0',0,'0','8000','4',NULL,'web','',NULL,'',1,'2021-09-17 11:24:10','2021-09-17 12:24:41'),(138,24,1,40,0,'2021-09-01','Anshu Pandey','','1','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'500','0','1','2021-11-06','web','','2022-02-20','',1,'2021-09-17 11:26:41','2021-09-18 10:17:43'),(139,24,1,37,0,'2021-09-17','Mansi','','1','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','3000','1','2021-10-28','web','','2021-12-18','',1,'2021-09-17 11:30:25','2021-10-05 12:12:36'),(140,4,1,9,0,'2021-09-04','Vishal Singh','222242232','1','0','','','','',NULL,'1','','','5000','1','2021-09-17','0',0,'0','2000','1',NULL,'web','','2021-12-04','',1,'2021-09-17 11:34:41','2021-10-08 18:44:13'),(141,1,1,59,0,'2021-09-17','Test Resident Test','','1','0','','','','',NULL,'1','','','2345','1','2021-09-17','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-09-17 11:37:06','2021-09-17 15:10:59'),(142,30,1,53,0,'2021-09-04','Vishal Singh','222242232','1','0','','','','',NULL,'1','','','2400','1','2021-09-12','0',0,'0','2000','4',NULL,'web','','2021-12-04','',1,'2021-09-17 11:50:45','2021-09-17 15:08:47'),(143,1,1,3,0,'2021-09-18','Asdfghm,','123456789012345','1','0','','','','',NULL,'1','','','3567','1',NULL,'0',0,'0','0','1','2021-10-18','web','','0000-00-00','',1,'2021-09-18 18:17:56','2021-09-18 18:19:59'),(144,0,1,0,0,'2021-09-18','Gunjan','123456789012345','1','0','adssdsds','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2021-10-18','url','',NULL,'',0,'2021-09-18 18:27:25','2021-09-18 18:27:25'),(145,1,1,56,0,'2021-09-21','Gunjan','9999999999','1','0','','','','',NULL,'1','','','2211','1',NULL,'0',0,'0','10000','1','2021-10-21','web','',NULL,'',1,'2021-09-21 12:38:11','2021-09-21 12:38:11'),(146,1,1,55,0,'2021-09-21','Gunjj','798777777777','1','0','','','','',NULL,'1','','','7000','1',NULL,'4000',0,'0','0','1','2021-10-31','web','',NULL,'',1,'2021-09-21 12:45:31','2021-11-30 17:15:59'),(147,4,1,7,0,'2021-09-21','Guhhhgsd','222222222222222','1','0','','krtk.71@gmail.com','','',NULL,'1','','','4500','1',NULL,'0',0,'0','0','1','2021-10-21','web','',NULL,'',1,'2021-09-21 15:31:37','2021-09-21 15:31:37'),(148,25,1,27,0,'2021-09-21','Lkjhgbfvsdcaxaz','','1','0','','','','',NULL,'1','','','3000','1','2021-10-12','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-09-21 15:32:56','2021-10-16 11:30:51'),(149,25,1,27,0,'2021-09-21','Lkjhgbfvsdcaxaz','','1','0','','','','',NULL,'1','','','3000','1',NULL,'0',0,'0','0','1','2021-10-21','web','',NULL,'',1,'2021-09-21 15:35:07','2021-09-21 15:35:07'),(150,1,1,59,0,'2021-09-21','Suraj','','1','0','','','','',NULL,'1','','','2345','1','2021-10-14','0',0,'0','1000','4',NULL,'web','',NULL,'',1,'2021-09-21 18:30:22','2021-10-16 11:29:36'),(151,4,1,9,0,'2021-09-21','Dfhvjkl','','1','0','','','','',NULL,'1','','','5000','1','2021-09-23','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-09-21 18:40:26','2021-09-23 10:30:48'),(152,16,1,34,0,'2021-09-22','Sakshi','','1','0','','','','',NULL,'1','','','1000','1','2021-10-16','0',0,'0','10','4',NULL,'web','',NULL,'',1,'2021-09-22 16:22:45','2021-10-16 09:53:44'),(165,4,1,9,0,'2021-09-23','Ishu 123','378637232323232','1','0','','','','',NULL,'1','','','5000','1','2021-10-16','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-09-23 10:45:46','2021-10-16 09:45:52'),(166,1,1,59,0,'2021-09-23','Mansoon','232323232323232','1','0','','','','',NULL,'1','','','2345','1','2021-12-06','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-09-23 10:47:25','2021-12-06 12:58:34'),(167,30,1,53,0,'2021-09-23','Manavi Jigar','0901223993999','1','0','','','','',NULL,'1','','','2400','1','2021-10-16','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-09-23 10:51:05','2021-10-16 09:45:23'),(168,18,4,20,0,'2021-09-23','Priyanka','111111111111111','1','0','','','','',NULL,'1','','','5000','1',NULL,'0',0,'0','0','1','2021-10-23','web','',NULL,'',1,'2021-09-23 10:54:18','2021-09-23 10:54:18'),(169,19,4,23,0,'2021-09-23','Priyanka','422323232323323','1','0','','','','',NULL,'1','','','5400','1',NULL,'0',0,'0','0','1','2021-10-23','web','',NULL,'',1,'2021-09-23 10:55:21','2021-09-23 10:55:21'),(170,22,4,22,0,'2021-09-23','Sohil','32323232223','1','0','','','','',NULL,'1','','','5800','1','2021-10-08','0',0,'0','0','4',NULL,'web','',NULL,'',41,'2021-09-23 10:59:00','2021-10-08 17:39:18'),(171,31,2,0,0,'2021-09-23','Anishi','23243534533','2','0','','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2021-10-23','url','',NULL,'',0,'2021-09-23 23:57:42','2021-09-23 23:57:42'),(172,11,1,0,5,'2021-10-06','Testt','324234234324','1','0','','','','',NULL,'1','','','11000','1','2021-12-08','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-10-06 15:03:39','2021-12-08 17:02:23'),(173,4,1,9,0,'2021-10-07','Vish','3435','1','0','','fgghgf@wedfrgt','','',NULL,'1','','','5000','1','2021-10-08','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-10-07 12:08:25','2021-10-08 18:43:57'),(174,0,1,0,0,'2021-11-13','Vishnu Choudhary','232323239808908','1','0','','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2021-12-13','url','',NULL,'',0,'2021-11-13 18:00:43','2021-11-13 18:00:43'),(175,0,1,0,0,'2021-11-13','Gunjan Bhatra','5523534341','1','0','b-41 ganesh path ramnagar sodala jaipur','','','Rajasthan',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2021-12-13','url','',NULL,'',0,'2021-11-13 18:18:40','2021-11-13 18:18:40'),(176,0,1,0,0,'2021-11-13','Dsfdgfhdgfg','4343324234233','1','0','','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2021-12-13','url','',NULL,'',0,'2021-11-13 18:19:50','2021-11-13 18:19:50'),(177,11,1,0,0,'2021-11-13','Gunjan Bhatra','5523534341','1','0','b-41 ganesh path ramnagar sodala jaipur','','','Rajasthan','2021-11-13','1','','Ru','0','1',NULL,'0',0,'0','0','3','2021-12-13','url','sfsdg3343Ffgfd',NULL,'',0,'2021-11-13 18:25:57','2021-11-13 18:25:57'),(178,25,1,27,0,'2021-11-13','Gunjan Bhatra','5523534341','1','0','b-41 ganesh path ramnagar sodala jaipur','','','Rajasthan',NULL,'1','','','3000','1',NULL,'0',0,'0','0','1','2021-12-13','url','',NULL,'',1,'2021-11-13 18:28:03','2021-11-30 17:04:52'),(179,0,1,0,4,'2021-11-13','Dvhsakjlnfkad','234234234234232','1','0','','','','','2021-11-12','1','','','12000','1','2021-12-08','0',0,'0','0','4',NULL,'url','',NULL,'',1,'2021-11-13 18:29:13','2021-12-08 17:01:36'),(180,16,1,34,0,'2021-11-30','Vishnu','8769606271','1','0','','vishnu.choudhary@bthawk.com','','',NULL,'1','','','1000','1',NULL,'0',0,'0','0','1','2021-12-30','web','',NULL,'',1,'2021-11-30 16:38:54','2021-11-30 16:38:54'),(181,6,1,18,0,'2021-11-30','Vishnu','8769606272','2','0','','vishnu.choudhary@bthawk.com','','',NULL,'1','','','3700','1',NULL,'0',0,'0','0','1','2021-12-30','web','',NULL,'',1,'2021-11-30 16:42:21','2021-12-06 11:21:06'),(182,30,1,53,0,'2021-11-30','Vishnu','8769606272','1','0','','','','',NULL,'1','','','2400','1',NULL,'0',0,'0','0','1','2021-12-30','web','',NULL,'',1,'2021-11-30 16:44:17','2021-11-30 16:44:17'),(183,0,1,0,4,'2021-12-03','Mohit Soni','343434343434343','1','0','','','','',NULL,'1','','','12000','1','2021-12-06','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-12-03 18:34:51','2021-12-06 12:22:49'),(184,0,1,0,5,'2021-12-03','Arjun Kangoo','34343434','1','0','','','','',NULL,'1','','','11000','1',NULL,'0',0,'0','0','1','2022-01-02','web','',NULL,'',1,'2021-12-03 18:36:32','2021-12-03 18:36:32'),(185,0,1,0,5,'2021-12-04','Vishnu Sir','334424222329832','2','0','','','','',NULL,'1','','','11000','1',NULL,'0',0,'0','0','1','2022-01-01','web','',NULL,'',1,'2021-12-04 10:08:33','2021-12-06 18:36:27'),(186,0,1,0,3,'2021-12-04','Mira Soni','342432233333333','1','0','','','','',NULL,'1','','','15000','1','2021-12-06','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-12-04 10:22:18','2021-12-06 12:23:04'),(187,0,1,0,1,'2021-12-04','Shlok','443433434343433','1','0','','','','',NULL,'1','','','7000','1','2021-12-06','0',0,'0','0','1','2022-01-30','web','',NULL,'',1,'2021-12-04 10:24:32','2022-01-27 17:56:23'),(188,0,1,0,4,'2021-12-04','Bablu','434343434343434','2','0','','','','',NULL,'1','','','9000','1','2021-12-06','0',0,'0','0','1','2021-11-09','web','',NULL,'',1,'2021-12-04 12:33:00','2021-12-09 16:15:26'),(189,0,1,0,0,'2021-12-04','Babydoll','343434444444444','1','0','','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2022-01-03','url','',NULL,'',0,'2021-12-04 15:12:06','2021-12-04 15:12:06'),(190,0,1,0,0,'2021-12-04','Babydoll','343434444444444','1','0','','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2022-01-03','url','',NULL,'',0,'2021-12-04 15:12:38','2021-12-04 15:12:38'),(191,0,1,0,3,'2021-12-04','Sdjvdsdssssf','234353535354535','1','0','','','','',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2022-01-03','url','',NULL,'',0,'2021-12-04 15:14:35','2021-12-04 15:14:35'),(192,0,1,0,2,'2021-12-04','Gunjan','324324232343','1','0','','','','',NULL,'1','','','12000','1','2021-12-07','0',0,'0','2000','4',NULL,'web','',NULL,'',1,'2021-12-04 15:18:33','2021-12-07 16:34:08'),(193,0,1,0,2,'2021-12-04','Tappu','456666666666666','1','0','','','','',NULL,'1','','','13000','1','2021-12-06','0',0,'0','0','4',NULL,'web','',NULL,'',1,'2021-12-04 16:05:44','2021-12-06 12:54:35'),(194,0,1,0,6,'2021-12-07','Anurag','436987786597697','1','0','','','','',NULL,'1','','','2000','1',NULL,'0',0,'100','0','1','2022-01-01','url','',NULL,'',1,'2021-12-07 11:20:31','2021-12-08 17:21:59'),(195,0,1,0,2,'2021-12-08','Testt','3874678332','1','0','','','','',NULL,'1','','','12000','1',NULL,'19667',0,'0','0','1','2022-01-27','web','',NULL,'',1,'2021-12-08 15:45:10','2022-01-27 17:54:04'),(196,0,1,0,7,'2021-12-08','Deepam Dangayach','294444444333333','1','0','','','','','2021-12-08','1','','','10000','1',NULL,'0',0,'0','0','1','2022-01-07','web','',NULL,'',1,'2021-12-08 17:00:40','2021-12-08 17:00:40'),(197,0,1,0,0,'2021-12-09','Gunjan Bhatra','9999999999','1','0','xgfchvjb','','','Rajasthan',NULL,'1','','','0','1',NULL,'0',0,'0','0','3','2022-01-08','url','',NULL,'',0,'2021-12-09 17:17:41','2021-12-09 17:17:41'),(201,0,1,0,8,'2022-01-28','Vishnu','32324234324','1','0','','','','',NULL,'1','','','12000','1',NULL,'0',0,'0','0','1','2022-02-18','web','',NULL,'',1,'2022-01-28 11:55:51','2022-01-28 11:55:51'),(202,0,1,0,9,'2022-01-28','Test','3214234','1','0','','','','',NULL,'1','','','2222','1','2022-01-29','2222',0,'0','0','1','2022-03-14','web','',NULL,'',1,'2022-01-28 12:01:46','2022-02-12 12:47:42'),(203,0,1,0,10,'2022-01-29','Padam','385423765743','1','0','','','','',NULL,'1','','','2222','1',NULL,'0',0,'0','0','1','2022-02-04','web','',NULL,'',1,'2022-01-29 09:58:14','2022-01-29 10:00:21');
/*!40000 ALTER TABLE `resident_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resident_documents`
--

DROP TABLE IF EXISTS `resident_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `resident_documents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `res_id` int(11) NOT NULL,
  `doc_1` text NOT NULL,
  `doc_2` text NOT NULL,
  `doc_3` text NOT NULL,
  `res_image` text NOT NULL,
  `signature_img` text NOT NULL,
  `parent_signature` varchar(100) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=197 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resident_documents`
--

LOCK TABLES `resident_documents` WRITE;
/*!40000 ALTER TABLE `resident_documents` DISABLE KEYS */;
INSERT INTO `resident_documents` VALUES (1,1,1,'resident_Image/608a5bb353148.png','','','','','',1,'2021-04-29 00:00:00','2021-04-29 00:00:00'),(2,1,2,'resident_Image/608a5c56c157c.jpg','','','resident_Image/608a5c56c17d3.jpg','resident_Image/608a5c56c1778.pgms','',1,'2021-04-29 00:00:00','2021-04-29 00:00:00'),(3,1,3,'','','','resident_Image/608aae7aeb14a.jpg','','',1,'2021-07-25 00:00:00','2021-07-25 00:00:00'),(4,2,4,'','','','resident_Image/608b86adb75b7.jpg','','',1,'2021-04-30 00:00:00','2021-05-04 18:34:37'),(5,1,5,'resident_Image/608b876dd43ce.png','','','resident_Image/608b876dd433e.png','resident_Image/608b876dd4398.png','',0,'2021-04-30 09:58:29','2021-04-30 09:58:29'),(6,1,6,'608b88d8ec0ca.jpg','','608b88d8ec303.png','','','',1,'2021-04-30 00:00:00','2021-04-30 00:00:00'),(7,1,7,'resident_Image/608b8b2b69806.jpg','','resident_Image/608b8b2b6a0bb.jpg','','','',1,'2021-04-30 00:00:00','2021-04-30 00:00:00'),(8,1,8,'resident_Image/608b8d1ba3410.png','resident_Image/608b876dd4398.png','resident_Image/608b876dd4398.png','resident_Image/608b8d1ba330a.png','resident_Image/608b876dd4398.png','resident_Image/608b876dd4398.png',0,'2021-04-30 10:22:43','2021-04-30 10:22:43'),(10,1,11,'resident_Image/9775room_1.jpg','','resident_Image/3242room.jpg','','','',1,'2021-04-30 00:00:00','2021-04-30 00:00:00'),(11,1,12,'resident_Image/8882cropped2393064321266706896.jpg','','','resident_Image/3596cropped4412963605678119291.jpg','resident_Image/2612Signature_student.jpg','resident_Image/8269Signature_parent.jpg',1,'2021-05-21 00:00:00','2021-05-21 00:00:00'),(12,1,13,'resident_Image/5595cropped286594034317245627.jpg','resident_Image/9234cropped1279798099517620589.jpg','','resident_Image/8127cropped3920061235895039454.jpg','resident_Image/569260a22de84a79d.jpg','resident_Image/6562608ba6b94f6cd.jpg',1,'2021-06-02 00:00:00','2021-06-02 00:00:00'),(13,1,14,'resident_Image/608befef6d551.png','','','resident_Image/608befef6d47b.png','resident_Image/608befef6d4f8.png','',1,'2021-04-30 17:24:23','2021-07-15 16:01:45'),(14,1,15,'resident_Image/8839cropped3739732196219657503.jpg','','','resident_Image/2555cropped7051341934722276604.jpg','resident_Image/9991609113110d88b.jpg','',1,'2021-05-27 00:00:00','2021-05-27 00:00:00'),(15,1,16,'resident_Image/60911c7c5758a.png','','','resident_Image/60911c7c5750f.png','resident_Image/60911c7c57560.png','',0,'2021-05-04 15:35:48','2021-05-04 15:35:48'),(16,1,17,'','','','resident_Image/4906cropped703210600873045866.jpg','resident_Image/1326609dd5079559f.jpg','',1,'2021-05-14 00:00:00','2021-07-15 16:05:01'),(17,2,18,'resident_Image/60f56976bdddd.png','','','resident_Image/60f56976bdccd.png','resident_Image/60f56976bdda3.png','resident_Image/60f56976bde22.png',1,'2021-07-19 17:30:54','2021-07-19 17:30:54'),(18,1,19,'resident_Image/60f5715383f25.png','','','resident_Image/60f5715383d5f.png','resident_Image/60f5715383eb6.png','',0,'2021-07-19 18:04:27','2021-07-19 18:04:27'),(19,1,20,'resident_Image/60f57a4083615.png','','','resident_Image/60f57a4083589.png','resident_Image/60f57a40835e2.png','',1,'2021-07-19 18:42:32','2021-07-19 18:42:32'),(20,1,21,'resident_Image/60f57b5ee2f14.png','','','resident_Image/60f57b5ee2e6d.png','resident_Image/60f57b5ee2ed4.png','',1,'2021-07-19 18:47:18','2021-07-19 18:47:18'),(21,1,22,'resident_Image/60f57c7f6c911.png','','','resident_Image/60f57c7f6c811.png','resident_Image/60f57c7f6c8ae.png','',1,'2021-07-20 00:00:00','2021-07-20 00:00:00'),(22,1,23,'','','','resident_Image/8818cropped4188402687649824208.jpg','','',1,'2021-07-20 00:00:00','2021-07-20 06:17:14'),(23,1,24,'','','','','','',1,'2021-07-20 00:00:00','2021-07-20 00:00:00'),(24,1,25,'','','','','','',0,'2021-07-20 12:42:38','2021-07-20 12:42:38'),(25,1,26,'','','','','','',0,'2021-07-20 12:43:43','2021-07-20 12:43:43'),(26,1,27,'','','','','','',1,'2021-07-20 12:56:52','2021-07-20 12:56:52'),(27,1,28,'','','','','','',1,'2021-07-20 13:02:01','2021-08-07 17:21:59'),(28,1,29,'','','','','','',1,'2021-07-20 13:03:48','2021-08-07 17:05:27'),(29,1,30,'','','','','','',1,'2021-07-20 13:16:18','2021-07-20 13:20:55'),(30,1,31,'','','','','','',0,'2021-07-22 11:24:16','2021-07-22 11:24:16'),(31,1,32,'','','','','','',0,'2021-07-22 11:30:09','2021-07-22 11:30:09'),(32,1,33,'','','','','','',1,'2021-07-22 11:32:10','2021-08-07 17:00:56'),(33,1,34,'','','','','','',1,'2021-07-22 11:35:08','2021-07-24 14:18:36'),(34,1,35,'resident_Image/60f90b62c881c.png','','','resident_Image/60f90b62c84c1.png','resident_Image/60f90b62c8624.png','',1,'2021-07-22 11:38:34','2021-08-07 16:58:05'),(35,1,36,'resident_Image/60f90ca7d23b7.png','','','resident_Image/60f90ca7d2353.png','','',0,'2021-07-22 11:43:59','2021-07-22 11:43:59'),(36,1,37,'resident_Image/60f90d194ca27.png','','','resident_Image/60f90d194c991.png','','',0,'2021-07-22 11:45:53','2021-07-22 11:45:53'),(37,1,38,'','resident_Image/60f90d9fc28ea.png','resident_Image/60f90d9fc2924.png','','resident_Image/60f90d9fc2880.png','',0,'2021-07-22 11:48:07','2021-07-22 11:48:07'),(38,1,39,'resident_Image/60f90de5ee4ad.png','','','resident_Image/60f90de5ee41e.png','resident_Image/60f90de5ee47f.png','',0,'2021-07-22 11:49:17','2021-07-22 11:49:17'),(39,1,40,'','','','','','',1,'2021-07-23 00:00:00','2021-07-23 00:00:00'),(40,1,41,'','','','','','',1,'2021-07-23 00:00:00','2021-07-23 00:00:00'),(41,1,42,'','','','','','',1,'2021-07-24 13:01:03','2021-07-24 13:01:03'),(42,1,43,'','','','','','',1,'2021-07-24 13:11:14','2021-07-24 13:11:14'),(43,1,44,'','','','','','',1,'2021-07-24 00:00:00','2021-07-24 00:00:00'),(44,1,45,'','','','','','',1,'2021-07-24 00:00:00','2021-07-24 00:00:00'),(45,1,46,'','','','','','',1,'2021-07-24 00:00:00','2021-07-24 00:00:00'),(46,1,47,'','','','','','',1,'2021-07-24 00:00:00','2021-07-24 00:00:00'),(47,1,48,'','','','','','',1,'2021-07-24 00:00:00','2021-07-24 00:00:00'),(48,1,49,'','','','','','',1,'2021-07-24 00:00:00','2021-07-24 00:00:00'),(49,1,50,'','','','','','',1,'2021-07-24 00:00:00','2021-07-24 00:00:00'),(50,1,51,'','','','','','',1,'2021-07-26 16:42:02','2021-07-26 16:42:02'),(51,1,52,'','','','','','',1,'2021-07-26 16:45:36','2021-07-26 16:45:36'),(52,1,53,'','','','','','',0,'2021-07-27 09:52:34','2021-07-27 09:52:34'),(53,1,54,'','','','','','',0,'2021-07-27 09:53:18','2021-07-27 09:53:18'),(54,1,55,'','','','','','',0,'2021-07-27 09:54:43','2021-07-27 09:54:43'),(55,1,56,'','','','','','',1,'2021-07-29 10:10:29','2021-07-29 10:10:29'),(56,1,57,'','','','','','',1,'2021-07-29 10:23:59','2021-07-29 10:23:59'),(57,1,58,'','','','','','',1,'2021-07-29 10:25:57','2021-07-29 10:25:57'),(58,1,59,'','','','','','',0,'2021-07-29 17:54:40','2021-07-29 17:54:40'),(59,1,60,'','','','','','',0,'2021-07-29 17:57:22','2021-07-29 17:57:22'),(60,1,61,'','','','','','',1,'2021-07-29 18:02:08','2021-07-29 18:02:08'),(61,1,62,'','','','','','',1,'2021-07-29 18:03:10','2021-07-29 18:03:10'),(62,1,63,'','','','','','',1,'2021-07-30 12:46:51','2021-07-30 12:46:51'),(63,1,64,'','','','','','',1,'2021-07-30 14:46:10','2021-08-03 17:24:45'),(64,1,65,'','','','','','',1,'2021-07-30 15:04:13','2021-07-30 15:04:13'),(65,1,66,'','','','','','',1,'2021-07-30 00:00:00','2021-07-30 00:00:00'),(66,1,67,'','','','','','',1,'2021-07-30 17:57:00','2021-07-30 17:57:00'),(67,1,68,'','','','','','',1,'2021-07-30 17:59:01','2021-07-30 17:59:01'),(68,1,69,'','','','','','',0,'2021-07-30 18:01:49','2021-07-30 18:01:49'),(69,1,70,'','','','','','',0,'2021-08-04 12:36:39','2021-08-04 12:36:39'),(70,1,71,'','','','','','',1,'2021-08-04 14:54:52','2021-08-04 14:54:52'),(71,1,72,'','','','','','',1,'2021-08-04 16:44:55','2021-08-04 16:44:55'),(72,1,73,'','','','','','',1,'2021-08-04 16:48:20','2021-08-04 16:48:20'),(73,1,74,'','','','','','',0,'2021-08-04 16:58:52','2021-08-04 16:58:52'),(74,1,75,'','','','','','',0,'2021-08-04 17:32:46','2021-08-04 17:32:46'),(75,2,76,'','','','','','',1,'2021-08-04 17:57:17','2021-08-04 17:57:17'),(76,1,77,'','','','','','',1,'2021-08-04 18:42:31','2021-08-04 18:42:31'),(77,2,78,'','','','','','',1,'2021-08-05 16:08:56','2021-08-05 16:08:56'),(78,1,79,'','','','','','',1,'2021-08-05 18:18:58','2021-08-05 18:18:58'),(79,1,80,'','','','','','',1,'2021-08-06 09:54:24','2021-08-06 09:54:24'),(80,1,81,'','','','','','',1,'2021-08-07 12:09:44','2021-08-07 12:09:44'),(81,2,82,'','','','','','',1,'2021-08-07 12:10:43','2021-08-07 12:10:43'),(82,1,83,'','','','','','',1,'2021-08-07 12:28:02','2021-08-07 12:28:02'),(83,1,84,'','','','','','',1,'2021-08-07 14:00:22','2021-08-07 14:00:22'),(84,1,85,'','','','','','',1,'2021-08-09 11:07:46','2021-08-09 11:07:46'),(85,1,86,'','','','','','',1,'2021-08-09 12:41:09','2021-08-09 12:41:09'),(86,1,87,'','','','','','',1,'2021-08-09 12:43:21','2021-08-09 12:43:21'),(87,1,88,'','','','','','',1,'2021-08-09 12:45:27','2021-08-09 12:45:27'),(88,1,89,'','','','','','',1,'2021-08-09 12:50:05','2021-08-09 12:50:05'),(89,1,90,'','','','','','',1,'2021-08-09 12:51:18','2021-08-09 12:51:18'),(90,1,91,'','','','','','',1,'2021-08-09 12:57:35','2021-08-09 12:57:35'),(91,1,92,'','','','','','',1,'2021-08-09 13:27:33','2021-08-09 13:27:33'),(92,1,93,'','','','','','',1,'2021-08-09 13:29:28','2021-08-09 13:29:28'),(93,1,94,'','','','','','',1,'2021-08-10 11:40:27','2021-08-10 11:40:27'),(94,1,95,'','','','','','',1,'2021-08-10 11:40:58','2021-08-10 11:40:58'),(95,1,96,'','','','','','',1,'2021-08-10 11:41:50','2021-08-10 11:41:50'),(96,1,97,'','','','','','',1,'2021-08-10 11:42:04','2021-08-10 11:42:04'),(97,1,98,'','','','','','',1,'2021-08-10 11:42:45','2021-08-10 11:42:45'),(98,1,99,'','','','','','',1,'2021-08-10 11:43:40','2021-08-10 11:43:40'),(99,1,100,'','','','','','',1,'2021-08-11 10:07:32','2021-08-11 10:07:32'),(100,1,101,'','','','','','',1,'2021-08-11 10:09:49','2021-08-11 10:09:49'),(101,1,102,'','','','','','',1,'2021-08-13 00:00:00','2021-08-13 00:00:00'),(102,1,103,'','','','','','',0,'2021-08-13 17:31:12','2021-08-13 17:31:12'),(103,1,104,'','','','','','',1,'2021-08-28 16:27:10','2021-08-28 16:27:10'),(104,1,105,'','','','','','',1,'2021-08-28 16:48:11','2021-09-03 19:21:56'),(105,1,106,'','','','','','',1,'2021-09-04 10:24:57','2021-09-04 10:24:57'),(106,1,107,'','','','','','',1,'2021-09-04 10:28:48','2021-09-04 10:28:48'),(107,1,108,'','','','','','',1,'2021-09-04 10:54:29','2021-09-04 10:54:29'),(108,1,109,'','','','','','',1,'2021-09-04 10:57:22','2021-09-04 10:57:22'),(109,1,110,'','','','','','',1,'2021-09-04 11:19:14','2021-09-17 12:54:27'),(110,1,111,'','','','','','',1,'2021-09-04 11:20:19','2021-09-04 11:20:19'),(111,1,112,'','','','','','',1,'2021-09-04 11:21:13','2021-09-17 12:39:26'),(112,1,113,'','','','','','',1,'2021-09-04 11:22:15','2021-09-04 11:22:15'),(113,1,114,'resident_Image/61331d7476481.png','','','','resident_Image/6133202e3e08d.png','',1,'2021-09-04 12:47:08','2021-09-04 12:58:46'),(114,1,115,'resident_Image/61331eef40e28.png','resident_Image/613c9de9b29de.png','resident_Image/613c9de9b2d24.png','resident_Image/61331eef40585.png','resident_Image/613c9de9b26c1.jfif','',1,'2021-09-04 12:53:27','2021-09-11 17:45:37'),(115,1,116,'resident_Image/61332394ecd24.png','resident_Image/61332394ecf4b.png','','resident_Image/61332394ecbaa.png','','',0,'2021-09-04 13:13:16','2021-09-04 13:13:16'),(116,1,117,'resident_Image/613746c2698d8.png','resident_Image/613c9d4ee749c.png','','resident_Image/613746c26936c.png','','',1,'2021-09-07 16:31:54','2021-09-11 17:43:02'),(117,1,118,'resident_Image/613c9a60218c9.png','resident_Image/613c997c64e6d.jfif','resident_Image/613c997c6509e.png','resident_Image/613c86e7c5924.png','resident_Image/613c9a602167b.jfif','resident_Image/613c997c65267.png',1,'2021-09-08 16:01:28','2021-09-11 17:30:52'),(118,1,119,'','','','','','',1,'2021-09-15 00:00:00','2021-09-15 00:00:00'),(119,1,121,'','','','','','',1,'2021-09-16 18:14:24','2021-09-16 18:14:24'),(120,1,124,'resident_Image/6949Screenshot (44).png','','','resident_Image/7206Screenshot (49).png','','',1,'2021-09-17 10:43:43','2021-09-17 10:43:43'),(121,1,125,'','resident_Image/9436Screenshot (50).png','','resident_Image/1120Screenshot (48).png','','',1,'2021-09-17 10:50:48','2021-09-17 10:50:48'),(122,1,126,'','','','','','',1,'2021-09-17 10:52:07','2021-09-17 10:52:07'),(123,1,127,'','','','','','',1,'2021-09-17 10:54:08','2021-09-17 10:54:08'),(124,1,128,'','','','','','',1,'2021-09-17 10:54:57','2021-09-17 10:54:57'),(125,1,129,'','','','','','',1,'2021-09-17 11:05:38','2021-09-17 11:05:38'),(126,1,130,'','','','','','',1,'2021-09-17 11:05:57','2021-09-17 11:05:57'),(127,1,131,'','','','','','',1,'2021-09-17 11:07:27','2021-09-17 11:07:27'),(128,1,132,'','','','','','',1,'2021-09-17 11:08:57','2021-09-17 11:08:57'),(129,1,133,'','','','resident_Image/4692Screenshot (48).png','','',1,'2021-09-17 11:13:04','2021-09-17 11:13:04'),(130,1,134,'','','','resident_Image/5649Screenshot (47).png','','',1,'2021-09-17 11:17:17','2021-09-17 11:17:17'),(131,1,135,'','','','resident_Image/3107Screenshot (47).png','','',1,'2021-09-17 11:22:26','2021-09-17 11:22:26'),(132,1,136,'resident_Image/6145700d5f2f8.png','','','resident_Image/4222Screenshot (47).png','','',1,'2021-09-17 11:23:12','2021-09-18 10:20:21'),(133,1,137,'','','','','','',1,'2021-09-17 11:24:10','2021-09-17 11:24:10'),(134,1,138,'','','','resident_Image/7820Screenshot (48).png','','resident_Image/4753Screenshot (50).png',1,'2021-09-17 11:26:41','2021-09-18 10:17:43'),(135,1,139,'','','','','','',1,'2021-09-17 11:30:25','2021-09-18 10:19:44'),(136,1,140,'resident_Image/3391Screenshot (50).png','','','resident_Image/3686Screenshot (49).png','','',1,'2021-09-17 11:34:41','2021-09-17 11:34:41'),(137,1,141,'resident_Image/6392login 2.jpg','resident_Image/1535login.png','resident_Image/1812login 2.jpg','resident_Image/2914login.png','','',1,'2021-09-17 11:37:06','2021-09-17 12:25:09'),(138,1,142,'resident_Image/8466Screenshot (50).png','','','resident_Image/3538Screenshot (49).png','','',1,'2021-09-17 11:50:45','2021-09-17 12:24:08'),(139,1,143,'','','','','','',1,'2021-09-18 18:17:56','2021-09-18 18:19:59'),(140,1,144,'','','','','','',0,'2021-09-18 18:27:25','2021-09-18 18:27:25'),(141,1,145,'','','','','','',1,'2021-09-21 12:38:11','2021-09-21 12:38:11'),(142,1,146,'','','','','','',1,'2021-09-21 12:45:31','2021-11-30 17:15:59'),(143,1,147,'','','','','','',1,'2021-09-21 15:31:37','2021-09-21 15:31:37'),(144,1,148,'','','','','','',1,'2021-09-21 15:32:56','2021-09-21 15:32:56'),(145,1,149,'','','','','','',1,'2021-09-21 15:35:07','2021-09-21 15:35:07'),(146,1,150,'','','','','','',1,'2021-09-21 18:30:22','2021-09-21 18:30:22'),(147,1,151,'','','','','','',1,'2021-09-21 18:40:26','2021-09-21 18:40:26'),(148,1,152,'','','','','','',1,'2021-09-22 16:22:45','2021-09-22 16:22:45'),(149,1,153,'','','','','','',1,'2021-09-22 17:37:20','2021-09-22 17:37:20'),(150,1,154,'','','','','','',1,'2021-09-22 17:43:08','2021-09-22 17:43:37'),(151,1,155,'','','','','','',1,'2021-09-22 17:43:41','2021-09-22 17:43:41'),(152,1,156,'','','','','','',1,'2021-09-22 17:46:43','2021-09-22 18:28:10'),(153,1,157,'','','','','','',1,'2021-09-23 10:32:20','2021-09-23 10:32:20'),(154,1,158,'','','','','','',1,'2021-09-23 10:32:43','2021-09-23 10:32:43'),(155,1,159,'','','','','','',1,'2021-09-23 10:33:28','2021-09-23 10:33:28'),(156,1,160,'','','','','','',1,'2021-09-23 10:34:43','2021-09-23 10:34:43'),(157,1,161,'','','','','','',1,'2021-09-23 10:34:49','2021-09-23 10:34:49'),(158,1,162,'','','','','','',1,'2021-09-23 10:35:10','2021-09-23 10:35:10'),(159,1,163,'','','','','','',1,'2021-09-23 10:35:21','2021-09-23 10:35:21'),(160,1,164,'','','','','','',1,'2021-09-23 10:35:28','2021-09-23 10:35:28'),(161,1,165,'','','','','','',1,'2021-09-23 10:45:46','2021-09-23 10:45:46'),(162,1,166,'','','','','','',1,'2021-09-23 10:47:25','2021-12-06 12:42:34'),(163,1,167,'','','','','','',1,'2021-09-23 10:51:05','2021-09-23 10:51:05'),(164,4,168,'','','','','','',1,'2021-09-23 10:54:18','2021-09-23 10:54:18'),(165,4,169,'','','','','','',1,'2021-09-23 10:55:21','2021-09-23 10:55:21'),(166,4,170,'','','','','','',1,'2021-09-23 10:59:00','2021-09-23 10:59:00'),(167,2,171,'','','','','','',0,'2021-09-23 23:57:42','2021-09-23 23:57:42'),(168,1,172,'','','','','','',0,'2021-10-06 15:03:39','2021-10-06 15:03:39'),(169,1,173,'','','','','','',1,'2021-10-07 12:08:25','2021-10-07 12:08:25'),(170,1,174,'resident_Image/618faff32975d.jfif','resident_Image/618faff3297dd.svg','resident_Image/618faff329829.png','resident_Image/618faff326dbb.jfif','resident_Image/618faff3298ec.jpeg','resident_Image/618faff329973.jfif',0,'2021-11-13 18:00:43','2021-11-13 18:00:43'),(171,1,176,'resident_Image/phpaNONh1.jpg','','','resident_Image/phpG10aqU.jpg','resident_Image/618fb46ed5f21.png','',0,'2021-11-13 18:19:50','2021-11-13 18:19:50'),(172,1,177,'resident_Image/phpV1rLFd.jpg','resident_Image/phpmjKqJV.jpg','resident_Image/phprTz6MD.jpg','resident_Image/php42P9Bv.jpg','resident_Image/phpktQMQl.jpg','resident_Image/phpZJMtU3.jpg',0,'2021-11-13 18:25:57','2021-11-13 18:25:57'),(173,1,178,'','','','','','resident_Image/phpPcw0qg.jpg',0,'2021-11-13 18:28:03','2021-11-13 18:28:03'),(174,1,179,'resident_Image/php9dP5im.jpg','resident_Image/phpHX4mG8.jpg','resident_Image/phpg7WI3U.jpg','resident_Image/phpda1OVz.jpg','resident_Image/phpHJb5qH.jpg','',0,'2021-11-13 18:29:13','2021-11-13 18:29:13'),(175,1,180,'','','','','','',1,'2021-11-30 16:38:54','2021-11-30 16:38:54'),(176,1,181,'resident_Image/61ada4afaabc4.jfif','','','resident_Image/61ada4afa82a9.jpeg','','',1,'2021-11-30 16:42:21','2021-12-06 11:21:06'),(177,1,182,'','','','','','',1,'2021-11-30 16:44:17','2021-11-30 16:44:17'),(178,1,183,'','','','','','',1,'2021-12-03 18:34:51','2021-12-03 18:34:51'),(179,1,185,'','','','','','',1,'2021-12-04 10:08:33','2021-12-06 18:36:27'),(180,1,186,'','','','','','',1,'2021-12-04 10:22:18','2021-12-04 10:22:18'),(181,1,187,'','','','','','',1,'2021-12-04 10:24:32','2021-12-04 10:24:32'),(182,1,188,'','','','','','',1,'2021-12-04 12:33:00','2021-12-04 12:33:00'),(183,1,190,'','','','','','',0,'2021-12-04 15:12:38','2021-12-04 15:12:38'),(184,1,191,'','','','','','',0,'2021-12-04 15:14:35','2021-12-04 15:14:35'),(185,1,192,'','','','','','',1,'2021-12-04 15:18:33','2021-12-04 15:18:33'),(186,1,193,'','','','','','',1,'2021-12-04 16:05:44','2021-12-06 11:17:05'),(187,1,194,'','','','','','',0,'2021-12-07 11:20:31','2021-12-07 11:20:31'),(188,1,195,'','','','','','',1,'2021-12-08 15:45:10','2021-12-08 16:21:30'),(189,1,196,'','','','','','',1,'2021-12-08 17:00:40','2021-12-08 17:00:40'),(190,1,197,'','','','','','',0,'2021-12-09 17:17:41','2021-12-09 17:17:41'),(191,1,198,'','','','','','',1,'2022-01-28 11:29:34','2022-01-28 11:29:34'),(192,1,199,'','','','','','',1,'2022-01-28 11:36:38','2022-01-28 11:36:38'),(193,1,200,'','','','','','',1,'2022-01-28 11:42:45','2022-01-28 11:42:45'),(194,1,201,'','','','','','',1,'2022-01-28 11:55:51','2022-01-28 11:55:51'),(195,1,202,'','','','','','',1,'2022-01-28 12:01:46','2022-01-28 12:01:46'),(196,1,203,'','','','','','',1,'2022-01-29 09:58:14','2022-01-29 10:00:21');
/*!40000 ALTER TABLE `resident_documents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resident_members`
--

DROP TABLE IF EXISTS `resident_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `resident_members` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `res_id` int(11) NOT NULL,
  `member_name` varchar(1000) NOT NULL,
  `member_idproof` varchar(1000) NOT NULL,
  `member_contact` varchar(20) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 yes 0 no',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resident_members`
--

LOCK TABLES `resident_members` WRITE;
/*!40000 ALTER TABLE `resident_members` DISABLE KEYS */;
INSERT INTO `resident_members` VALUES (3,186,'fdfds','44324324affsd','3343343333',1,'2021-12-04 10:22:18','2021-12-04 10:22:18'),(4,187,'ved','44324324affsd','3343343333',1,'2021-12-04 10:24:32','2021-12-04 10:24:32'),(5,187,'rup','sdsdsdxcffs','334242334444',1,'2021-12-04 10:24:32','2021-12-04 10:24:32'),(6,187,'sup','fdsfr4','453234523333',1,'2021-12-04 10:24:32','2021-12-04 10:24:32'),(7,188,'munmun','asdfghjv','464644545654',1,'2021-12-04 12:33:00','2021-12-04 12:33:00'),(8,188,'rakesh jhunjhun wala','AADRH67HGHJ','334334333399',1,'2021-12-04 12:33:00','2021-12-04 12:33:00'),(9,190,'mom','44324324affsd','333333341432',1,'2021-12-04 15:12:38','2021-12-04 15:12:38'),(10,190,'dad','44324324affsd','342534535354',1,'2021-12-04 15:12:38','2021-12-04 15:12:38'),(11,190,'toddler','44324324affsd','241675757576',1,'2021-12-04 15:12:38','2021-12-04 15:12:38'),(12,191,'gunjsada','255wtteteterr','322222222222',1,'2021-12-04 15:14:35','2021-12-04 15:14:35'),(13,191,'dfsd2545','553gdfdhdhd','344444444444',1,'2021-12-04 15:14:35','2021-12-04 15:14:35'),(14,192,'test','','',1,'2021-12-04 15:18:33','2021-12-04 15:18:33'),(18,193,'tappu ke papa','5434633637343','522222223333',1,'2021-12-06 11:17:05','2021-12-06 11:17:05'),(19,193,'babita ji','44324324affsd','3343343333',1,'2021-12-06 11:17:05','2021-12-06 11:17:05'),(23,185,'mummy','353fsdfsdftds','774234324242',1,'2021-12-06 18:36:27','2021-12-06 18:36:27'),(24,185,'gunjan bhatra','44324324affsd','343333333434',1,'2021-12-06 18:36:27','2021-12-06 18:36:27'),(25,185,'babita sharma','erwewwewet','343444444444',1,'2021-12-06 18:36:27','2021-12-06 18:36:27'),(26,185,'chicks sharma','','',1,'2021-12-06 18:36:27','2021-12-06 18:36:27'),(27,185,'mohit mohit','','',1,'2021-12-06 18:36:27','2021-12-06 18:36:27'),(28,194,'test 1','test23232','232323232322',1,'2021-12-07 11:20:31','2021-12-07 11:20:31'),(29,194,'test 2','test43545','232323232445',1,'2021-12-07 11:20:31','2021-12-07 11:20:31'),(39,196,'Viren Sharma','','',1,'2021-12-08 17:00:40','2021-12-08 17:00:40'),(40,197,'gunjan bhatra','','',1,'2021-12-09 17:17:41','2021-12-09 17:17:41'),(41,197,'babita ji','','',1,'2021-12-09 17:17:41','2021-12-09 17:17:41'),(42,197,'fdfds','','',1,'2021-12-09 17:17:41','2021-12-09 17:17:41');
/*!40000 ALTER TABLE `resident_members` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `resident_parents`
--

DROP TABLE IF EXISTS `resident_parents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `resident_parents` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `res_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `f_name` varchar(50) NOT NULL,
  `f_occuption` varchar(50) NOT NULL,
  `f_contact_1` varchar(20) NOT NULL,
  `m_name` varchar(50) NOT NULL,
  `m_occuption` varchar(100) NOT NULL,
  `m_contact` varchar(20) NOT NULL,
  `local_guardian_name` varchar(50) NOT NULL,
  `local_guardian_address` varchar(100) NOT NULL,
  `local_guardian_contact` varchar(20) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `resident_parents`
--

LOCK TABLES `resident_parents` WRITE;
/*!40000 ALTER TABLE `resident_parents` DISABLE KEYS */;
INSERT INTO `resident_parents` VALUES (1,1,1,'Kamlesh','Ca','2343343443','Gulifer','Test','54655535345','','','','2021-04-29 12:39:39','2021-04-29 12:39:39'),(2,2,1,'Ganesh','','9683686896','','','','','','','2021-04-29 12:42:22','2021-04-29 12:42:22'),(3,3,1,'Test','','6499595998','','','','','','','2021-07-25 12:15:17','2021-07-25 12:15:17'),(4,4,2,'Kamal','Dealer','9854648466','Suman','','','','','','2021-04-30 09:55:17','2021-05-04 18:34:37'),(5,5,1,'Deepak','Ccd Owner','3434335454','Sharada','Fdfds','8938389292','','','','2021-04-30 09:58:29','2021-04-30 09:58:29'),(6,6,1,'Kamlesh','Ca','2343343443','Gulifer','Test','54655535345','','','','2021-04-30 10:04:32','2021-04-30 10:04:32'),(7,7,1,'Kamlesh','Ca','2343343443','Gulifer','Test','54655535345','','','','2021-04-30 10:14:27','2021-04-30 10:14:27'),(8,8,1,'Deepak','dimensional group Transport','3434335454','Sharada','Housewife','8938389292','','1 St floor Ganga Heights, SB-154, Tonk Road, Bapu Nagar, Jaipur, Rajasthan','3433333333','2021-04-30 10:22:43','2021-04-30 10:22:43'),(9,9,1,'Kamlesh','Ca','2343343443','Gambria','Test','54655535345','','','','2021-04-30 10:32:40','2021-04-30 10:32:40'),(11,11,1,'Kamlesh','Ca','2343343443','Gambria','Test','54655535345','','','','2021-04-30 10:37:48','2021-04-30 10:37:48'),(12,12,1,'Siraj','','9683656898','','','','','','','2021-05-21 00:02:21','2021-05-21 00:02:21'),(13,13,1,'Vishal','','6956656798','','','','','','','2021-06-02 08:26:11','2021-06-02 08:26:11'),(14,14,1,'Ram Veer','Transport','3434335454','Sharada','','','','jaipur','3442144734','2021-04-30 17:24:23','2021-07-15 16:01:45'),(15,15,1,'Test Father','','9685470008','','','','','','','2021-05-27 14:44:25','2021-05-27 14:44:25'),(16,16,1,'Tess','HR','1233333333','Mother Name','','','','','','2021-05-04 15:35:48','2021-05-04 15:35:48'),(17,17,1,'Wasim Dad','transporter','9653534694','sunidhi','','','','','','2021-05-14 07:10:23','2021-07-15 16:05:01'),(18,18,2,'Papa','Transporter','6767657577','MOM','','','','','','2021-07-19 17:30:54','2021-07-19 17:30:54'),(19,19,1,'Papa','Dydh','1111111122','Bdhdh','','','','','','2021-07-19 18:04:27','2021-07-19 18:04:27'),(20,20,1,'Dad','Ccd Owner','3434335454','Meenakshi','','','','','','2021-07-19 18:42:32','2021-07-19 18:42:32'),(21,21,1,'Dadhh','Jewwller','5344242357','MOM','','','','','','2021-07-19 18:47:18','2021-07-19 18:47:18'),(22,22,1,'Gyyy','Gfftf','6666677777','Ggfggg','','','','','','2021-07-20 06:09:10','2021-07-20 06:09:10'),(23,23,1,'','','','','','','','','','2021-07-20 06:17:14','2021-07-20 06:17:14'),(24,24,1,'','','','','','','','','','2021-07-20 05:47:51','2021-07-20 05:47:51'),(25,25,1,'','','','','','','','','','2021-07-20 12:42:38','2021-07-20 12:42:38'),(26,26,1,'','','','','','','','','','2021-07-20 12:43:43','2021-07-20 12:43:43'),(27,27,1,'','','','','','','','','','2021-07-20 12:56:52','2021-07-20 12:56:52'),(28,28,1,'','','','','','','','','','2021-07-20 13:02:01','2021-08-07 17:21:59'),(29,29,1,'','','','','','','','','','2021-07-20 13:03:48','2021-08-07 17:05:27'),(30,30,1,'','','','','','','','','','2021-07-20 13:16:18','2021-07-20 13:20:55'),(31,31,1,'','','','','','','','','','2021-07-22 11:24:16','2021-07-22 11:24:16'),(32,32,1,'','','','','','','','','','2021-07-22 11:30:09','2021-07-22 11:30:09'),(33,33,1,'','','','','','','','','','2021-07-22 11:32:10','2021-08-07 17:00:56'),(34,34,1,'','','','','','','','','','2021-07-22 11:35:08','2021-07-24 14:18:36'),(35,35,1,'','','','','','','','','','2021-07-22 11:38:34','2021-08-07 16:58:05'),(36,36,1,'','','','','','','','','','2021-07-22 11:43:59','2021-07-22 11:43:59'),(37,37,1,'','','','','','','','','','2021-07-22 11:45:53','2021-07-22 11:45:53'),(38,38,1,'','','','','','','','','','2021-07-22 11:48:07','2021-07-22 11:48:07'),(39,39,1,'','','','','','','','','','2021-07-22 11:49:17','2021-07-22 11:49:17'),(40,40,1,'','','','','','','','','','2021-07-23 16:43:13','2021-07-23 16:43:13'),(41,41,1,'','','','','','','','','','2021-07-23 16:47:23','2021-07-23 16:47:23'),(42,42,1,'','','','','','','','','','2021-07-24 13:01:03','2021-07-24 13:01:03'),(43,43,1,'','','','','','','','','','2021-07-24 13:11:14','2021-07-24 13:11:14'),(44,44,1,'','','','','','','','','','2021-07-24 15:23:24','2021-07-24 15:23:24'),(45,45,1,'','','','','','','','','','2021-07-24 15:25:51','2021-07-24 15:25:51'),(46,46,1,'','','','','','','','','','2021-07-24 15:27:17','2021-07-24 15:27:17'),(47,47,1,'','','','','','','','','','2021-07-24 15:31:55','2021-07-24 15:31:55'),(48,48,1,'','','','','','','','','','2021-07-24 15:46:00','2021-07-24 15:46:00'),(49,49,1,'','','','','','','','','','2021-07-24 16:23:01','2021-07-24 16:23:01'),(50,50,1,'','','','','','','','','','2021-07-24 16:25:15','2021-07-24 16:25:15'),(51,51,1,'','','','','','','','','','2021-07-26 16:42:02','2021-07-26 16:42:02'),(52,52,1,'','','','','','','','','','2021-07-26 16:45:36','2021-07-26 16:45:36'),(53,53,1,'','','','','','','','','','2021-07-27 09:52:34','2021-07-27 09:52:34'),(54,54,1,'','','','','','','','','','2021-07-27 09:53:18','2021-07-27 09:53:18'),(55,55,1,'','','','','','','','','','2021-07-27 09:54:43','2021-07-27 09:54:43'),(56,56,1,'','','','','','','','','','2021-07-29 10:10:29','2021-07-29 10:10:29'),(57,57,1,'','','','','','','','','','2021-07-29 10:23:59','2021-07-29 10:23:59'),(58,58,1,'','','','','','','','','','2021-07-29 10:25:57','2021-07-29 10:25:57'),(59,59,1,'','','','','','','','','','2021-07-29 17:54:40','2021-07-29 17:54:40'),(60,60,1,'','','','','','','','','','2021-07-29 17:57:22','2021-07-29 17:57:22'),(61,61,1,'','','','','','','','','','2021-07-29 18:02:08','2021-07-29 18:02:08'),(62,62,1,'','','','','','','','','','2021-07-29 18:03:10','2021-07-29 18:03:10'),(63,63,1,'','','','','','','','','','2021-07-30 12:46:51','2021-07-30 12:46:51'),(64,64,1,'Dad','Transport','6767657577','Sharada','Housewife','8938389292','','','','2021-07-30 14:46:10','2021-08-03 17:24:45'),(65,65,1,'','','','','','','','','','2021-07-30 15:04:13','2021-07-30 15:04:13'),(66,66,1,'','','','','','','','','','2021-07-30 17:54:22','2021-07-30 17:54:22'),(67,67,1,'','','','','','','','','','2021-07-30 17:57:00','2021-07-30 17:57:00'),(68,68,1,'','','','','','','','','','2021-07-30 17:59:01','2021-07-30 17:59:01'),(69,69,1,'','','','','','','','','','2021-07-30 18:01:49','2021-07-30 18:01:49'),(70,70,1,'','','','','','','','','','2021-08-04 12:36:39','2021-08-04 12:36:39'),(71,71,1,'','','','','','','','','','2021-08-04 14:54:52','2021-08-04 14:54:52'),(72,72,1,'','','','','','','','','','2021-08-04 16:44:55','2021-08-04 16:44:55'),(73,73,1,'Deependr','','3434335454','','','','','','','2021-08-04 16:48:20','2021-08-04 16:48:20'),(74,74,1,'','','','','','','','','','2021-08-04 16:58:52','2021-08-04 16:58:52'),(75,75,1,'','','','','','','','','','2021-08-04 17:32:46','2021-08-04 17:32:46'),(76,76,2,'','','','','','','','','','2021-08-04 17:57:17','2021-08-04 17:57:17'),(77,77,1,'','','','','','','','','','2021-08-04 18:42:31','2021-08-04 18:42:31'),(78,78,2,'','','','','','','','','','2021-08-05 16:08:56','2021-08-05 16:08:56'),(79,79,1,'','','','','','','','','','2021-08-05 18:18:58','2021-08-05 18:18:58'),(80,80,1,'','','','','','','','','','2021-08-06 09:54:24','2021-08-06 09:54:24'),(81,81,1,'','','','','','','','','','2021-08-07 12:09:44','2021-08-07 12:09:44'),(82,82,2,'','','','','','','','','','2021-08-07 12:10:43','2021-08-07 12:10:43'),(83,83,1,'','','','','','','','','','2021-08-07 12:28:02','2021-08-07 12:28:02'),(84,84,1,'','','','','','','','','','2021-08-07 14:00:22','2021-08-07 14:00:22'),(85,85,1,'','','','','','','','','','2021-08-09 11:07:46','2021-08-09 11:07:46'),(86,86,1,'','','','','','','','','','2021-08-09 12:41:09','2021-08-09 12:41:09'),(87,87,1,'','','','','','','','','','2021-08-09 12:43:21','2021-08-09 12:43:21'),(88,88,1,'','','','','','','','','','2021-08-09 12:45:27','2021-08-09 12:45:27'),(89,89,1,'','','','','','','','','','2021-08-09 12:50:05','2021-08-09 12:50:05'),(90,90,1,'','','','','','','','','','2021-08-09 12:51:18','2021-08-09 12:51:18'),(91,91,1,'','','','','','','','','','2021-08-09 12:57:35','2021-08-09 12:57:35'),(92,92,1,'','','','','','','','','','2021-08-09 13:27:33','2021-08-09 13:27:33'),(93,93,1,'','','','','','','','','','2021-08-09 13:29:28','2021-08-09 13:29:28'),(94,94,1,'','','','','','','','','','2021-08-10 11:40:27','2021-08-10 11:40:27'),(95,95,1,'','','','','','','','','','2021-08-10 11:40:58','2021-08-10 11:40:58'),(96,96,1,'','','','','','','','','','2021-08-10 11:41:50','2021-08-10 11:41:50'),(97,97,1,'','','','','','','','','','2021-08-10 11:42:04','2021-08-10 11:42:04'),(98,98,1,'','','','','','','','','','2021-08-10 11:42:45','2021-08-10 11:42:45'),(99,99,1,'','','','','','','','','','2021-08-10 11:43:40','2021-08-10 11:43:40'),(100,100,1,'','','','','','','','','','2021-08-11 10:07:32','2021-08-11 10:07:32'),(101,101,1,'','','','','','','','','','2021-08-11 10:09:49','2021-08-11 10:09:49'),(102,102,1,'','','','','','','','','','2021-08-13 17:29:11','2021-08-13 17:29:11'),(103,103,1,'','','','','','','','','','2021-08-13 17:31:12','2021-08-13 17:31:12'),(104,104,1,'','','','','','','','','','2021-08-28 16:27:10','2021-08-28 16:27:10'),(105,105,1,'','','','','','','','','','2021-08-28 16:48:11','2021-09-03 19:21:56'),(106,106,1,'','','','','','','','','','2021-09-04 10:24:57','2021-09-04 10:24:57'),(107,107,1,'','','','','','','','','','2021-09-04 10:28:48','2021-09-04 10:28:48'),(108,108,1,'','','','','','','','','','2021-09-04 10:54:29','2021-09-04 10:54:29'),(109,109,1,'','','','','','','','','','2021-09-04 10:57:22','2021-09-04 10:57:22'),(110,110,1,'','','','','','','','','','2021-09-04 11:19:14','2021-09-17 12:54:27'),(111,111,1,'','','','','','','','','','2021-09-04 11:20:19','2021-09-04 11:20:19'),(112,112,1,'','','','','','','','','','2021-09-04 11:21:13','2021-09-17 12:39:26'),(113,113,1,'','','','','','','','','','2021-09-04 11:22:15','2021-09-04 11:22:15'),(114,114,1,'','','','','','','','','','2021-09-04 12:47:08','2021-09-04 12:58:46'),(115,115,1,'','','','','','','','','','2021-09-04 12:53:27','2021-09-11 17:45:37'),(116,116,1,'','','','','','','','','','2021-09-04 13:13:16','2021-09-04 13:13:16'),(117,117,1,'','','','','','','','','','2021-09-07 16:31:54','2021-09-11 17:43:02'),(118,118,1,'','','','','','','','','','2021-09-08 16:01:28','2021-09-11 17:30:52'),(119,119,1,'','','','','','','','','','2021-09-15 14:34:10','2021-09-15 14:34:10'),(120,120,1,'','','','','','','','','','2021-09-16 18:10:38','2021-09-16 18:10:38'),(121,121,1,'','','','','','','','','','2021-09-16 18:14:24','2021-09-16 18:14:24'),(122,122,1,'','','','','','','','','','2021-09-16 18:22:20','2021-09-16 18:22:20'),(123,123,1,'','','','','','','','','','2021-09-16 18:25:35','2021-09-16 18:25:35'),(124,124,1,'Deepak','','','','','','','','','2021-09-17 10:43:43','2021-09-17 10:43:43'),(125,125,1,'','','','','','','','','','2021-09-17 10:50:48','2021-09-17 10:50:48'),(126,126,1,'','','','','','','','','','2021-09-17 10:52:07','2021-09-17 10:52:07'),(127,127,1,'','','','','','','','','','2021-09-17 10:54:08','2021-09-17 10:54:08'),(128,128,1,'','','','','','','','','','2021-09-17 10:54:57','2021-09-17 10:54:57'),(129,129,1,'','','','','','','','','','2021-09-17 11:05:38','2021-09-17 11:05:38'),(130,130,1,'','','','','','','','','','2021-09-17 11:05:57','2021-09-17 11:05:57'),(131,131,1,'','','','','','','','','','2021-09-17 11:07:27','2021-09-17 11:07:27'),(132,132,1,'','','','','','','','','','2021-09-17 11:08:57','2021-09-17 11:08:57'),(133,133,1,'','','','','','','','','','2021-09-17 11:13:04','2021-09-17 11:13:04'),(134,134,1,'','','','','','','','','','2021-09-17 11:17:17','2021-09-17 11:17:17'),(135,135,1,'','','','','','','','','','2021-09-17 11:22:26','2021-09-17 11:22:26'),(136,136,1,'','','','','','','','','','2021-09-17 11:23:12','2021-09-18 10:20:21'),(137,137,1,'','','','','','','','','','2021-09-17 11:24:10','2021-09-17 11:24:10'),(138,138,1,'','','','','','','','','','2021-09-17 11:26:41','2021-09-18 10:17:43'),(139,139,1,'','','','','','','','','','2021-09-17 11:30:25','2021-09-18 10:19:44'),(140,140,1,'','','','','','','','','','2021-09-17 11:34:41','2021-09-17 11:34:41'),(141,141,1,'','','','','','','','','','2021-09-17 11:37:06','2021-09-17 12:25:09'),(142,142,1,'','','','','','','','','','2021-09-17 11:50:45','2021-09-17 12:24:08'),(143,143,1,'','','123456789012345','','','222222222222222','','','123456789012345','2021-09-18 18:17:56','2021-09-18 18:19:59'),(144,144,1,'','','123456789012345','','','123456789012345','','','111456789012345','2021-09-18 18:27:25','2021-09-18 18:27:25'),(145,145,1,'','','','','','','','','','2021-09-21 12:38:11','2021-09-21 12:38:11'),(146,146,1,'','','','','','','','','','2021-09-21 12:45:31','2021-11-30 17:15:59'),(147,147,1,'','','','','','','','','','2021-09-21 15:31:37','2021-09-21 15:31:37'),(148,148,1,'','','','','','','','','','2021-09-21 15:32:56','2021-09-21 15:32:56'),(149,149,1,'','','','','','','','','','2021-09-21 15:35:07','2021-09-21 15:35:07'),(150,150,1,'','','','','','','','','','2021-09-21 18:30:22','2021-09-21 18:30:22'),(151,151,1,'','','','','','','','','','2021-09-21 18:40:26','2021-09-21 18:40:26'),(152,152,1,'','','','','','','','','','2021-09-22 16:22:45','2021-09-22 16:22:45'),(153,153,1,'','','','','','','','','','2021-09-22 17:37:20','2021-09-22 17:37:20'),(154,154,1,'','','','','','','','','','2021-09-22 17:43:08','2021-09-22 17:43:37'),(155,155,1,'','','','','','','','','','2021-09-22 17:43:41','2021-09-22 17:43:41'),(156,156,1,'','','','','','','','','','2021-09-22 17:46:43','2021-09-22 18:28:10'),(157,157,1,'','','','','','','','','','2021-09-23 10:32:20','2021-09-23 10:32:20'),(158,158,1,'','','','','','','','','','2021-09-23 10:32:43','2021-09-23 10:32:43'),(159,159,1,'','','','','','','','','','2021-09-23 10:33:28','2021-09-23 10:33:28'),(160,160,1,'','','','','','','','','','2021-09-23 10:34:43','2021-09-23 10:34:43'),(161,161,1,'','','','','','','','','','2021-09-23 10:34:49','2021-09-23 10:34:49'),(162,162,1,'','','','','','','','','','2021-09-23 10:35:10','2021-09-23 10:35:10'),(163,163,1,'','','','','','','','','','2021-09-23 10:35:21','2021-09-23 10:35:21'),(164,164,1,'','','','','','','','','','2021-09-23 10:35:28','2021-09-23 10:35:28'),(165,165,1,'','','','','','','','','','2021-09-23 10:45:46','2021-09-23 10:45:46'),(166,166,1,'','','','','','','','','','2021-09-23 10:47:25','2021-12-06 12:42:34'),(167,167,1,'','','','','','','','','','2021-09-23 10:51:05','2021-09-23 10:51:05'),(168,168,4,'','','','','','','','','','2021-09-23 10:54:18','2021-09-23 10:54:18'),(169,169,4,'','','','','','','','','','2021-09-23 10:55:21','2021-09-23 10:55:21'),(170,170,4,'','','','','','','','','','2021-09-23 10:59:00','2021-09-23 10:59:00'),(171,171,2,'','','','','','','','','','2021-09-23 23:57:42','2021-09-23 23:57:42'),(172,172,1,'','','','','','','','','','2021-10-06 15:03:39','2021-10-06 15:03:39'),(173,173,1,'','','','','','','','','','2021-10-07 12:08:25','2021-10-07 12:08:25'),(174,174,1,'','','','','','','','','','2021-11-13 18:00:43','2021-11-13 18:00:43'),(175,175,1,'','','','','','','','','','2021-11-13 18:18:40','2021-11-13 18:18:40'),(176,176,1,'','','','','','','','','','2021-11-13 18:19:50','2021-11-13 18:19:50'),(177,177,1,'Deependr','Transport','3434335454','Meenakshi','Housewife','8938389292','Jatin Singh Rai','Jaipur','4322222222','2021-11-13 18:25:57','2021-11-13 18:25:57'),(178,178,1,'','','','','','','','','','2021-11-13 18:28:03','2021-11-13 18:28:03'),(179,179,1,'Deependr','Transport','3434335454','Sharada','Housewife','5545454545','Aryan Sharma','Test','3442144734','2021-11-13 18:29:13','2021-11-13 18:29:13'),(180,180,1,'','','','','','','','','','2021-11-30 16:38:54','2021-11-30 16:38:54'),(181,181,1,'','','','','','','','','','2021-11-30 16:42:21','2021-12-06 11:21:06'),(182,182,1,'','','','','','','','','','2021-11-30 16:44:17','2021-11-30 16:44:17'),(183,183,1,'','','','','','','','','','2021-12-03 18:34:51','2021-12-03 18:34:51'),(184,185,1,'','','','','','','','','','2021-12-04 10:08:33','2021-12-06 18:36:27'),(185,186,1,'','','','','','','','','','2021-12-04 10:22:18','2021-12-04 10:22:18'),(186,187,1,'','','','','','','','','','2021-12-04 10:24:32','2021-12-04 10:24:32'),(187,188,1,'','','','','','','','','','2021-12-04 12:33:00','2021-12-04 12:33:00'),(188,190,1,'','','','','','','','','','2021-12-04 15:12:38','2021-12-04 15:12:38'),(189,191,1,'','','','','','','','','','2021-12-04 15:14:35','2021-12-04 15:14:35'),(190,192,1,'','','','','','','','','','2021-12-04 15:18:33','2021-12-04 15:18:33'),(191,193,1,'','','','','','','','','','2021-12-04 16:05:44','2021-12-06 11:17:05'),(192,194,1,'','','','','','','','','','2021-12-07 11:20:31','2021-12-07 11:20:31'),(193,195,1,'','','','','','','','','','2021-12-08 15:45:10','2021-12-08 16:21:30'),(194,196,1,'','','','','','','','','','2021-12-08 17:00:40','2021-12-08 17:00:40'),(195,197,1,'','','','','','','','','','2021-12-09 17:17:41','2021-12-09 17:17:41'),(196,198,1,'','','','','','','','','','2022-01-28 11:29:34','2022-01-28 11:29:34'),(197,199,1,'','','','','','','','','','2022-01-28 11:36:38','2022-01-28 11:36:38'),(198,200,1,'','','','','','','','','','2022-01-28 11:42:45','2022-01-28 11:42:45'),(199,201,1,'','','','','','','','','','2022-01-28 11:55:51','2022-01-28 11:55:51'),(200,202,1,'','','','','','','','','','2022-01-28 12:01:46','2022-01-28 12:01:46'),(201,203,1,'','','','','','','','','','2022-01-29 09:58:14','2022-01-29 10:00:21');
/*!40000 ALTER TABLE `resident_parents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_has_permissions`
--

DROP TABLE IF EXISTS `role_has_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_has_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL,
  `role_id` bigint(20) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_has_permissions`
--

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

--
-- Table structure for table `roles`
--

DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `guard_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `roles`
--

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'owner','web','2021-04-16 06:26:32','2021-04-16 06:26:41'),(2,'manager','web','2021-04-16 06:26:45','2021-04-16 06:26:49');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `room_amenities`
--

DROP TABLE IF EXISTS `room_amenities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `room_amenities` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `room_id` int(11) NOT NULL,
  `amenity_id` int(11) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=173 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `room_amenities`
--

LOCK TABLES `room_amenities` WRITE;
/*!40000 ALTER TABLE `room_amenities` DISABLE KEYS */;
INSERT INTO `room_amenities` VALUES (17,1,11,12,1,'2021-05-13 20:39:57','2021-05-13 20:39:57'),(18,1,11,13,1,'2021-05-13 20:39:57','2021-05-13 20:39:57'),(19,1,11,14,1,'2021-05-13 20:39:57','2021-05-13 20:39:57'),(20,1,4,10,1,'2021-05-13 20:58:23','2021-05-13 20:58:23'),(21,1,4,13,1,'2021-05-13 20:58:23','2021-05-13 20:58:23'),(32,1,8,13,1,'2021-05-19 08:26:13','2021-05-19 08:26:13'),(47,1,6,5,1,'2021-05-21 17:13:28','2021-05-21 17:13:28'),(48,1,6,8,1,'2021-05-21 17:13:28','2021-05-21 17:13:28'),(49,1,13,4,1,'2021-05-21 20:00:03','2021-05-21 20:00:03'),(50,1,13,10,1,'2021-05-21 20:00:03','2021-05-21 20:00:03'),(51,1,13,12,1,'2021-05-21 20:00:03','2021-05-21 20:00:03'),(52,1,13,14,1,'2021-05-21 20:00:03','2021-05-21 20:00:03'),(53,1,13,15,1,'2021-05-21 20:00:03','2021-05-21 20:00:03'),(54,1,14,4,1,'2021-05-21 20:07:52','2021-05-21 20:07:52'),(55,1,14,7,1,'2021-05-21 20:07:52','2021-05-21 20:07:52'),(56,1,14,12,1,'2021-05-21 20:07:52','2021-05-21 20:07:52'),(57,1,15,6,1,'2021-05-21 20:13:19','2021-05-21 20:13:19'),(58,1,15,8,1,'2021-05-21 20:13:19','2021-05-21 20:13:19'),(59,1,15,9,1,'2021-05-21 20:13:19','2021-05-21 20:13:19'),(63,1,16,2,1,'2021-05-21 20:17:37','2021-05-21 20:17:37'),(64,1,16,5,1,'2021-05-21 20:17:37','2021-05-21 20:17:37'),(65,1,16,10,1,'2021-05-21 20:17:37','2021-05-21 20:17:37'),(80,4,18,9,2,'2021-05-22 15:19:47','2021-05-22 15:19:47'),(81,4,18,11,2,'2021-05-22 15:19:47','2021-05-22 15:19:47'),(82,4,18,12,2,'2021-05-22 15:19:47','2021-05-22 15:19:47'),(96,4,21,10,2,'2021-05-22 15:21:51','2021-05-22 15:21:51'),(97,4,21,11,2,'2021-05-22 15:21:51','2021-05-22 15:21:51'),(98,4,21,12,2,'2021-05-22 15:21:51','2021-05-22 15:21:51'),(99,4,21,14,2,'2021-05-22 15:21:51','2021-05-22 15:21:51'),(100,4,21,15,2,'2021-05-22 15:21:51','2021-05-22 15:21:51'),(101,4,19,2,2,'2021-05-22 15:22:04','2021-05-22 15:22:04'),(102,4,19,5,2,'2021-05-22 15:22:04','2021-05-22 15:22:04'),(103,4,19,9,2,'2021-05-22 15:22:04','2021-05-22 15:22:04'),(104,4,19,11,2,'2021-05-22 15:22:04','2021-05-22 15:22:04'),(105,4,20,10,2,'2021-05-22 15:22:11','2021-05-22 15:22:11'),(106,4,20,11,2,'2021-05-22 15:22:11','2021-05-22 15:22:11'),(107,4,20,12,2,'2021-05-22 15:22:11','2021-05-22 15:22:11'),(108,4,20,15,2,'2021-05-22 15:22:11','2021-05-22 15:22:11'),(111,4,22,4,2,'2021-05-22 15:22:34','2021-05-22 15:22:34'),(112,4,22,5,2,'2021-05-22 15:22:34','2021-05-22 15:22:34'),(113,4,22,9,2,'2021-05-22 15:22:34','2021-05-22 15:22:34'),(120,4,23,4,2,'2021-05-22 15:29:34','2021-05-22 15:29:34'),(121,4,23,10,2,'2021-05-22 15:29:34','2021-05-22 15:29:34'),(122,4,23,11,2,'2021-05-22 15:29:34','2021-05-22 15:29:34'),(123,4,23,14,2,'2021-05-22 15:29:34','2021-05-22 15:29:34'),(124,1,1,4,1,'2021-05-22 18:12:24','2021-05-22 18:12:24'),(125,1,1,11,1,'2021-05-22 18:12:24','2021-05-22 18:12:24'),(126,1,1,12,1,'2021-05-22 18:12:24','2021-05-22 18:12:24'),(127,1,24,3,1,'2021-05-22 18:12:39','2021-05-22 18:12:39'),(128,1,24,7,1,'2021-05-22 18:12:39','2021-05-22 18:12:39'),(129,1,24,9,1,'2021-05-22 18:12:39','2021-05-22 18:12:39'),(130,1,12,4,1,'2021-05-25 12:49:58','2021-05-25 12:49:58'),(131,1,12,5,1,'2021-05-25 12:49:58','2021-05-25 12:49:58'),(132,1,12,11,1,'2021-05-25 12:49:58','2021-05-25 12:49:58'),(133,1,25,10,1,'2021-05-25 14:25:35','2021-05-25 14:25:35'),(134,1,25,11,1,'2021-05-25 14:25:35','2021-05-25 14:25:35'),(135,1,26,1,1,'2021-06-19 15:07:21','2021-06-19 15:07:21'),(136,1,26,5,1,'2021-06-19 15:07:21','2021-06-19 15:07:21'),(137,1,26,6,1,'2021-06-19 15:07:21','2021-06-19 15:07:21'),(150,1,2,12,1,'2021-07-09 17:44:37','2021-07-09 17:44:37'),(151,2,27,3,1,'2021-07-29 10:30:16','2021-07-29 10:30:16'),(152,2,29,2,1,'2021-07-29 10:30:42','2021-07-29 10:30:42'),(153,2,29,4,1,'2021-07-29 10:30:42','2021-07-29 10:30:42'),(154,2,29,6,1,'2021-07-29 10:30:42','2021-07-29 10:30:42'),(155,2,29,8,1,'2021-07-29 10:30:42','2021-07-29 10:30:42'),(156,2,31,6,2,'2021-09-23 23:56:43','2021-09-23 23:56:43'),(157,2,31,12,2,'2021-09-23 23:56:43','2021-09-23 23:56:43'),(158,2,31,14,2,'2021-09-23 23:56:43','2021-09-23 23:56:43'),(159,1,32,1,1,'2021-11-30 11:13:46','2021-11-30 11:13:46'),(160,1,32,4,1,'2021-11-30 11:13:46','2021-11-30 11:13:46'),(161,1,32,11,1,'2021-11-30 11:13:46','2021-11-30 11:13:46'),(162,1,32,12,1,'2021-11-30 11:13:46','2021-11-30 11:13:46'),(169,1,33,7,1,'2022-03-29 11:18:04','2022-03-29 11:18:04'),(170,1,33,9,1,'2022-03-29 11:18:04','2022-03-29 11:18:04'),(171,1,34,1,1,'2022-03-29 11:58:14','2022-03-29 11:58:14'),(172,1,34,5,1,'2022-03-29 11:58:14','2022-03-29 11:58:14');
/*!40000 ALTER TABLE `room_amenities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rooms`
--

DROP TABLE IF EXISTS `rooms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rooms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `room_no` varchar(50) NOT NULL,
  `availability` enum('1','2','3') NOT NULL DEFAULT '1' COMMENT '1=yes,2=No,3=partial	',
  `status` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1=active,2=inactive',
  `has_balcony` tinyint(4) NOT NULL DEFAULT 2 COMMENT '1 = Yes / 2= No',
  `is_attach` tinyint(4) NOT NULL DEFAULT 2 COMMENT '1 = Yes / 2= No',
  `occupancy` int(11) NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rooms`
--

LOCK TABLES `rooms` WRITE;
/*!40000 ALTER TABLE `rooms` DISABLE KEYS */;
INSERT INTO `rooms` VALUES (1,1,'R 200','3','1',2,2,10,1,'2021-04-16 16:10:03','2022-01-31 10:26:12'),(2,1,'room 201','3','1',2,1,10,1,'2021-04-16 16:10:15','2022-03-29 11:47:26'),(3,1,'room 202','2','1',2,1,10,1,'2021-04-16 16:10:28','2021-09-17 11:08:57'),(4,1,'Room No 200','2','1',1,2,10,1,'2021-04-26 01:56:17','2021-10-16 11:35:49'),(5,1,'Room 301','2','1',1,1,10,1,'2021-04-26 02:01:21','2021-09-17 11:13:04'),(6,1,'Room 302','2','1',2,2,10,1,'2021-04-26 06:34:49','2021-11-30 16:42:21'),(7,2,'201','2','1',2,1,10,1,'2021-05-01 10:29:43','2021-07-19 17:30:54'),(8,1,'401','2','1',1,1,10,1,'2021-05-06 17:27:31','2021-08-10 11:42:45'),(11,1,'Room 404','1','1',2,2,10,1,'2021-05-13 20:08:47','2021-05-13 20:39:57'),(12,1,'855','1','1',2,2,10,1,'2021-05-21 17:05:45','2021-05-25 12:49:58'),(16,1,'758','2','1',2,2,10,1,'2021-05-21 20:17:08','2021-11-30 16:38:54'),(18,4,'R 101','2','1',2,2,10,2,'2021-05-22 14:46:09','2021-09-23 10:54:18'),(19,4,'R102','2','1',2,2,10,2,'2021-05-22 14:46:32','2021-09-23 10:55:21'),(20,4,'R 103','2','1',2,2,10,2,'2021-05-22 15:20:28','2021-10-08 18:32:23'),(21,4,'R 104','1','1',2,2,10,2,'2021-05-22 15:21:08','2021-05-22 15:21:51'),(22,4,'R105','2','1',2,2,10,2,'2021-05-22 15:22:26','2021-10-08 18:42:29'),(23,4,'R 106','1','1',2,2,10,2,'2021-05-22 15:29:13','2021-05-22 15:29:34'),(24,1,'R 497','2','1',2,2,10,1,'2021-05-22 18:12:39','2021-09-17 12:39:26'),(25,1,'R567','2','1',2,2,10,1,'2021-05-25 14:25:35','2021-11-30 17:04:52'),(26,1,'Room-67','2','1',2,2,10,1,'2021-06-19 15:07:21','2021-09-17 10:54:08'),(27,2,'G2','2','1',2,2,10,1,'2021-07-29 10:30:16','2021-08-05 16:08:56'),(28,2,'G3','2','1',2,2,10,1,'2021-07-29 10:30:27','2021-08-04 17:57:17'),(29,2,'G4','2','1',2,2,10,1,'2021-07-29 10:30:42','2021-08-07 12:10:43'),(30,1,'145','3','1',2,2,10,1,'2021-07-29 18:01:17','2021-12-06 12:42:34'),(31,2,'G5','2','1',2,2,10,2,'2021-09-23 23:56:43','2021-10-08 18:31:15'),(32,1,'Sdafsdf','1','1',2,2,10,1,'2021-11-30 11:13:46','2021-11-30 11:13:46'),(33,1,'Z Sir Wala','1','1',2,2,10,1,'2022-03-29 10:06:06','2022-03-29 11:18:26'),(34,1,'Z Flat','1','1',2,2,2,1,'2022-03-29 11:58:14','2022-03-29 11:58:44');
/*!40000 ALTER TABLE `rooms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `security_amounts`
--

DROP TABLE IF EXISTS `security_amounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `security_amounts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `res_id` int(11) NOT NULL,
  `amount` varchar(200) NOT NULL,
  `remark` varchar(250) NOT NULL,
  `status` enum('1','2') NOT NULL,
  `payment_id` int(11) NOT NULL,
  `pay_date` datetime NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `security_amounts`
--

LOCK TABLES `security_amounts` WRITE;
/*!40000 ALTER TABLE `security_amounts` DISABLE KEYS */;
INSERT INTO `security_amounts` VALUES (1,1,101,'400','Pending amount 1000','1',251,'2021-08-21 00:00:00',1,'2021-08-21 12:43:15','2021-08-21 12:43:15'),(2,1,101,'400','Testing','1',252,'2021-08-21 00:00:00',1,'2021-08-21 14:19:51','2021-08-21 14:19:51'),(3,1,98,'1000','hvhcgjhjb','1',253,'2021-08-21 00:00:00',1,'2021-08-21 15:48:04','2021-08-21 15:48:04'),(4,1,105,'1000','Testing','1',254,'2021-08-28 00:00:00',1,'2021-08-28 16:49:02','2021-08-28 16:49:02'),(5,1,105,'2000','fhgvhhbh','1',255,'2021-08-01 00:00:00',1,'2021-08-28 17:08:32','2021-08-28 17:08:32'),(6,1,105,'2000','','1',256,'2021-08-13 00:00:00',1,'2021-08-28 17:22:21','2021-08-28 17:22:21'),(7,1,112,'3444','','2',258,'2021-09-04 00:00:00',1,'2021-09-04 11:21:13','2021-09-06 13:21:54'),(8,1,113,'3000','','2',259,'2021-09-04 00:00:00',1,'2021-09-04 11:22:15','2021-09-06 13:21:40'),(9,1,128,'2000','','1',261,'2021-09-17 00:00:00',1,'2021-09-17 10:54:57','2021-09-17 10:54:57'),(10,1,130,'2000','','1',262,'2021-09-17 00:00:00',1,'2021-09-17 11:05:57','2021-09-17 11:05:57'),(11,1,131,'3333333333','','2',263,'2021-09-17 00:00:00',1,'2021-09-17 11:07:27','2021-09-23 21:48:14'),(12,1,132,'322','','1',264,'2021-09-17 00:00:00',1,'2021-09-17 11:08:57','2021-09-17 11:08:57'),(13,1,133,'2000','','1',265,'2021-09-17 00:00:00',1,'2021-09-17 11:13:04','2021-09-17 11:13:04'),(14,1,134,'3000','','1',266,'2021-09-17 00:00:00',1,'2021-09-17 11:17:17','2021-09-17 11:17:17'),(15,1,135,'8000','','1',267,'2021-09-17 00:00:00',1,'2021-09-17 11:22:26','2021-09-17 11:22:26'),(16,1,137,'8000','','1',268,'2021-09-17 00:00:00',1,'2021-09-17 11:24:10','2021-09-17 11:24:10'),(17,1,139,'3000','','1',270,'2021-09-17 00:00:00',1,'2021-09-17 11:30:25','2021-09-17 11:30:25'),(18,1,140,'2000','','1',271,'2021-09-04 00:00:00',1,'2021-09-17 11:34:41','2021-09-17 11:34:41'),(19,1,142,'2000','','1',272,'2021-09-04 00:00:00',1,'2021-09-17 11:50:45','2021-09-17 11:50:45'),(20,1,145,'10000','','1',282,'2021-09-21 00:00:00',1,'2021-09-21 12:38:11','2021-09-21 12:38:11'),(21,2,82,'300','','1',283,'2021-09-21 00:00:00',1,'2021-09-21 18:25:18','2021-09-21 18:25:18'),(22,1,150,'1000','','1',284,'2021-09-21 00:00:00',1,'2021-09-21 18:30:22','2021-09-21 18:30:22'),(23,1,152,'10','','1',288,'2021-09-22 00:00:00',1,'2021-09-22 16:22:45','2021-09-22 16:22:45'),(24,1,192,'2000','','1',353,'2021-12-07 00:00:00',1,'2021-12-07 16:15:46','2021-12-07 16:15:46');
/*!40000 ALTER TABLE `security_amounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sendgrid_details`
--

DROP TABLE IF EXISTS `sendgrid_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sendgrid_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `mail_id` text NOT NULL,
  `name` text NOT NULL,
  `password` text NOT NULL,
  `api_key` text NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sendgrid_details`
--

LOCK TABLES `sendgrid_details` WRITE;
/*!40000 ALTER TABLE `sendgrid_details` DISABLE KEYS */;
INSERT INTO `sendgrid_details` VALUES (1,1,'kartik.agarwal@bthawk.com','Kartik Agarwal','Bthawk#@43214321','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','2021-10-07 00:00:00','2021-10-07 00:00:00');
/*!40000 ALTER TABLE `sendgrid_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequences`
--

DROP TABLE IF EXISTS `sequences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequences` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `type` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `number` varchar(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequences`
--

LOCK TABLES `sequences` WRITE;
/*!40000 ALTER TABLE `sequences` DISABLE KEYS */;
INSERT INTO `sequences` VALUES (1,1,'Receipt','383','2021-04-27 15:16:56','2022-01-29 09:58:14'),(2,2,'Receipt','14','2021-05-05 04:54:31','2021-09-21 18:25:18'),(3,1,'Refund','31','2021-06-02 11:23:34','2021-12-07 16:34:08'),(4,0,'Receipt','2','2021-08-13 16:50:08','2021-08-13 16:52:03'),(5,4,'Receipt','1','2021-10-08 17:39:18','2021-10-08 17:39:18');
/*!40000 ALTER TABLE `sequences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sliders`
--

DROP TABLE IF EXISTS `sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `slider_url` text NOT NULL,
  `description` text NOT NULL DEFAULT '',
  `status` enum('1','2') NOT NULL COMMENT '1 = Active / 2=Inactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sliders`
--

LOCK TABLES `sliders` WRITE;
/*!40000 ALTER TABLE `sliders` DISABLE KEYS */;
INSERT INTO `sliders` VALUES (10,2,'uploads/slider/phpOVE4Cv.jpg','','1',1,'2021-11-13 11:48:29','2021-11-13 11:48:29'),(17,1,'uploads/slider/phpNpWBQi.jpg','','1',1,'2021-11-13 18:35:38','2021-11-13 18:35:38'),(18,1,'uploads/slider/phpHUNrWa.jpg','','1',1,'2021-11-13 18:36:41','2021-11-13 18:36:41');
/*!40000 ALTER TABLE `sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sms_days`
--

DROP TABLE IF EXISTS `sms_days`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sms_days` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `seven_day` tinyint(4) NOT NULL,
  `third_day` tinyint(4) NOT NULL,
  `last_day` tinyint(4) NOT NULL,
  `same_day` tinyint(4) NOT NULL,
  `alternate_day` tinyint(4) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sms_days`
--

LOCK TABLES `sms_days` WRITE;
/*!40000 ALTER TABLE `sms_days` DISABLE KEYS */;
INSERT INTO `sms_days` VALUES (3,1,1,1,0,1,1,'2021-09-06 19:47:47','2021-09-06 19:49:11',1);
/*!40000 ALTER TABLE `sms_days` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staff`
--

DROP TABLE IF EXISTS `staff`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staff` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `staff_name` varchar(100) NOT NULL,
  `phone` varchar(100) NOT NULL,
  `address` text NOT NULL,
  `id_proof` text NOT NULL,
  `work` varchar(100) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1 Active. 2 Deactive',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staff`
--

LOCK TABLES `staff` WRITE;
/*!40000 ALTER TABLE `staff` DISABLE KEYS */;
INSERT INTO `staff` VALUES (1,1,'Naveen','5676546879','test jaipur','id_proof/phpyATiFY.jpg','Mess',1,1,'2021-07-03 05:17:52','2021-07-17 11:50:18'),(5,1,'Gopal','0000000','Aaaaa','','',1,1,'2021-07-05 12:09:50','2021-07-22 00:23:59'),(6,1,'Testing','1234667890','','','',1,1,'2021-07-05 12:10:20','2021-07-17 05:38:12'),(7,1,'Testing','1098765463','Testing','id_proof/phpscR5b8.jpg','Mesh',1,1,'2021-07-05 12:29:47','2021-07-17 05:32:39'),(8,1,'Zeeshan','9659432646','Test','id_proof/phpoOYeVc.jpg','Developer',1,1,'2021-07-15 16:33:15','2021-07-17 05:38:07'),(9,1,'Gnasdss','4234323423','Sadas','','Sdsad',2,1,'2021-07-16 11:49:50','2021-07-17 11:49:44'),(10,1,'Allam','4234323423','Sodala','','Aaa-walalm',1,1,'2021-07-16 11:51:55','2021-07-17 05:37:58'),(11,1,'Gnasdss','232222','','','',1,1,'2021-07-16 12:02:40','2021-07-17 05:32:36'),(12,1,'Test22','4222222222','Jaipur','','Job',1,1,'2021-07-16 12:05:26','2021-07-17 05:37:54'),(13,1,'Kittu Sir','4222222222','Jaipur','id_proof/60f14e3a9feaf.png','Developer',1,1,'2021-07-16 12:08:13','2021-07-17 05:52:45'),(14,1,'Mansi','2222222222','Udaipur','id_proof/phpQjJEbL.jpg','Designer',1,1,'2021-07-16 12:10:19','2021-07-17 07:05:02'),(15,1,'Jeeshan Sir','3333333333','Jaipur','','Job',1,1,'2021-07-16 12:11:55','2021-07-17 05:37:42'),(16,1,'Shilpa','333333333333333','Rajapark','','Developer',1,1,'2021-09-18 18:22:31','2021-09-18 18:23:03'),(17,2,'Deepiu','2424242432','','','Mess Incharge',1,2,'2021-09-23 23:42:55','2021-09-23 23:42:55');
/*!40000 ALTER TABLE `staff` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `states`
--

DROP TABLE IF EXISTS `states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `states` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `state_name` varchar(100) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=203 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `states`
--

LOCK TABLES `states` WRITE;
/*!40000 ALTER TABLE `states` DISABLE KEYS */;
INSERT INTO `states` VALUES (1,'Andhra Pradesh','2021-05-27 23:54:50','2021-05-27 23:54:50'),(2,'Arunachal Pradesh','2021-05-27 23:54:50','2021-05-27 23:54:50'),(3,'Assam','2021-05-27 23:54:50','2021-05-27 23:54:50'),(4,'Bihar','2021-05-27 23:54:50','2021-05-27 23:54:50'),(5,'Chhattisgarh','2021-05-27 23:54:50','2021-05-27 23:54:50'),(6,'Goa','2021-05-27 23:54:50','2021-05-27 23:54:50'),(7,'Gujarat','2021-05-27 23:54:51','2021-05-27 23:54:51'),(8,'Haryana','2021-05-27 23:54:51','2021-05-27 23:54:51'),(9,'Himachal Pradesh','2021-05-27 23:54:51','2021-05-27 23:54:51'),(10,'Jammu and Kashmir','2021-05-27 23:54:51','2021-05-27 23:54:51'),(11,'Jharkhand','2021-05-27 23:54:51','2021-05-27 23:54:51'),(12,'Karnataka','2021-05-27 23:54:51','2021-05-27 23:54:51'),(13,'Kerala','2021-05-27 23:54:51','2021-05-27 23:54:51'),(14,'Madhya Pradesh','2021-05-27 23:54:51','2021-05-27 23:54:51'),(15,'Maharashtra','2021-05-27 23:54:51','2021-05-27 23:54:51'),(16,'Manipur','2021-05-27 23:54:51','2021-05-27 23:54:51'),(17,'Meghalaya','2021-05-27 23:54:51','2021-05-27 23:54:51'),(18,'Mizoram','2021-05-27 23:54:51','2021-05-27 23:54:51'),(19,'Nagaland','2021-05-27 23:54:51','2021-05-27 23:54:51'),(20,'Odisha','2021-05-27 23:54:51','2021-05-27 23:54:51'),(21,'Punjab','2021-05-27 23:54:51','2021-05-27 23:54:51'),(22,'Rajasthan','2021-05-27 23:54:51','2021-05-27 23:54:51'),(23,'Sikkim','2021-05-27 23:54:51','2021-05-27 23:54:51'),(24,'Tamil Nadu','2021-05-27 23:54:51','2021-05-27 23:54:51'),(25,'Telangana','2021-05-27 23:54:51','2021-05-27 23:54:51'),(26,'Tripura','2021-05-27 23:54:51','2021-05-27 23:54:51'),(27,'Uttarakhand','2021-05-27 23:54:51','2021-05-27 23:54:51'),(28,'Uttar Pradesh','2021-05-27 23:54:51','2021-05-27 23:54:51'),(29,'West Bengal','2021-05-27 23:54:51','2021-05-27 23:54:51'),(30,'Andaman and Nicobar Islands','2021-05-27 23:54:51','2021-05-27 23:54:51'),(31,'Chandigarh','2021-05-27 23:54:51','2021-05-27 23:54:51'),(32,'Dadra and Nagar Haveli','2021-05-27 23:54:51','2021-05-27 23:54:51'),(33,'Daman and Diu','2021-05-27 23:54:51','2021-05-27 23:54:51'),(34,'Delhi','2021-05-27 23:54:51','2021-05-27 23:54:51'),(35,'Lakshadweep','2021-05-27 23:54:51','2021-05-27 23:54:51'),(36,'Puducherry','2021-05-27 23:54:51','2021-05-27 23:54:51');
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_posts`
--

DROP TABLE IF EXISTS `tbl_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_posts` (
  `posts_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` text NOT NULL,
  `title_slug` text NOT NULL,
  `content` longtext NOT NULL,
  `tags` text NOT NULL,
  `image` varchar(222) NOT NULL,
  `posted` varchar(222) NOT NULL,
  `postedDate` varchar(222) NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`posts_id`)
) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_posts`
--

LOCK TABLES `tbl_posts` WRITE;
/*!40000 ALTER TABLE `tbl_posts` DISABLE KEYS */;
INSERT INTO `tbl_posts` VALUES (178,'Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...','neque-porro-quisquam-est-qui-dolorem-ipsum-quia-dolor-sit-amet-consectetur-adipisci-velit','<div>\r\n<h2>What is Lorem Ipsum?</h2>\r\n\r\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n</div>\r\n\r\n<div>\r\n<h2>Why do we use it?</h2>\r\n\r\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using &#39;Content here, content here&#39;, making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for &#39;lorem ipsum&#39; will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>\r\n</div>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<div>\r\n<h2>Where does it come from?</h2>\r\n\r\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of &quot;de Finibus Bonorum et Malorum&quot; (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, &quot;Lorem ipsum dolor sit amet..&quot;, comes from a line in section 1.10.32.</p>\r\n\r\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from &quot;de Finibus Bonorum et Malorum&quot; by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>\r\n\r\n<h2>Where can I get some?</h2>\r\n\r\n<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don&#39;t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn&#39;t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>\r\n</div>\r\n','Ipsum,Lorem ,sheets ','neque-porro-quisquam-est-qui-dolorem-ipsum-quia-dolor-sit-amet-consectetur-adipisci-velit-1631881765.jpg','Vishnu','2021-09-17','1','2021-09-17 17:59:25'),(179,'The standard Lorem Ipsum passage, used since the 1500s','standard-lorem-ipsum-passage-used-since-1500s','<p>&quot;Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&quot;</p>\r\n\r\n<h3>Section 1.10.32 of &quot;de Finibus Bonorum et Malorum&quot;, written by Cicero in 45 BC</h3>\r\n\r\n<p>&quot;Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?&quot;</p>\r\n\r\n<h3>1914 translation by H. Rackham</h3>\r\n\r\n<p>&quot;But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?&quot;</p>\r\n\r\n<h3>Section 1.10.33 of &quot;de Finibus Bonorum et Malorum&quot;, written by Cicero in 45 BC</h3>\r\n\r\n<p>&quot;At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.&quot;</p>\r\n\r\n<h3>1914 translation by H. Rackham</h3>\r\n\r\n<p>&quot;On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains.&quot;</p>\r\n','Rackham,and ,greater ','standard-lorem-ipsum-passage-used-since-1500s-1631968327.jpg','Vishnu','2021-09-18','1','2021-09-18 17:59:12'),(180,'Apakah Lorem Ipsum itu?','apakah-lorem-ipsum-itu','<div>\r\n<p><strong>Lorem Ipsum</strong> adalah contoh teks atau dummy dalam industri percetakan dan penataan huruf atau typesetting. Lorem Ipsum telah menjadi standar contoh teks sejak tahun 1500an, saat seorang tukang cetak yang tidak dikenal mengambil sebuah kumpulan teks dan mengacaknya untuk menjadi sebuah buku contoh huruf. Ia tidak hanya bertahan selama 5 abad, tapi juga telah beralih ke penataan huruf elektronik, tanpa ada perubahan apapun. Ia mulai dipopulerkan pada tahun 1960 dengan diluncurkannya lembaran-lembaran Letraset yang menggunakan kalimat-kalimat dari Lorem Ipsum, dan seiring munculnya perangkat lunak Desktop Publishing seperti Aldus PageMaker juga memiliki versi Lorem Ipsum.</p>\r\n</div>\r\n\r\n<div>\r\n<h2>Mengapa kita menggunakannya?</h2>\r\n\r\n<p>Sudah merupakan fakta bahwa seorang pembaca akan terpengaruh oleh isi tulisan dari sebuah halaman saat ia melihat tata letaknya. Maksud penggunaan Lorem Ipsum adalah karena ia kurang lebih memiliki penyebaran huruf yang normal, ketimbang menggunakan kalimat seperti &quot;Bagian isi disini, bagian isi disini&quot;, sehingga ia seolah menjadi naskah Inggris yang bisa dibaca. Banyak paket Desktop Publishing dan editor situs web yang kini menggunakan Lorem Ipsum sebagai contoh teks. Karenanya pencarian terhadap kalimat &quot;Lorem Ipsum&quot; akan berujung pada banyak situs web yang masih dalam tahap pengembangan. Berbagai versi juga telah berubah dari tahun ke tahun, kadang karena tidak sengaja, kadang karena disengaja (misalnya karena dimasukkan unsur humor atau semacamnya)</p>\r\n</div>\r\n\r\n<p>&nbsp;</p>\r\n\r\n<div>\r\n<h2>Dari mana asalnya?</h2>\r\n\r\n<p>Tidak seperti anggapan banyak orang, Lorem Ipsum bukanlah teks-teks yang diacak. Ia berakar dari sebuah naskah sastra latin klasik dari era 45 sebelum masehi, hingga bisa dipastikan usianya telah mencapai lebih dari 2000 tahun. Richard McClintock, seorang professor Bahasa Latin dari Hampden-Sidney College di Virginia, mencoba mencari makna salah satu kata latin yang dianggap paling tidak jelas, yakni consectetur, yang diambil dari salah satu bagian Lorem Ipsum. Setelah ia mencari maknanya di di literatur klasik, ia mendapatkan sebuah sumber yang tidak bisa diragukan. Lorem Ipsum berasal dari bagian 1.10.32 dan 1.10.33 dari naskah &quot;de Finibus Bonorum et Malorum&quot; (Sisi Ekstrim dari Kebaikan dan Kejahatan) karya Cicero, yang ditulis pada tahun 45 sebelum masehi. BUku ini adalah risalah dari teori etika yang sangat terkenal pada masa Renaissance. Baris pertama dari Lorem Ipsum, &quot;Lorem ipsum dolor sit amet..&quot;, berasal dari sebuah baris di bagian 1.10.32.</p>\r\n\r\n<p>Bagian standar dari teks Lorem Ipsum yang digunakan sejak tahun 1500an kini di reproduksi kembali di bawah ini untuk mereka yang tertarik. Bagian 1.10.32 dan 1.10.33 dari &quot;de Finibus Bonorum et Malorum&quot; karya Cicero juga di reproduksi persis seperti bentuk aslinya, diikuti oleh versi bahasa Inggris yang berasal dari terjemahan tahun 1914 oleh H. Rackham.</p>\r\n</div>\r\n','Bagian,Bagian ,teori ','apakah-lorem-ipsum-itu-1631968526.jpg','Vishnu','2021-09-19','1','2021-09-18 18:03:30');
/*!40000 ALTER TABLE `tbl_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tenant_logins`
--

DROP TABLE IF EXISTS `tenant_logins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tenant_logins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contact` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `password` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `status` enum('1','2') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '1=active,2=inactive',
  `imei_no` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `carrier_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `app_version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `phone_model` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `phone_manufracture` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `sdk_phone_version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `device_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `os_version` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'Android',
  `token_date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tenant_logins`
--

LOCK TABLES `tenant_logins` WRITE;
/*!40000 ALTER TABLE `tenant_logins` DISABLE KEYS */;
INSERT INTO `tenant_logins` VALUES (1,'8899889988','$2y$10$AMeHPpEIccNQKfpUyMAQNO0Km9HtHgF5mX8p4ju3eHEiN8t1lTfz6','1','','','','','','','','','Android','2021-11-30 11:37:44','',0,'2021-11-30 11:37:44','2021-11-30 11:37:44'),(2,'6295319865','$2y$10$mvm7t3uSGevh78uPLRX7HeHfW4WNo.FsuIZ992Q16WXyTUL6gbV8S','1','','','','','','','','','Android','2021-11-30 11:39:00','',0,'2021-11-30 11:39:00','2021-11-30 11:39:00'),(3,'7689564835','$2y$10$4rVRy5uhHW5CMKhGM7iS7.ODZvYcXlIFMMhsrrkdzIJAUwgcRdfTG','1','','','','','','','','','Android','2021-11-30 11:43:30','',0,'2021-11-30 11:43:30','2021-11-30 11:43:30'),(5,'8769606272','$2y$10$c2wCSBgN/qmCu93j510EBee0Lkubv7ULAzkKTvGe9qMsxBLR9FsMC','1','','','','','','','','','Android','2021-11-30 16:42:21','',0,'2021-11-30 16:42:21','2021-11-30 16:42:21'),(6,'5523534341','$2y$10$jRGi2cCdgX8l5OxVbTXkf.A/3aurIOUzKAMaSi0ivQoZKjKLU6PPy','1','','','','','','','','','Android','2021-11-30 17:04:52','',0,'2021-11-30 17:04:52','2021-11-30 17:04:52'),(7,'23232323232','$2y$10$6pthmcR7ljH7IXaojiXsbuisc9eV6SMGxfE5UMijfDPUoTySXo94G','1','','','','','','','','','Android','2021-12-03 18:32:12','',0,'2021-12-03 18:32:12','2021-12-03 18:32:12'),(8,'32323232223','$2y$10$QS5otfDt32GWvT5fqvLtAez6fQfpUKXabdE8Mxcn56MS18P4/bhAO','1','','','','','','','','','Android','2021-12-03 18:33:43','',0,'2021-12-03 18:33:43','2021-12-03 18:33:43'),(9,'343434343434343','$2y$10$QJoKK3PYIpLW0n4r0xeX6eOmd2ZKN0/SjdJCN1xqDXv2E8SqUgWYC','1','','','','','','','','','Android','2021-12-03 18:34:51','',0,'2021-12-03 18:34:51','2021-12-03 18:34:51'),(10,'34343434','$2y$10$NunBHmpSTfNOwo.9jFaod.0LV/B269bilQtk6VK.O6FQBUdrKouPa','1','','','','','','','','','Android','2021-12-03 18:36:32','',0,'2021-12-03 18:36:32','2021-12-03 18:36:32'),(11,'334424222329832','$2y$10$NkDVQZkWlRsMKyfpAgzYqO5SnzeDrBzpvFKFUfNuXMAc1bEXTQWWO','1','','','','','','','','','Android','2021-12-04 10:08:33','',0,'2021-12-04 10:08:33','2021-12-04 10:08:33'),(12,'342432233333333','$2y$10$Tt/HHS5/sVV6EEffRq52B.1L/lLvPfYoGQZzdQslQT3QCyBYGqYFa','1','','','','','','','','','Android','2021-12-04 10:22:18','',0,'2021-12-04 10:22:18','2021-12-04 10:22:18'),(13,'443433434343433','$2y$10$.5qTbtIU67l.XONYRkd/o.k1BtLDh0zZaP.DCGvarpUbfTO.DASpO','1','','','','','','','','','Android','2021-12-04 10:24:32','',0,'2021-12-04 10:24:32','2021-12-04 10:24:32'),(14,'234234234234232','$2y$10$sC1ujTaz08MIZW1f57eef.EVMmev5NYWtL8NaVoEqh7/9UOInkTru','1','','','','','','','','','Android','2021-12-04 12:16:58','',0,'2021-12-04 12:16:58','2021-12-04 12:16:58'),(15,'324234234324','$2y$10$350o9sEpJpi2v6B9zqiEZutn6oBjrr0i.f263AudJRzHizLcOy/iS','1','','','','','','','','','Android','2021-12-04 12:21:01','',0,'2021-12-04 12:21:01','2021-12-04 12:21:01'),(16,'434343434343434','$2y$10$3EivfAMuY9F7sM9FOwfglO8nyutQbCR4K0xKtyY5VMZK26PAQDr3K','1','','','','','','','','','Android','2021-12-04 12:33:00','',0,'2021-12-04 12:33:00','2021-12-04 12:33:00'),(17,'324324232343','$2y$10$2N9tWmxpLQlLHzooqu8iD..T8FMARzegusPohLI523lDXmZ5fdqFe','1','','','','','','','','','Android','2021-12-04 15:18:33','',0,'2021-12-04 15:18:33','2021-12-04 15:18:33'),(18,'456666666666666','$2y$10$7E3ODBC0epBiDJ6ufw4MKO4ANvc8Dp3VE3PsoxVGvcyiZf3wl95ka','1','','','','','','','','','Android','2021-12-04 16:05:44','',0,'2021-12-04 16:05:44','2021-12-04 16:05:44'),(19,'3874678332','$2y$10$HC.zlzdj34aTa2IglfFAUOmtHwbaav01HxSIt501QAE.Tkm1K8sFO','1','','','','','','','','','Android','2021-12-08 15:45:10','',0,'2021-12-08 15:45:10','2021-12-08 15:45:10'),(20,'294444444333333','$2y$10$dyP5wVQqcXFnuQNBGqIXhOT2QKYLQmnE4cIPNSijN8lk8AysgjXiq','1','','','','','','','','','Android','2021-12-08 17:00:40','',0,'2021-12-08 17:00:40','2021-12-08 17:00:40'),(21,'436987786597697','$2y$10$CGGXbu0ylq3xN6QGMkNdFO7WEYOmXMwQTP2awYX/mVaY9e63vr6mm','1','','','','','','','','','Android','2021-12-08 17:21:59','',0,'2021-12-08 17:21:59','2021-12-08 17:21:59'),(22,'678687687687687','$2y$10$diLv1sFI5fxfq3b3oDvOZeiUGpEk6h3QdoXqEjS/jat27uI8d0OMq','1','','','','','','','','','Android','2022-01-28 11:29:34','',0,'2022-01-28 11:29:34','2022-01-28 11:29:34'),(23,'3333333333','$2y$10$do4/BN3gfDekbADTa3I8N.SB5Hh0pZXynuvFHkKCmK19Yj8EQXBNG','1','','','','','','','','','Android','2022-01-28 11:36:38','',0,'2022-01-28 11:36:38','2022-01-28 11:36:38'),(24,'33321234444','$2y$10$kxHZhcMzfpJruGV3ZCzINOCddU4YxH9U7G.ggvuWdfFO70fM.rQyu','1','','','','','','','','','Android','2022-01-28 11:42:45','',0,'2022-01-28 11:42:45','2022-01-28 11:42:45'),(25,'32324234324','$2y$10$BIILo0iQcmGpbglSp4aMWuog0Ud0G7gyyCCF5pM.unrKPyZh12.t6','1','','','','','','','','','Android','2022-01-28 11:55:51','',0,'2022-01-28 11:55:51','2022-01-28 11:55:51'),(26,'3214234','$2y$10$sl6iXbN3Zz/PCGdkc4uhpODBwZynrszbj9/.aBQHG6ghW.bBx6m.K','1','','','','','','','','','Android','2022-01-28 12:01:46','',0,'2022-01-28 12:01:46','2022-01-28 12:01:46'),(27,'385423765743','$2y$10$dkH9GGG0qhYcGrWrxVLWMONrJbQdNfc7h3tFUZKfSm9UO/MroWZ1i','1','','','','','','','','','Android','2022-01-29 09:58:14','',0,'2022-01-29 09:58:14','2022-01-29 09:58:14');
/*!40000 ALTER TABLE `tenant_logins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `terms_conditions`
--

DROP TABLE IF EXISTS `terms_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `terms_conditions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `pg_id` int(11) NOT NULL,
  `term` text NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `terms_conditions`
--

LOCK TABLES `terms_conditions` WRITE;
/*!40000 ALTER TABLE `terms_conditions` DISABLE KEYS */;
INSERT INTO `terms_conditions` VALUES (2,1,1,'Lunch time is 2:00 pm',1,'2021-04-17 16:15:29','2021-04-17 16:15:29'),(4,1,1,'Liquor are not allowed',1,'2021-04-19 09:46:11','2021-04-19 09:46:11'),(6,2,1,'Entry will closed at 9 PM',1,'2021-05-04 18:51:55','2021-05-04 18:51:55'),(7,2,1,'No liquor allowed',1,'2021-05-04 18:52:13','2021-05-04 18:52:13'),(8,2,1,'Should not keep any ammount',1,'2021-05-04 18:53:17','2021-05-05 17:09:51'),(13,1,1,'Pets not allowed',1,'2021-05-05 11:57:20','2021-05-05 18:33:01'),(14,1,1,'Residence should not keep any kind of weapon or ammunition',1,'2021-05-05 12:03:54','2021-05-05 18:34:18'),(15,2,1,'Ragging not allowed',1,'2021-05-05 17:10:19','2021-05-05 17:10:19'),(16,1,1,'Submit fees on time',1,'2021-05-22 09:43:18','2021-05-22 09:43:18'),(17,1,1,'High power consuming  device like iron, heather not allowed',1,'2021-05-22 09:44:35','2021-05-22 09:44:35'),(26,4,1,'Smoking not allowed',2,'2021-05-22 10:20:47','2021-05-22 10:21:15'),(27,2,1,'Test',1,'2021-07-02 15:07:00','2021-07-02 15:07:00');
/*!40000 ALTER TABLE `terms_conditions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pg_id` int(11) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `name` varchar(50) NOT NULL,
  `email` varchar(100) NOT NULL,
  `contact` varchar(100) NOT NULL,
  `password` text NOT NULL,
  `email_verify_at` datetime NOT NULL DEFAULT current_timestamp(),
  `status` enum('1','2') NOT NULL COMMENT '1=active,2=inactive',
  `imei_no` varchar(50) NOT NULL DEFAULT '',
  `ip_address` varchar(191) NOT NULL DEFAULT '',
  `carrier_name` varchar(191) NOT NULL DEFAULT '',
  `app_version` varchar(191) NOT NULL DEFAULT '',
  `phone_model` varchar(191) NOT NULL DEFAULT '',
  `phone_manufracture` varchar(191) NOT NULL DEFAULT '',
  `sdk_phone_version` varchar(191) NOT NULL DEFAULT '',
  `device_id` varchar(191) NOT NULL DEFAULT '',
  `token` varchar(191) NOT NULL DEFAULT '',
  `login_token` text NOT NULL DEFAULT '',
  `token_date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `remember_token` varchar(100) NOT NULL DEFAULT '',
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `contact` (`contact`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,1,0,'Vishnu Choudhary','owner@gmail.com','9782939007','$2y$10$lWUYbIo8QM3y8bVVWwhqUuoio9uE2zrJdHUKhFrL7nocMbaqH/mdW','2021-04-15 17:53:30','1','9242560e073724a6','249.213.19.183','','V 1.5','sdk_gphone_x86_arm','Google','SDK version :30 ,Phone Version :11','ewfLDnSrTPeqO121Dy5r4f:APA91bF_wCDTaRmk2incS6BtpJsy562vJROkFctStr1vtry64ddbCHOmozbwPa7SFOxIbdCHO-7MYQ5KsIRUJHKA-_hEIOLANbrUIKKOQCLEFyx6NKzp5jwrULbiymAn-iUAP6hVM8GT','4921dea1f2217606e013196129cf145650d1d6bd70ece8a1af66873a4eebe41f3948b67db5bc7b80','T3VwUnRXN0VZb3hFd245cm9UQVJuUEFNL1ZuNFFVQ1EydlhzNmJKL2ZTaWJOdEwvdTdrYldoblRjVFIweWcvZTVabjVSNDVPYnJUUEdsdGFRbnBiZzg1ZXJkelpOVktzMndHTzZFWVFjTEU9Ojqn/rSNcaZuLtSrK8AvsrSC','2021-09-08 00:35:12','',0,'2021-04-15 17:53:30','2022-03-29 18:42:05'),(2,1,2,'Kartik Agarwal','manager@gmail.com','8949689594','$2y$10$hOQDgrNQNYoH5lWUDSEffuQAObbWHEvrnlGTiwXzwgtLj6fcWOBTC','2021-04-15 17:53:30','1','ba39e3acd0b100a7','1.203.74.90','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','eMxahTbESJy-ProO33ESLn:APA91bGWYU804dELTyomE2BLRkuSoNXs_Jzt0WIra7t8yf0DF-ArHwJo4OLCklKwpQRb1TXybVoSRSE-JEtqDUgPiU7R7o8MR-GrqHB-giRELswLLs-Omjy9LaDwuJWgX32JszK_A-CR','','SCs5NVpvVlBiblVlaW5tWjRlRFZ3bE9SSGVRMUJMdTJKRmw2OENLQlBHMVZUMTUxS3BWZXZyRlp4RjAyNEMxeXJkL1RlMTlnTjJudnlvT1p4RHVsNDBpMmtURDkzdklJVjZyalhueTBDUzQ9OjoynLUR2DSz23AYu73he/hk','0000-00-00 00:00:00','',0,'2021-04-15 17:53:30','2021-10-08 18:02:56'),(4,1,1,'Deepak Solnki','deepak@gmail.com','9736865356','$2y$10$uJjDlaLFbTsk3QDHU3OJZukV1Z0sWWzhvXuBy5Gah1jKcRmGvp6t6','2021-05-20 20:29:06','1','784facfaeca7aa0a','132.95.94.155','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','dtweinLQT4CgIsnCEFkP9A:APA91bEzhJVtwOZnZmUHgeCQ3XdaK_H4DclK_-5yyiyoperDc3HBi_ngecZmlDs7Peeg0v1txRpWE9ZS3C81VL5eWy0x2T7ogsPYMhVx_NXdr2VNazaXaC5dqCQ2ZHdlzAup7FOyHeOG','','TUUrZmhKNzB0L1l1WGxVSitYYmhCMTFNc1F4aFZXbnB4NDZKU3k1d3N0UjVYYjJDQlJWY1hCZDhHSUVLd2d5dFJ2SStvaW1hNUhBM1plcVlGb2ZPREF0c1VXcmNEQ1BZV1AybFFpSU90WHM9OjoIky7n2yVAy3+dSGHspFMz','2021-05-20 20:29:06','',1,'2021-05-20 08:29:06','2021-10-08 17:19:54'),(5,3,0,'Himanshu Gulati','himanshu.gulati@btha','7412011786','$2y$10$zVe8UyNHbZvT1nWSqXv1Ie2JEXdC8k2Q5BeMDNDbszYPWPGqef5y.','2021-06-23 14:26:31','1','','14.132.236.239','','V 1.0','Redmi Note 9 Pro','Xiaomi','SDK version :30 ,Phone Version :11','','','','2021-06-23 14:26:31','',0,'2021-06-23 14:26:31','2021-07-23 07:17:34'),(6,4,0,'Aadil Malik','aadil.husain@bthawk.','9667783662','$2y$10$JOrCX2knYTFJeYdaltEPH.XayxS1wKTtCJTrCtYiBPROpV7E9CNqK','2021-06-24 11:27:09','1','b3256180c4b2f5af','179.249.71.155','','V 1.0','AGS2-W09','HUAWEI','SDK version :26 ,Phone Version :8.0.0','fg5yVtCZTMG4YLWY-DyhX0:APA91bHO3TltWkHLbpzEXl8FTL3WunoPwWjcGxA_Ai5oc6vdnD35akIWwoyvuNvWZ4YDsrqQvSWtNrF2AfLWrl7L8max3fhEZ4mk0NDq43MiFKTRf4Xjx6S3TdruU4TrEQ7cIorixwbY','','Qjd3UlIxQi9JaHROdXFLSjIrNzRYOHlaZ1I0Y2ZIL1cyeVAxdHdVTWF2cW9UTEZjaTN4c2YvaGlndHpGbFhLUFd5ZjRqSkNLUXc2b0dvcUNwWTQzNDRUSnFXQ3U5RjkyZDZnVmVZUHkrWms9OjouqzwOZ6vNyAv0v9Mh2vTM','2021-06-24 11:27:09','CP5F1wsj8DZ199d6xvdbhEoufZ7k8ZJ5gAPvTnUjbyleYZCizTbu1WUEb3pM',0,'2021-06-24 11:27:09','2021-06-28 06:46:34'),(7,5,0,'Mumtaz Khan','mumtaz.khan@bthawk.c','8529547249','$2y$10$DI4.Kgkh46CZh44ld6570.ZM4o64JdmyVvR22xmBWdczsJDeSAODO','2021-06-24 18:05:23','1','','153.143.154.247','','V 1.0','Redmi Note 8 Pro','Xiaomi','SDK version :29 ,Phone Version :10','','','','2021-06-24 18:05:23','',0,'2021-06-24 18:05:23','2021-06-24 16:53:49'),(8,6,0,'Sakshi','sakshi.khandelwal@bt','8529379900','$2y$10$No1PQilx1tU5HksjWKlR4u4Lasr.C4UYd/hm15B9TWTlsmjMvOAD.','2021-06-24 22:25:02','1','','','','','','','','','','','2021-06-24 22:25:02','',0,'2021-06-24 22:25:02','2021-06-24 22:25:02'),(9,7,0,'Ishtiyak Ahmed','ishtiyak.ahmed@bthaw','8947897332\r\n','$2y$10$Ylx4SdrICmjoTPgO2U.Dx.rfsdSB2CcBqaC4VnWNr9wYVO3ejfvri','2021-06-24 22:25:38','1','92d201bab76a1131','90.61.58.195','','V 1.0','Redmi 7A','Xiaomi','SDK version :29 ,Phone Version :10','dxFJAH7UQsGlls0sgolGXN:APA91bH2QvVlB6KJ4dat_HEB7cHQuizG572c0HK2QazAMeuAVXLzadb7ZPPMX04-SQYgtCDf_OviDN1GUkt83KSZJ-Tkdj-EppUh2K9sxvuz-K1I5xk11Qe-mO0RKFfqFcURV2bWN-t2','','bDhyS1lMenVBNFIxRHVSZDNEaXlSQ3lkc3BNbXBqcU9SZktUNG5pMzVweVNOUzlET1hta2xMY2FpRERTUlI5ZERlM3NLQk1vRGVSckQxeWRmOU1rdU91cVRYVW5ZQXE3VkxJcE80dVE0OEU9OjpDvMUFstphZsKJ04HlajRF','2021-06-24 22:25:38','',0,'2021-06-24 22:25:38','2021-07-05 09:43:08'),(10,8,0,'Shristi Shekhawat','shristi.shekhawat@bt','8890625020','$2y$10$fCeYpw.YETRJbad8Dst/aO.deR/B7sD7v9mJiFDdqYoyYY50csZaG','2021-06-24 22:26:34','1','','','','','','','','','','','2021-06-24 22:26:34','',0,'2021-06-24 22:26:34','2021-06-24 22:26:34'),(11,9,0,'Raj Bhojak','raj.bhojak@bthawk.co','8890624277','$2y$10$NIPTfguiOij.dEjJWUgeSe.Le60THp2VVgmQBaJpQCNt5lfZNeSpm','2021-06-24 22:27:14','1','','','','','','','','','','','2021-06-24 22:27:14','gtrT1SRDM8nG3uDyTAVPItHwS4DpSWEJs3JfzgEfuF4VEaU71KQhJidqg9KP',0,'2021-06-24 22:27:14','2021-06-24 22:27:14'),(12,10,0,'Bhagyashree Agarwal','bhagyashree.agarwal@','8529547245','$2y$10$gsvV0PPJxTWWE8caon4F6urvUGeaeGZ5FNx0m01SOTHovDHKynutG','2021-06-24 22:27:44','1','','','','','','','','','','','2021-06-24 22:27:44','',0,'2021-06-24 22:27:44','2021-06-24 22:27:44'),(13,11,0,'Sunil Pareek','sunil.pareek@bthawk.','6375175966','$2y$10$NyZsHOcjgm2fnTLi94gAFuCMlKSnE7c/SyZzZSv5yTDDA8.R7RNRS','2021-06-24 22:33:05','1','f14b41abfe912f9a','233.146.156.23','','V 1.0','M2003J15SC','Xiaomi','SDK version :29 ,Phone Version :10','eGh7Rw3tRgy_3d9jo1NlND:APA91bHNYXkO5mG8dpD2LLcUUK_4m5-rqcoBbQP0MRSW5bBN7p9OcCiePJJRCTeq1A4uKiLMfNyj9B4OvpJQTteXHYSEYFYcRbtQxw4NzQmi-cVT2sJ1Gq32ELYqBbzAsA-lTFclRGRb','','VzZJekJLdWRvZHdyU1RQSFQyUXpKSmZwb3FvRFZGSlFTeVIwRmFRYWx3cERSRjVKak9nejFUa2kyc2FsM0JsMW11NVNMVzhuTW5iNml2cVhaUHB2cmk4S0MrNC9UOGFUZnNMQ3dvQ1ZKV009Ojr74el2eLtRhmY/daIIvspt','2021-06-24 22:33:05','',0,'2021-06-24 22:33:04','2021-07-02 10:43:55'),(14,12,0,'Ayushi Jain','ayushi.jain@bthawk.c','7412036334','$2y$10$GMNIPyM.u7Hg3gPOktwAju.cAXOz0Ab.7HBi9rzginxafRkVG5U3O','2021-06-24 22:33:34','1','5414cbbb33a7958f','134.47.172.243','','V 1.0','Mi A3','Xiaomi','SDK version :30 ,Phone Version :11','efueJvt_TXe4G_hPY4GnDt:APA91bHGk9u9W38ZYbB_-kRsaXpdyoYe1TEqDiAVa1ZxI9oLL8axmT-G0BX3gpZdlaUWBUF-tp_a2T8G9HHhYwv5f3m75Kv5bQ6EnDMY1Ib_-ADEPwRnDQxdaO2A4cNAJuqGtqJKVm63','','alpiaGNCQ0tObUVQQ3BTOEhiSHR3WURaZHZxaHVhTjRoYUlIMTBTVTFKQkRKbzdDTmJraUV2ajBhMnVLRjU0bVJiRUlaUmI3S2NFTzVtRTJmN2pMVkh6R290bGVvc2pBNi9BTHR0dkJ0RHc9OjrejoOGA1fVH8HHj3xdgOMA','2021-06-24 22:33:34','',0,'2021-06-24 22:33:33','2021-06-28 09:44:37'),(15,13,0,'Ashok Gurjar','ashok.gurjar@bthawk.com','8890626107','$2y$10$6sWjICntRmpk3pCv06FMUOjSfm4q4uuQLP9e5IFCYfJWn2BljIhf6','2021-06-24 22:34:16','1','cdd88ed4042d73d3','108.253.140.52','','V 1.0','M2004J19C','Xiaomi','SDK version :29 ,Phone Version :10','dv7MbQLhQBuiPn-ChMWfo3:APA91bEemGhdz93TfLqgzH2wq6bg7ezw1u0PGKSLd8VAyhr7C-QzJCTuHbmBaLpcWshS1qwwgAfwKbwMchzVDYUEdvHEOSR1MTKlpRQmMBErIH8J0W4t08YIqkL2yH3aD07l_GQeZroa','','dVJPRnRSMnYvSDU0R0FUemtXVjNKaW44MUlEQWhCc1VIc1Q1ZGRZQS9QQUxQU3pNc00vTXo3T2FyZFllK2xpL1NyL1plYWhVZE80bGJZbCtkd24yeFFKMlVTUlNVYjhoUldRU3AwOUMvZVk9Ojpi5AJiuB3eQ2W6U9P70R3o','2021-06-24 22:34:16','utMtrwZGeDeLpGd6eCxCgH9BhabYvqqB6EqeAzWZUS0gOhX0YU6BsxiTWwV4',0,'2021-06-24 22:34:16','2021-07-22 06:57:09'),(16,14,0,'Gurmit Kaur','gurmit.kaur@bthawk.c','7849904536','$2y$10$ewe75A5G5GxOuT2PxCyrPuri6Txg7oAhVufJtwsziuxD34t4FUw3y','2021-06-24 22:35:21','1','bb598fba6597a374','12.62.74.195','','V 1.0','SM-A307FN','samsung','SDK version :29 ,Phone Version :10','ex2o-S2LSdGCKyXXPBMKjJ:APA91bHbKjVZhAEyZDWTNpywmhljhCOyRWc0_4tkDBUxXT9ZfO9hULP-bxVqQ_oDDRsABLnEh6eFjL13XHNAeeFe2Enp-QYCeAy5c2j6ZPK2Pp57ujWFNS8PVHXtiRr7wDDKlTgoxhDR','','WFAybldSOTc4TmFyVjlNM0Vzcno5SGZlK1RJc2xWNGkyUGkzZDFxNldQQUM4c2NEZXRaSlVNZkpSaVB4cXczeHMzZ1VZcmFRUTVSOVN3VTU2dG1qaFNhK2dmaWhzeHdOM3dnQWFxdHpsaHc9OjrPioTSVm8zkDNJ3Gg5ffiu','2021-06-24 22:35:21','',0,'2021-06-24 22:35:21','2021-06-30 12:07:12'),(17,15,0,'Sandeep Rathi','sandeep.rathi@bthawk','7877343607','$2y$10$p06HMkM2.neknhkcUxUazOW8M4Df/fGw.FyfgFtJ5A7pBPvIkZMHm','2021-06-24 22:35:58','1','','','','','','','','','','','2021-06-24 22:35:58','',0,'2021-06-24 22:35:57','2021-06-24 22:35:57'),(18,16,0,'Sonu Chandani','sonu.chandani@bthawk','8529547231','$2y$10$vXgKYoiOkxshIrBNryMJCuV15f3SLiNQdmtTJaTaERDXFIBndLo6.','2021-06-24 22:36:32','1','d1df49e279bf0eba','72.117.192.30','','V 1.0','SM-M315F','samsung','SDK version :30 ,Phone Version :11','evW41y6OSJurw5BP_q9RMx:APA91bGPBt23JBQ-bCxjfZvz9Qou53YpwQeicy92Yawtl-_v-DLOmzwOFHrJxzjcussPKRnxVfSz4uO0D-eX55G0URXrp8MAAsyiYhofNviVTJeuZgcVLcF3IBe4ah01AVUGl_NUDomU','','RkNBb1I3RlBGKzdpK216d0gyRzhCWGM0Vi9aZTB4bCtFcFFLTGxpZno0dWNEQTZlendrT2V6NUx2eURsU0NOTWZiU2ZlUWpISUo4ckVVK21KSlhTYmFya3llYm1DekhKV2tCRmVkV0tQSlE9OjpTaKkPJBLUDqXxtXXY22Sb','2021-06-24 22:36:32','l3It2qw6rBVrFrDsu28MlzqcbzQsiQJXuo7GnFRi42lMpj2PgDtg5wOag3iP',0,'2021-06-24 22:36:31','2021-07-15 07:12:01'),(19,17,0,'Ghanshyam Vyas','ghanshyam.vyas@bthaw','7412063323','$2y$10$NbxYg.vrmlObUuQNHrsF2uhKvmm.XBXwLhJlcODClfdelr4ZNEf9u','2021-06-24 22:37:01','1','3a5b23be3a25a72f','90.172.13.236','','V 1.0','CPH2185','OPPO','SDK version :29 ,Phone Version :10','cu_5yDJnQKO5UCy5fzeOjh:APA91bGrv97rd36afiAKLvTxqn-vglG95SjgFsj12XkcghaD3yrnnQ1EtjcANavC2CncpPh18EUa0R5yx5OHdSupBNSOhwLgMv22kCG8P4zqTI1DmTxqrlwy7M29Usv0rEOYPtkthshQ','','T3NhS2NoRVVlVXJWeitQNGI3WjB4QldhT3R0aWoydmdESHpZclRDVWhvYUpwTkFHSDYxdUVwVG5IUzhDeGsreDBHZHI1RXJhOE9FMmFLZGRHUWpQbWxxOXVZY09ValNHY05vSUljREtyOWc9Ojpe23aKcflBB2sq2aj0gHaA','2021-06-24 22:37:01','',0,'2021-06-24 22:37:01','2021-06-28 05:07:22'),(20,18,0,'Ankita Agarwal','ankita.agarwal@bthaw','7412016633','$2y$10$Lm9GdwRPyyMAp95NKlq7E.yYXxIuK/3OT2rFISHA3TtBnuvH8pPfy','2021-06-25 16:06:40','1','','','','','','','','','','','2021-06-25 16:06:40','',0,'2021-06-25 16:06:40','2021-06-25 16:06:40'),(21,7,11,'Ankita Agarwal','ankitaagarwal907@gma','8949904535','$2y$10$FBe4MHesyMvQ0EP57pq0mO3/plIi.u.MLG.ND87jaTQgt0JGCPTUW','2021-06-29 17:58:01','1','','','','','','','','','','','2021-06-29 17:58:01','',9,'2021-06-29 00:00:00','2021-07-05 15:12:14'),(22,19,0,'Pankaj Yadav','pankaj.yadav1977@gma','9414001123','$2y$10$VXMXcPLLXWzkXbaYATbCROrK7rdpQs.3VaclsxNgG3Cfy1tff2lde','2021-07-01 11:22:52','1','','','','','','','','','','','2021-07-01 11:22:52','',0,'2021-07-01 11:22:52','2021-07-01 11:22:52'),(23,20,0,'Nitesh Mehra','niteshmehra2222@gmai','8005810321','$2y$10$1Dyy567uJBlw6DbPEQZSpukQH9DoHLvRpdPukpa1GTReszadxMmD6','2021-07-01 12:23:20','1','','','','','','','','','','','2021-07-01 12:23:20','',0,'2021-07-01 12:23:20','2021-07-01 12:23:20'),(24,21,0,'Mahendra Pratap Choudhary','engg.mpchoudhary@gma','9414363656','$2y$10$gJiwpXdUO7OP3JmMW95DQuwqTXQ/n.vczu2UWClBOIu0C2sJKFF..','2021-07-01 16:49:35','1','40f1cf06137c0928','130.203.209.50','','V 1.0','M2101K7AI','Xiaomi','SDK version :30 ,Phone Version :11','','','Y3k2YVVvNXdpcUxWMmthZjdFU1RkbFhCWmVlT0xFdUNEajlLZVR3ZEhYN0J5QlJwYlJrTnN0b2UxTHlvb2lxS0xzYlI0VVc1UTR0d3FSekxCM3lGdW1ZMmhmc0tBT0k3Qy9IMmZkdVpVMjA9Ojqzsh6OhpG0+TSiGi9g65MF','2021-07-01 16:49:35','',0,'2021-07-01 16:49:34','2021-07-01 11:30:30'),(26,13,17,'Pravinder','pravinder.kumar@btha','7849908842','$2y$10$FFH7lN9KE1J4eyCAmm42KexRNabtksRLqbKJDqTl5XL700584KQFK','2021-07-03 09:53:58','1','cdd88ed4042d73d3','68.203.22.35','','V 1.0','M2004J19C','Xiaomi','SDK version :29 ,Phone Version :10','dv7MbQLhQBuiPn-ChMWfo3:APA91bEemGhdz93TfLqgzH2wq6bg7ezw1u0PGKSLd8VAyhr7C-QzJCTuHbmBaLpcWshS1qwwgAfwKbwMchzVDYUEdvHEOSR1MTKlpRQmMBErIH8J0W4t08YIqkL2yH3aD07l_GQeZroa','','ZVhETWJuM01LS1pVVWpUS1NERFVYRWU5OW44a1QzbThKWS95eDhIMXNkYmlHbWk4K3M4TFZBY3Exa0R2d01MNUxDQWNjQXh3SDlBU3pUNk90S3RtNVduRktRNGxoZ0laeE0yK0FBRmVWMnc9Ojpi0CJcI6smWwyhTwdJ1oqQ','2021-07-03 09:53:58','',15,'2021-07-03 00:00:00','2021-07-09 11:03:16'),(27,23,0,'Kajal Sharma','imkajal1603@gmail.co','7014337725','$2y$10$fb4pFGx0zTPVYuYl.YO9ROed0FpiKUOIaE9Tp2ByD4qNF5J2z7hR.','2021-07-08 17:18:27','1','439abe4fe330993a','63.166.86.179','','V 1.0','Moto G (5S) Plus','motorola','SDK version :27 ,Phone Version :8.1.0','fm2kOfwxQ7eY8jeS6-lrUE:APA91bHmt4y5c26TNZWTuTYmmsvwUN9cuih8Zrbwx_NlllsSDolWYmkvdaSJqDizEm9fUvOqZg9pYQVDGC-otkgmwq1DrjUMjYsAtWjylkOF1NPBaYa7jVmlKq9ujWLvtOvkCj0FuphG','','UVBWOXo3eUNwMVlmZXJHU3h4eENoZnQwZDYvTGR2SHFKVjdnTmlHdkp2bjFSN1dvMnl3UUZwanVWK2MyaC9ZUVE1M0xUVHBqdnhHWUcxMFpkODMwdmxRSGJBNSt0cXdJazhWcUx5V2VHM1U9Ojrx8secmaHm20k9g3pHhku/','2021-07-08 17:18:27','',0,'2021-07-08 17:18:27','2021-07-13 07:08:05'),(28,24,0,'Aashish Chaudhary','krcclasses@gmail.com','9462510911','$2y$10$udHFea8siqJogwseSPkd.uyv5E1g6/6PPWgeu9nMvXTtG7RAKy7lG','2021-07-09 12:18:07','1','','','','','','','','','','','2021-07-09 12:18:07','',0,'2021-07-09 12:18:07','2021-07-09 12:18:07'),(30,25,0,'Madhukeshwar','madhujavkar@gmail.co','9029644455','$2y$10$vyW9owO/PdyXG4ZeWq0nTO9TXCgBOuLLo5ieNNR8JYmXzW8W4CT2q','2021-07-13 17:51:36','1','7ebc6187439b5202','18.18.17.104','','V 1.0','SM-N975F','samsung','SDK version :30 ,Phone Version :11','ePYpV6BMSXSRK8BlgXCo7s:APA91bElplcj5bTuopf2oysFyor2nNWz_J6VzTMZHvSBvg3ATZStmjVpgsdQuheTueFaLt9n47wWtDOxtGEBAxyJY2xfYgRzDTclgFRlURkTXyTdHk9c5i6Hbe5PC1bAQ3ZGxqbS8PQv','','aWlHZnBsdUJ6Um90ZWd3bmx3UlcwNStGaDFLVFBEdXQ3MXVyS1gwS2syNWZKWk9jSmxTTGRtd3BrVkpuQW4xSFc0TXFrL09laU5iWjNFV2dHQWtTY0p3Q3hqY3pIVWQ3dHlmTExQMGxKNWM9OjocheFXbLTp+8e0FchUmFFc','2021-07-13 17:51:36','uzk2s9KAyxc4N1tZle14hDQTshLbPbaCQtgJ9N1Ynq6KCNZ8BRF3vZiMDP0c',0,'2021-07-13 17:51:36','2021-07-16 12:36:30'),(31,25,36,'R.S. KASALAY','rameshwarproperties8','9029644452','$2y$10$zZ0iwovhjM3TydKO4XWU4uOnx059c0SDouWRw4TPzpQasvP2cLjKm','2021-07-16 10:22:26','1','','','','','','','','','','','2021-07-16 10:22:26','',30,'2021-07-16 00:00:00','2021-07-16 12:27:02'),(32,25,36,'DINESHKUMAR JAMNANI','rameshwarproperties1','9029644252','$2y$10$bh5XLZHtgZeSwcHLB7rznOjV31x7VomRUTLrSX5S4GBI7EbTenFqK','2021-07-16 12:26:37','1','','','','','','','','','','','2021-07-16 12:26:37','',30,'2021-07-16 00:00:00','2021-07-16 12:26:37'),(33,25,36,'DILIP GAJANAN CHAVAN','rameshwarproperties3','9029211025','$2y$10$hgHzDBdJI8/1q36/ViWsTOMlhizpid.WI/EBbke2JFS/Ga62Ym9Wi','2021-07-16 12:27:57','1','','','','','','','','','','','2021-07-16 12:27:57','',30,'2021-07-16 00:00:00','2021-07-16 12:27:57'),(34,25,36,'MEGHA JAVKAR','rameshwarpropertie5@','9029655544','$2y$10$s1I8VUi.RxYphSmbwqlG7Om/oyLXwINunyr47UNfEHlni1bNrudoK','2021-07-16 12:30:00','1','','','','','','','','','','','2021-07-16 12:30:00','',30,'2021-07-16 00:00:00','2021-07-16 12:30:00'),(35,25,36,'AMIT JAVKAR','rameshwarproperties6','9025556441','$2y$10$ulvCIA2xszUFCjo09df5x./c3KiLNQCCCi3n76.sGrYr/iYtUibuu','2021-07-16 12:30:42','1','','','','','','','','','','','2021-07-16 12:30:42','',30,'2021-07-16 00:00:00','2021-07-16 12:30:42'),(36,27,0,'Preeti Bhardwaj','preeti@gmail.com','1111111111','$2y$10$3zheQFbND.cKxF9Ks4vHjuaohokI/4HGdCzApVs3g1/T/Mya0d0lK','2021-07-29 15:20:22','1','','','','','','','','','','','2021-07-29 15:20:22','',0,'2021-07-29 15:20:22','2021-07-29 15:20:22'),(37,28,0,'Gunjan','abd@gmial.com','2222222222','$2y$10$6OvuiH81Y2z82xDrqkUM2emYgnubfcRH2iZjQpnfK5UE4hHoJBWUK','2021-07-30 12:02:22','1','','','','','','','','','','','2021-07-30 12:02:22','',0,'2021-07-30 12:02:22','2021-07-30 12:02:22'),(38,29,0,'Gunjan Test','gunjan.bhatra@bthawk','9782839000','$2y$10$vY8AqXxf6dZxBfdEgWNNgu4UejyVhv5TLTFSuNYVhM1r9CNAc3KBe','2021-07-30 16:02:31','1','','','','','','','','','','','2021-07-30 16:02:31','',0,'2021-07-30 16:02:31','2021-07-30 16:02:31'),(40,1,0,'Rhytm','rhytm@gmail.com','3232323232','$2y$10$pZc1Qaf2DIERxYg/2X96nOiucbSt5JdvpRjoeK/f3tD9q9K1ykpki','2021-10-01 18:13:58','1','','','','','','','','','','','2021-10-01 18:13:58','',1,'2021-10-01 00:00:00','2021-10-02 08:39:01'),(41,1,0,'Mohit','mohit@gmail.com','232323233333333','$2y$10$HESIHiXwLvPNIhS0159XqukuWbtoUJfhgynwHPu0KJr/huavDKLg6','2021-10-08 17:19:11','1','','','','','','','','','','','2021-10-08 17:19:11','',1,'2021-10-08 00:00:00','2021-10-08 17:40:00'),(42,30,44,'Vish Choudhary','vishnugmail@gmail.com','5867984576','$2y$10$BAud5yVvMqpU4EikHFK1zOAMdefrm9Sc1B.9NVpOa.rAfOZU4h5JO','2022-02-12 11:17:24','1','','','','','','','','','','','2022-02-12 11:17:24','',0,'2022-02-12 11:17:22','2022-02-12 11:17:22');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `web_images`
--

DROP TABLE IF EXISTS `web_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `web_images` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `branch_id` int(11) NOT NULL,
  `image_path` text NOT NULL,
  `posted_on` date NOT NULL,
  `created_by` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `web_images`
--

LOCK TABLES `web_images` WRITE;
/*!40000 ALTER TABLE `web_images` DISABLE KEYS */;
INSERT INTO `web_images` VALUES (1,1,'uploads/listing/phpOTjg0l.jpg','2021-07-26',1,'2021-07-26 06:47:47','2021-07-26 06:47:47'),(2,1,'uploads/listing/phpkdqsCA.jpg','2021-07-26',1,'2021-07-26 06:47:47','2021-07-26 06:47:47'),(3,1,'php4xkDt1.jpg','2021-07-26',1,'2021-07-26 16:16:42','2021-07-26 16:16:42'),(4,1,'php3q5vId.jpg','2021-07-26',1,'2021-07-26 16:16:42','2021-07-26 16:16:42'),(5,1,'phpCgwrXp.jpg','2021-07-26',1,'2021-07-26 16:16:42','2021-07-26 16:16:42');
/*!40000 ALTER TABLE `web_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'wwwagury_dbhmstel'
--
/*!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 2024-04-21  2:50:31
