File: /storage/v6964/avoxlive/.db.sql
/*M!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: avoxlivedb
-- ------------------------------------------------------
-- Server version 10.6.22-MariaDB-ubu2204
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `academic_syllabus`
--
DROP TABLE IF EXISTS `academic_syllabus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `academic_syllabus` (
`school_id` int(11) NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`academic_syllabus_code` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`class_id` int(11) NOT NULL,
`subject_id` int(11) NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`uploader_type` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`uploader_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`session` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`timestamp` int(11) NOT NULL,
`file_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `academic_syllabus`
--
LOCK TABLES `academic_syllabus` WRITE;
/*!40000 ALTER TABLE `academic_syllabus` DISABLE KEYS */;
/*!40000 ALTER TABLE `academic_syllabus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `accountant`
--
DROP TABLE IF EXISTS `accountant`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `accountant` (
`accountant_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`accountant_number` longtext NOT NULL,
`birthday` longtext NOT NULL,
`sex` longtext NOT NULL,
`religion` longtext NOT NULL,
`blood_group` longtext NOT NULL,
`address` longtext NOT NULL,
`phone` longtext NOT NULL,
`email` longtext NOT NULL,
`facebook` longtext NOT NULL,
`twitter` longtext NOT NULL,
`googleplus` longtext NOT NULL,
`linkedin` longtext NOT NULL,
`qualification` longtext NOT NULL,
`marital_status` longtext NOT NULL,
`file_name` longtext NOT NULL,
`password` longtext NOT NULL,
`login_status` longtext NOT NULL,
PRIMARY KEY (`accountant_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `accountant`
--
LOCK TABLES `accountant` WRITE;
/*!40000 ALTER TABLE `accountant` DISABLE KEYS */;
INSERT INTO `accountant` VALUES (16,'Accountant','09f94645c8','2019-08-27','Male','Muslim','o+','Address Accountant','+912345667','[email protected]','facebook','twitter','googleplu','linkedin','PhD','Married','Terms of Service.docx','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','0');
/*!40000 ALTER TABLE `accountant` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin`
--
DROP TABLE IF EXISTS `admin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin` (
`exhibition_id` int(11) NOT NULL,
`admin_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`email` longtext NOT NULL,
`phone` longtext NOT NULL,
`password` longtext NOT NULL,
`level` longtext NOT NULL,
`login_status` longtext NOT NULL,
`unique_id` int(11) NOT NULL,
PRIMARY KEY (`admin_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin`
--
LOCK TABLES `admin` WRITE;
/*!40000 ALTER TABLE `admin` DISABLE KEYS */;
INSERT INTO `admin` VALUES (10001,1,'Administrator 1','[email protected]','07133445656','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','1','1',0),(10002,2,'Administrator 2','[email protected]','1234567890','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','1','0',0),(10001,3,'admin3','[email protected]','9080706000','33aab3c7f01620cade108f488cfd285c0e62c1ec','1','',0),(10001,4,'admin4','[email protected]','900000900','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','2','0',0),(20001,7,'Ax9','[email protected]','9087667','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','2','1',0),(20002,8,'hdfc-exhibitor1','[email protected]','90908780','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','1','1',0),(20001,9,'archana','[email protected]','9876543210','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','2','',0);
/*!40000 ALTER TABLE `admin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_role`
--
DROP TABLE IF EXISTS `admin_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_role` (
`exhibition_id` int(11) NOT NULL,
`admin_role_id` int(11) NOT NULL AUTO_INCREMENT,
`admin_id` int(11) NOT NULL,
`dashboard` int(11) NOT NULL,
`manage_academics` int(11) NOT NULL,
`manage_calendar` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`manage_visitor` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`manage_employee` int(11) NOT NULL,
`manage_student` int(11) NOT NULL,
`manage_attendance` int(11) NOT NULL,
`download_page` int(11) NOT NULL,
`manage_parent` int(11) NOT NULL,
`manage_alumni` int(11) NOT NULL,
PRIMARY KEY (`admin_role_id`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_role`
--
LOCK TABLES `admin_role` WRITE;
/*!40000 ALTER TABLE `admin_role` DISABLE KEYS */;
INSERT INTO `admin_role` VALUES (0,4,1,1,1,'1','1',1,0,0,0,0,0),(0,7,2,1,1,'1','1',1,0,0,0,0,0),(0,9,1,1,1,'1','',1,1,1,1,1,1),(0,10,3,0,0,'','',0,0,0,0,0,0),(0,11,4,1,1,'','1',0,0,0,1,1,1),(0,12,2,1,1,'','',1,1,1,1,1,1),(0,13,5,0,0,'','',0,0,0,0,0,0),(0,14,5,1,1,'','',1,1,1,1,1,1),(0,15,6,0,0,'','',0,0,0,0,0,0),(0,16,20001,1,1,'','',1,1,1,1,1,1),(0,17,7,1,0,'','1',1,0,0,0,0,0),(0,18,7,1,0,'','1',1,1,0,0,0,0),(0,19,7,1,0,'','1',1,1,0,0,0,0),(0,20,7,1,0,'','1',1,1,0,0,0,0),(0,21,7,1,0,'','1',1,1,0,0,0,0),(0,22,7,1,0,'','1',1,1,0,0,0,0),(0,23,7,1,1,'','',1,1,1,1,1,1),(0,24,20002,1,1,'','',1,1,1,1,1,1),(0,25,8,0,0,'','',0,0,0,0,0,0),(0,26,8,1,1,'','',1,1,1,1,1,1),(0,27,20003,1,1,'','',1,1,1,1,1,1),(0,28,9,0,0,'','',0,0,0,0,0,0);
/*!40000 ALTER TABLE `admin_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `application`
--
DROP TABLE IF EXISTS `application`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `application` (
`school_id` int(11) NOT NULL,
`application_id` int(11) NOT NULL AUTO_INCREMENT,
`applicant_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`vacancy_id` int(11) NOT NULL,
`apply_date` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`application_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `application`
--
LOCK TABLES `application` WRITE;
/*!40000 ALTER TABLE `application` DISABLE KEYS */;
INSERT INTO `application` VALUES (0,2,'Udemy Application',3,'1567965600','interviewed');
/*!40000 ALTER TABLE `application` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `attendance`
--
DROP TABLE IF EXISTS `attendance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `attendance` (
`attendance_id` int(11) NOT NULL AUTO_INCREMENT,
`status` int(11) NOT NULL COMMENT '0 undefined , 1 present , 2 absent, 3 holiday, 4 half day, 5 late',
`student_id` int(11) NOT NULL,
`date` date NOT NULL,
`session` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`attendance_id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `attendance`
--
LOCK TABLES `attendance` WRITE;
/*!40000 ALTER TABLE `attendance` DISABLE KEYS */;
INSERT INTO `attendance` VALUES (39,1,45,'2019-12-20',''),(40,1,45,'2019-12-22',''),(41,3,45,'2021-08-17','');
/*!40000 ALTER TABLE `attendance` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `bank`
--
DROP TABLE IF EXISTS `bank`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `bank` (
`exhibition_id` int(11) NOT NULL,
`bank_id` int(11) NOT NULL AUTO_INCREMENT,
`account_holder_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`account_number` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`bank_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`branch` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
PRIMARY KEY (`bank_id`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `bank`
--
LOCK TABLES `bank` WRITE;
/*!40000 ALTER TABLE `bank` DISABLE KEYS */;
INSERT INTO `bank` VALUES (0,2,'Udemy Instructor','1234567','Payoneer or paypal','USA'),(0,3,'Udemy Instructor','1234567','Payoneer or paypal','USA'),(0,4,'Udemy Instructor','1234567','Payoneer or paypal','USA'),(0,5,'Teacherone','11223344556678','SBI','Vellore'),(0,6,'Nurseyteacher','11223344556678','SBI','Vellore'),(0,7,'Teacher Two','11223344556678','SBI','Vellore'),(0,8,'Reshma','11223344556678','SBI','Vellore'),(0,9,'Reshma','11223344556678','SBI','Vellore'),(0,10,'Hema','121','qqwwqwq','ims'),(0,11,'dolly','654tt7','sfs','ims'),(0,12,'Hema','1223e445','sfs','ims'),(0,13,'ddd','2','11w','awq'),(0,14,'Hema','2','qwq','wqwqw'),(0,15,'Hema','12we321','122','wqwqw'),(0,16,'Hemashree','1223e445','sfs','awq'),(0,17,'dolly','2','122','ims'),(0,18,'Hema','654tt7','sfs','ims'),(0,19,'Hema','1223e445','sfs','12'),(0,20,'Hema','1223e445','sfs','awq'),(0,21,'Hema','1223e445','sfs','12'),(0,22,'demo','566','sfs','ims'),(0,23,'asha','1212','wqw','wqw'),(0,24,'qwq','qwq','ww','wq'),(0,25,'wqw','qwq','wwq','qwqw'),(0,26,'111','111','11','11'),(0,27,'Hema','1223e445','sss','ims'),(0,28,'Hema','2','qqwwqwq','awq'),(0,29,'Hema','2','qqwwqwq','awq'),(0,30,'Hema','2','qqwwqwq','awq'),(0,31,'Hema','2','qqwwqwq','awq'),(0,32,'ooo','ooo','ooo','oooo'),(0,33,'#','#','#','#'),(0,34,'#','#','#','#'),(0,35,'#','#','#','#'),(0,36,'#','2','#','#'),(0,37,'#','2','#','#'),(0,38,NULL,NULL,NULL,NULL),(0,39,NULL,NULL,NULL,NULL),(0,40,NULL,NULL,NULL,NULL),(0,41,NULL,NULL,NULL,NULL),(0,42,NULL,NULL,NULL,NULL),(0,43,NULL,NULL,NULL,NULL),(0,44,NULL,NULL,NULL,NULL),(0,45,NULL,NULL,NULL,NULL),(0,46,NULL,NULL,NULL,NULL),(0,47,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `bank` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `block_user`
--
DROP TABLE IF EXISTS `block_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `block_user` (
`blocked_from` longtext NOT NULL,
`blocked_to` longtext NOT NULL,
`time` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `block_user`
--
LOCK TABLES `block_user` WRITE;
/*!40000 ALTER TABLE `block_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `block_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `book`
--
DROP TABLE IF EXISTS `book`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `book` (
`school_id` int(11) NOT NULL,
`book_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`author_id` int(11) NOT NULL,
`publisher_id` int(11) NOT NULL,
`book_category_id` int(11) NOT NULL,
`isbn` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`edition` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`subject_id` int(11) NOT NULL,
`quantity` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`timestamp` int(11) NOT NULL,
`class_id` int(11) NOT NULL,
`status` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`price` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`book_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book`
--
LOCK TABLES `book` WRITE;
/*!40000 ALTER TABLE `book` DISABLE KEYS */;
INSERT INTO `book` VALUES (0,1,'Advance Java.','This is the newly released book by Sheg',2,1,2,'DS34FD','1st',0,'1',1576951200,2,'1','200'),(0,2,'Python','Python',2,1,2,'DS34FD','1st',4,'2',1574186400,2,'2','500');
/*!40000 ALTER TABLE `book` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `book_category`
--
DROP TABLE IF EXISTS `book_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `book_category` (
`book_category_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`school_id` int(11) NOT NULL,
PRIMARY KEY (`book_category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `book_category`
--
LOCK TABLES `book_category` WRITE;
/*!40000 ALTER TABLE `book_category` DISABLE KEYS */;
INSERT INTO `book_category` VALUES (2,'Non fictional.','This is another non-fictional book',0);
/*!40000 ALTER TABLE `book_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `calendar`
--
DROP TABLE IF EXISTS `calendar`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `calendar` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`color` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
`end_date` datetime DEFAULT NULL,
`create_at` datetime DEFAULT NULL,
`create_by` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`modified_at` int(11) DEFAULT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`modified_by` int(11) DEFAULT NULL,
`visitor_id` int(11) NOT NULL,
`exhibitor_id` int(11) NOT NULL,
`exhibitor_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`start_time` int(11) NOT NULL,
`end_time` int(11) NOT NULL,
`visitor_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=381 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `calendar`
--
LOCK TABLES `calendar` WRITE;
/*!40000 ALTER TABLE `calendar` DISABLE KEYS */;
INSERT INTO `calendar` VALUES (170,'qq','xx',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,3,0,'',13,13,''),(172,'we','eee','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',13,14,''),(173,'rrrr','rrrr','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',13,14,''),(279,'qq','qqq','#008000','2022-01-18 15:01:00','2022-01-18 15:01:00',NULL,NULL,2022,'rejected',NULL,2,2,'Ravi',15,15,'Raju'),(280,'exhibition meet1','about banner','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',10,11,''),(281,'raju visitor','discussion','#008000','2022-02-22 15:02:00','2022-02-22 15:02:00',NULL,NULL,2022,'confirmed',NULL,2,3,'Ramu',15,15,'Raju'),(282,'rajuu','visitor','#008000','2022-02-17 14:02:00','2022-02-17 14:02:00',NULL,NULL,2022,'confirmed',NULL,2,3,'Ramu',14,14,'Raju'),(283,'qq','qq','#F29339','2022-02-18 14:43:00','2022-02-18 14:43:00',NULL,NULL,NULL,'pending',NULL,2,3,'Ramu',14,14,'Raju'),(284,'www','www','#F29339','2022-02-25 14:44:00','2022-02-25 14:44:00',NULL,NULL,NULL,'pending',NULL,2,3,'Ramu',14,14,'Raju'),(285,'qqq','qqqq','#F29339','2022-02-17 16:53:00','2022-02-17 16:53:00',NULL,NULL,NULL,'pending',NULL,4,3,'Ramu',16,16,'visitor'),(286,'qqq','qqqw','#F29339','2022-02-08 16:54:00','2022-02-08 16:54:00',NULL,NULL,NULL,'pending',NULL,4,3,'Ramu',16,16,'visitor'),(287,'aaa','aaa','#F29339','2022-02-15 16:54:00','2022-02-15 16:54:00',NULL,NULL,NULL,'pending',NULL,4,3,'Ramu',16,16,'visitor'),(288,'mmm','mmm','#008000','2022-02-07 09:02:00','2022-02-07 11:02:00',NULL,NULL,25,'confirmed',NULL,4,3,'Ramu',9,11,'visitor'),(289,'Sathish ','full stack Developer ','#F29339','2022-02-20 10:59:00','2022-02-20 10:59:00',NULL,NULL,NULL,'pending',NULL,4,2,'Ravi',10,10,'visitor'),(290,'meet1','abcd','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',12,1,''),(291,'aqq','qqq','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',11,11,''),(292,'','Sdsd','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',11,11,''),(293,'qqq','qqq','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',11,11,''),(294,'wee','tyy','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,3,0,'',11,11,''),(295,'meet add','description','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',5,5,''),(296,'meet two','qqqq','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',6,6,''),(297,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:30',NULL,NULL,'',NULL,0,0,'',9,9,''),(298,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:30',NULL,NULL,'',NULL,0,0,'',9,9,''),(299,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:30',NULL,NULL,'',NULL,0,0,'',9,9,''),(300,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:30',NULL,NULL,'',NULL,0,0,'',9,9,''),(301,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:30',NULL,NULL,'',NULL,0,0,'',9,9,''),(302,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(303,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(304,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(305,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(306,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(307,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(308,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(309,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(310,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(311,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(312,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(313,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(314,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:31',NULL,NULL,'',NULL,0,0,'',9,9,''),(315,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(316,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(317,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(318,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(319,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(320,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(321,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(322,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(323,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(324,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(325,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(326,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:32',NULL,NULL,'',NULL,0,0,'',9,9,''),(327,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(328,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(329,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(330,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(331,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(332,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(333,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(334,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(335,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(336,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(337,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(338,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(339,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:33',NULL,NULL,'',NULL,0,0,'',9,9,''),(340,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(341,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(342,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(343,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(344,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(345,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(346,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(347,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(348,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(349,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(350,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(351,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:34',NULL,NULL,'',NULL,0,0,'',9,9,''),(352,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(353,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(354,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(355,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(356,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(357,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(358,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(359,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(360,'ramu','rammm',NULL,'2022-04-29 09:10:00','2022-04-29 09:55:00','2022-04-27 10:38:35',NULL,NULL,'',NULL,0,0,'',9,9,''),(361,'rajuu p','appointment','#008000','2022-04-28 10:04:00','2022-04-28 10:04:00',NULL,NULL,2022,'rejected',NULL,2,3,'Ramu',10,10,'Raju'),(362,'meeting exhibitor','werty','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',1,2,''),(363,'','','#008000',NULL,NULL,NULL,NULL,NULL,'',NULL,0,0,'',13,14,''),(364,'meet2','qwert','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',3,3,''),(365,'meet admin','meeting',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,3,0,'',5,5,''),(366,'aa','aaaa','#F29339','2022-05-12 17:20:00','2022-05-12 17:20:00',NULL,NULL,NULL,'pending',NULL,2,3,'Ramu',17,17,'Raju'),(367,'test p','hi testing ','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',3,3,''),(368,'ABC','abc','#008000','2022-05-26 15:05:00','2022-05-26 15:05:00',NULL,NULL,2022,'confirmed',NULL,2,3,'Ramu',15,15,'Raju'),(369,'meeet','weeeeeeere','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,2,0,'',13,14,''),(370,'meet1','qwert','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,5,0,'',6,9,''),(371,'meety','mnjk','#008000',NULL,NULL,NULL,NULL,NULL,'live',NULL,5,0,'',2,4,''),(372,'mpmeet','nmnmn',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,6,0,'',5,7,''),(373,'kmeet','discuss',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,6,0,'',2,3,''),(374,'lkmeet','klop',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,6,0,'',3,4,''),(375,'lmeet','mklp',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,5,0,'',4,6,''),(376,'meeth','wert',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,6,0,'',9,10,''),(377,'mkppp','mnm',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,6,0,'',4,6,''),(378,'qww','wwww',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,5,0,'',3,6,''),(379,'popop','popop',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,6,0,'',11,12,''),(380,'business meeting','discuss annual gross net profit',NULL,NULL,NULL,NULL,NULL,NULL,'live',NULL,1,0,'',5,7,'');
/*!40000 ALTER TABLE `calendar` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chat`
--
DROP TABLE IF EXISTS `chat`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat` (
`chat_id` int(11) NOT NULL AUTO_INCREMENT,
`exhibitor_id` int(11) NOT NULL,
`visitor_id` int(11) NOT NULL,
`message` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`chat_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`exhibition_id` int(11) NOT NULL,
`message_sent_by` longtext NOT NULL,
`exhibitor_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`visitor_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`chat_id`)
) ENGINE=InnoDB AUTO_INCREMENT=297 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chat`
--
LOCK TABLES `chat` WRITE;
/*!40000 ALTER TABLE `chat` DISABLE KEYS */;
INSERT INTO `chat` VALUES (130,0,5,'materials','2021-12-13 07:31:52',0,'patient','','',''),(133,5,9,'medical issues','2021-12-15 08:33:21',0,'patient','','',''),(176,8,4,'needed treatment for eye','2021-12-14 09:49:41',10001,'patient','','',''),(238,8,6,'treatment','2021-12-22 12:00:36',0,'doctor','','',''),(249,4,6,'heloo','2021-12-24 04:27:48',0,'patient','','',''),(254,8,6,'hukopppp','2021-12-24 06:44:45',0,'patient','','',''),(255,8,6,'delete yarr','2021-12-24 06:47:19',0,'patient','DrKiran','',''),(267,4,6,'morng','2021-12-30 10:50:54',0,'patient','hemavathi','',''),(277,2,2,'hello','2022-01-27 10:37:37',0,'exhibitor',NULL,NULL,''),(278,2,2,'wer','2022-01-27 11:28:35',0,'exhibitor',NULL,NULL,''),(280,5,2,'sendiing','2022-01-27 12:31:48',0,'visitor','exhibitor_anil','',''),(281,2,2,'announcement','2022-01-28 05:13:39',0,'exhibitor',NULL,NULL,''),(282,2,2,'klop','2022-02-01 12:18:40',0,'visitor','Ravi','',''),(283,3,2,'hello','2022-04-27 09:13:07',0,'exhibitor',NULL,NULL,''),(285,3,2,'morning','2022-04-27 11:47:17',0,'exhibitor',NULL,NULL,''),(287,3,3,'good day','2022-04-27 12:44:41',0,'exhibitor',NULL,NULL,''),(288,3,2,'delete it','2022-04-27 13:06:04',0,'exhibitor',NULL,NULL,''),(292,4,3,'hello','2022-04-28 04:40:06',0,'visitor','exhibitor_preethi','',''),(293,4,4,'nmmnn','2022-04-28 09:29:46',0,'exhibitor',NULL,NULL,''),(294,3,2,'hi raju ','2022-05-31 10:02:19',0,'exhibitor',NULL,NULL,''),(295,3,2,'test raju','2022-05-31 10:03:52',0,'exhibitor',NULL,NULL,''),(296,3,2,'uiuoi','2022-05-31 10:04:39',0,'visitor','Ramu','','');
/*!40000 ALTER TABLE `chat` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chat_messages`
--
DROP TABLE IF EXISTS `chat_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat_messages` (
`chat_messages_id` int(11) NOT NULL,
`sender_id` int(11) NOT NULL,
`receiver_id` int(11) NOT NULL,
`chat_messages_text` text NOT NULL,
`chat_messages_status` enum('no','yes') NOT NULL,
`chat_messages_datetime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chat_messages`
--
LOCK TABLES `chat_messages` WRITE;
/*!40000 ALTER TABLE `chat_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `chat_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chat_request`
--
DROP TABLE IF EXISTS `chat_request`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat_request` (
`chat_request_id` int(11) NOT NULL AUTO_INCREMENT,
`exhibitor_id` int(11) NOT NULL,
`visitor_id` int(11) NOT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`receiver_see` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`sender_see` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`visitor_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`exhibitor_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`chat_request_id`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chat_request`
--
LOCK TABLES `chat_request` WRITE;
/*!40000 ALTER TABLE `chat_request` DISABLE KEYS */;
INSERT INTO `chat_request` VALUES (54,3,2,'accepted','','','Raju','Ramu'),(55,2,2,'accepted','','','Raju','Ravi'),(56,5,2,'pending','','','Raju','exhibitor_anil'),(57,6,4,'pending','','','visitor','exhi_pawan'),(58,3,3,'pending','','','visitor_vignesh','Ramu');
/*!40000 ALTER TABLE `chat_request` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chat_user`
--
DROP TABLE IF EXISTS `chat_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `chat_user` (
`user_id` int(11) NOT NULL,
`login_oauth_uid` varchar(100) NOT NULL,
`first_name` varchar(250) NOT NULL,
`last_name` varchar(250) NOT NULL,
`email_address` varchar(250) NOT NULL,
`profile_picture` varchar(250) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chat_user`
--
LOCK TABLES `chat_user` WRITE;
/*!40000 ALTER TABLE `chat_user` DISABLE KEYS */;
INSERT INTO `chat_user` VALUES (0,'12w3','Divya','kumari','[email protected]','','2021-11-25 12:26:31','2021-11-25 12:26:31'),(2,'12r3','ranjith','s','[email protected]','','2021-11-25 12:28:00','2021-11-25 12:28:00'),(3,'123t4','abc','d','[email protected]','','2021-11-25 12:28:48','2021-11-25 12:28:48');
/*!40000 ALTER TABLE `chat_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ci_sessions`
--
DROP TABLE IF EXISTS `ci_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `ci_sessions` (
`school_id` int(11) NOT NULL,
`id` varchar(40) NOT NULL,
`ip_address` varchar(45) NOT NULL,
`timestamp` int(10) unsigned NOT NULL DEFAULT 0,
`data` blob NOT NULL,
PRIMARY KEY (`id`),
KEY `ci_sessions_timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ci_sessions`
--
LOCK TABLES `ci_sessions` WRITE;
/*!40000 ALTER TABLE `ci_sessions` DISABLE KEYS */;
INSERT INTO `ci_sessions` VALUES (0,'0o55lsviqm8i8evg7i1164p53mkp4vup','127.0.0.1',1576400835,'__ci_last_regenerate|i:1576400835;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'5k29uj9otbufutr4sl6sm1sgqajns7q3','127.0.0.1',1576401225,'__ci_last_regenerate|i:1576401225;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'6qlbqi95gm56km49cioacibnpl1d6qap','127.0.0.1',1575989622,'__ci_last_regenerate|i:1575989622;'),(0,'7k1ho15mjeg7u9lbsua6a6f0fl3okgf5','127.0.0.1',1575989675,'__ci_last_regenerate|i:1575989675;'),(0,'8esqiumpgo03rthcimbnehv3b2e9bc2p','127.0.0.1',1575989062,'__ci_last_regenerate|i:1575989062;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'ea738lb5ik6v0kmm7dm2pbud27k02glr','127.0.0.1',1576397281,'__ci_last_regenerate|i:1576397281;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'fofehi7eaeqj2bk5eit5ekp41gd147hi','127.0.0.1',1576397948,'__ci_last_regenerate|i:1576397948;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'jjgc5umr0p2np4aneuua2t7tm89v1voj','127.0.0.1',1576239186,'__ci_last_regenerate|i:1576239186;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'l1e17mk7cdg71do9qouos1q5249fetn7','127.0.0.1',1576239187,'__ci_last_regenerate|i:1576239187;'),(0,'l46es3qrhtcgi7kcc8daopocsam1knfg','127.0.0.1',1576401563,'__ci_last_regenerate|i:1576401563;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'m9sj7su5id61c0rfj53c718pqrbt4hq6','127.0.0.1',1576396972,'__ci_last_regenerate|i:1576396972;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";flash_message|s:18:\"Successfully Login\";__ci_vars|a:1:{s:13:\"flash_message\";s:3:\"old\";}'),(0,'ndto2l4cv384prfveod69n5duullmo4o','127.0.0.1',1576401722,'__ci_last_regenerate|i:1576401722;'),(0,'pk4m8lpu6igmqgieqnm547i4q2h99gud','127.0.0.1',1575988659,'__ci_last_regenerate|i:1575988659;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";'),(0,'qhcrmmb8gppl38vmtu8jd806a7l0oksa','127.0.0.1',1575989414,'__ci_last_regenerate|i:1575989414;login_type|s:5:\"admin\";admin_login|s:1:\"1\";admin_id|s:1:\"8\";login_user_id|s:1:\"8\";name|s:13:\"Administrator\";');
/*!40000 ALTER TABLE `ci_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `circular`
--
DROP TABLE IF EXISTS `circular`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `circular` (
`school_id` int(11) NOT NULL,
`circular_id` int(11) NOT NULL AUTO_INCREMENT,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`reference` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`content` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`date` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`circular_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `circular`
--
LOCK TABLES `circular` WRITE;
/*!40000 ALTER TABLE `circular` DISABLE KEYS */;
INSERT INTO `circular` VALUES (0,2,'Meeting for all the members of the school','DF46SFGH','This is for all the teaching staff. Ensure you are all present.','2018-08-24');
/*!40000 ALTER TABLE `circular` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `class`
--
DROP TABLE IF EXISTS `class`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `class` (
`clinic_id` int(11) NOT NULL,
`class_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`name_numeric` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`teacher_id` int(11) NOT NULL,
PRIMARY KEY (`class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `class`
--
LOCK TABLES `class` WRITE;
/*!40000 ALTER TABLE `class` DISABLE KEYS */;
INSERT INTO `class` VALUES (0,8,'2nd Standrard','2',1),(0,7,'1st Standard','1',2),(0,6,'Nuresey Class','Nursery',3),(10001,10,'abcd','21',3);
/*!40000 ALTER TABLE `class` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `class_routine`
--
DROP TABLE IF EXISTS `class_routine`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `class_routine` (
`school_id` int(11) NOT NULL,
`class_routine_id` int(11) NOT NULL AUTO_INCREMENT,
`class_id` int(11) NOT NULL,
`section_id` int(11) NOT NULL,
`subject_id` int(11) NOT NULL,
`time_start` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`time_end` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`time_start_min` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`time_end_min` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`day` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`year` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`class_routine_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `class_routine`
--
LOCK TABLES `class_routine` WRITE;
/*!40000 ALTER TABLE `class_routine` DISABLE KEYS */;
INSERT INTO `class_routine` VALUES (0,5,2,3,4,'3','17','20','20','monday','2019-2020');
/*!40000 ALTER TABLE `class_routine` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `clinic`
--
DROP TABLE IF EXISTS `clinic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `clinic` (
`clinic_id` int(11) NOT NULL AUTO_INCREMENT,
`clinic_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`clinic_admin_email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`location` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` int(11) NOT NULL,
`clinic_email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`language` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`text_align` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`session` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`clinic_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10002 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `clinic`
--
LOCK TABLES `clinic` WRITE;
/*!40000 ALTER TABLE `clinic` DISABLE KEYS */;
INSERT INTO `clinic` VALUES (10001,'exhibitionn','[email protected]','1234','bangalore',908765679,'[email protected]','english','','');
/*!40000 ALTER TABLE `clinic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `clinic_advertisment`
--
DROP TABLE IF EXISTS `clinic_advertisment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `clinic_advertisment` (
`exhibition_id` int(11) NOT NULL,
`clinic_advertisment_id` int(11) NOT NULL AUTO_INCREMENT,
`file_name` longtext NOT NULL,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`clinic_advertisment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `clinic_advertisment`
--
LOCK TABLES `clinic_advertisment` WRITE;
/*!40000 ALTER TABLE `clinic_advertisment` DISABLE KEYS */;
INSERT INTO `clinic_advertisment` VALUES (0,76,'3.jpg',0),(0,77,'s00002-1-mob.jpg',0),(0,80,'s00001-1-mob.jpg',0),(20002,81,'ex.png',0);
/*!40000 ALTER TABLE `clinic_advertisment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `club`
--
DROP TABLE IF EXISTS `club`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `club` (
`school_id` int(11) NOT NULL,
`club_id` int(11) NOT NULL AUTO_INCREMENT,
`club_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`desc` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`date` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`club_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `club`
--
LOCK TABLES `club` WRITE;
/*!40000 ALTER TABLE `club` DISABLE KEYS */;
INSERT INTO `club` VALUES (0,1,'Jet club','This is for those who love science.','2019-08-25');
/*!40000 ALTER TABLE `club` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contactus`
--
DROP TABLE IF EXISTS `contactus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `contactus` (
`exhibition_id` int(11) NOT NULL,
`contactus_id` int(11) NOT NULL AUTO_INCREMENT,
`touch_name` longtext NOT NULL,
`touch_email` longtext NOT NULL,
`touch_phone` int(11) NOT NULL,
`touch_message` longtext NOT NULL,
PRIMARY KEY (`contactus_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2986 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contactus`
--
LOCK TABLES `contactus` WRITE;
/*!40000 ALTER TABLE `contactus` DISABLE KEYS */;
INSERT INTO `contactus` VALUES (0,1,'CharlesBooke','[email protected]',2147483647,'avox.live NvdcisjfhHJILGYFGHUfijciskdoaskdjscuhsIUYUIHJsjidhsaskaojxdsihcscjkasjdashfaMHUUGYYDUIJIHhusjixakidhosaicgasdcdasfbshjasfgs'),(0,2,'Eric Jones','[email protected]',555,'Good day, \r\n\r\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement – Congratulations\r\n\r\nWhat for? \r\n\r\nPart of my job is to check out websites and the work you’ve done with avox.live definitely stands out. \r\n\r\nIt’s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\r\n\r\nThere is, however, a catch… more accurately, a question…\r\n\r\nSo when someone like me happens to find your site – maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \r\n\r\nMore importantly, how do you make a connection with that person?\r\n\r\nStudies show that 7 out of 10 visitors don’t stick around – they’re there one second and then gone with the wind.\r\n\r\nHere’s a way to create INSTANT engagement that you may not have known about… \r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know INSTANTLY that they’re interested – so that you can talk to that lead while they’re literally checking out avox.live.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be a game-changer for your business – and it gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately (and there’s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\r\n\r\nPlus then, even if you don’t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is simple, easy, and effective. \r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,3,'Henryron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://ron.bode-roesch.de/ron '),(0,4,'Henryron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://ron.bode-roesch.de/ron '),(0,5,'Eric Jones','[email protected]',555,'Hey there, I just found your site, quick question…\r\n\r\nMy name’s Eric, I found avox.live after doing a quick search – you showed up near the top of the rankings, so whatever you’re doing for SEO, looks like it’s working well.\r\n\r\nSo here’s my question – what happens AFTER someone lands on your site? Anything?\r\n\r\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear… forever.\r\n\r\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\r\n\r\nWhy would you want all that good work – and the great site you’ve built – go to waste?\r\n\r\nBecause the odds are they’ll just skip over calling or even grabbing their phone, leaving you high and dry.\r\n\r\nBut here’s a thought… what if you could make it super-simple for someone to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket?\r\n \r\nYou can – thanks to revolutionary new software that can literally make that first call happen NOW.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re still there at your site.\r\n \r\nYou know, strike when the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nWhen targeting leads, you HAVE to act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s why you should check out our new SMS Text With Lead feature as well… once you’ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \r\n \r\nImagine how powerful this could be – even if they don’t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\r\n\r\nJust this alone could be a game changer to make your website even more effective.\r\n\r\nStrike when the iron’s hot!\r\n\r\nCLICK HERE https://jumboleadmagnet.com to learn more about everything Talk With Web Visitor can do for your business – you’ll be amazed.\r\n\r\nThanks and keep up the great work!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nStop wasting money chasing eyeballs that don’t turn into paying customers. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,6,'Henryron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://ron.bode-roesch.de/ron '),(0,7,'Henryron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://ron.bode-roesch.de/ron '),(0,8,'Henryron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://ron.bode-roesch.de/ron '),(0,9,'Henryron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://ron.bode-roesch.de/ron '),(0,10,'Henryron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://ron.bode-roesch.de/ron '),(0,11,'Henryron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://ron.bode-roesch.de/ron '),(0,12,'Henryron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://ron.bode-roesch.de/ron '),(0,13,'Henryron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://ron.bode-roesch.de/ron '),(0,14,'Henryron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. https://ron.bode-roesch.de/ron '),(0,15,'Henryron','[email protected]',2147483647,'Addito reditus pro omnibus. https://ron.bode-roesch.de/ron '),(0,16,'Henryron','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://ron.bode-roesch.de/ron '),(0,17,'Henryron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://ron.bode-roesch.de/ron '),(0,18,'Henryron','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. https://ron.bode-roesch.de/ron '),(0,19,'Henryron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://ron.bode-roesch.de/ron '),(0,20,'Henryron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. https://ron.bode-roesch.de/ron '),(0,21,'Henryron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://ron.bode-roesch.de/ron '),(0,22,'Henryron','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://ron.blueliners07.de/ron '),(0,23,'Henryron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://ron.blueliners07.de/ron '),(0,24,'Henryron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://ron.blueliners07.de/ron '),(0,25,'Henryron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://ron.blueliners07.de/ron '),(0,26,'Henryron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. https://ron.blueliners07.de/ron '),(0,27,'Henryron','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://ron.blueliners07.de/ron '),(0,28,'Henryron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://ron.blueliners07.de/ron '),(0,29,'Henryron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://ron.blueliners07.de/ron '),(0,30,'Henryron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. https://ron.blueliners07.de/ron '),(0,31,'Henryron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://ron.blueliners07.de/ron '),(0,32,'Henryron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://ron.blueliners07.de/ron '),(0,33,'Henryron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://ron.blueliners07.de/ron '),(0,34,'Henryron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://ron.blueliners07.de/ron '),(0,35,'Henryron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://ron.blueliners07.de/ron '),(0,36,'Henryron','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://ron.blueliners07.de/ron '),(0,37,'Henryron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://ron.blueliners07.de/ron '),(0,38,'Henryron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://ron.blueliners07.de/ron '),(0,39,'Henryron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://ron.blueliners07.de/ron '),(0,40,'Eric Jones','[email protected]',555,'My name’s Eric and I just came across your website - avox.live - in the search results.\r\n\r\nHere’s what that means to me…\r\n\r\nYour SEO’s working.\r\n\r\nYou’re getting eyeballs – mine at least.\r\n\r\nYour content’s pretty good, wouldn’t change a thing.\r\n\r\nBUT…\r\n\r\nEyeballs don’t pay the bills.\r\n\r\nCUSTOMERS do.\r\n\r\nAnd studies show that 7 out of 10 visitors to a site like avox.live will drop by, take a gander, and then head for the hills without doing anything else.\r\n\r\nIt’s like they never were even there.\r\n\r\nYou can fix this.\r\n\r\nYou can make it super-simple for them to raise their hand, say, “okay, let’s talk” without requiring them to even pull their cell phone from their pocket… thanks to Talk With Web Visitor.\r\n\r\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor’s Name, Email address and Phone Number. It lets you know immediately – so you can talk to that lead immediately… without delay… BEFORE they head for those hills.\r\n \r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nNow it’s also true that when reaching out to hot leads, you MUST act fast – the difference between contacting someone within 5 minutes versus 30 minutes later is huge – like 100 times better!\r\n\r\nThat’s what makes our new SMS Text With Lead feature so powerful… you’ve got their phone number, so now you can start a text message (SMS) conversation with them… so even if they don’t take you up on your offer right away, you continue to text them new offers, new content, and new reasons to do business with you.\r\n\r\nThis could change everything for you and your business.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to learn more about everything Talk With Web Visitor can do and start turing eyeballs into money.\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – you could be converting up to 100x more leads immediately! \r\nIt even includes International Long Distance Calling. \r\nPaying customers are out there waiting. \r\nStarting connecting today by CLICKING HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=avox.live\r\n'),(0,41,'Eric Jones','[email protected]',555,'Cool website!\r\n\r\nMy name’s Eric, and I just found your site - avox.live - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across avox.live, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,42,'Eric Jones','[email protected]',555,'Hi, my name is Eric and I’m betting you’d like your website avox.live to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at avox.live.\r\n\r\nTalk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,43,'CatherinaPymn','[email protected]',40,'Hellо all, guуs! I know, my mеsѕagе maу bе tоo spесіfiс,\r\nBut mу ѕіstеr fоund nicе mаn hеre аnd thеy marriеd, ѕo how abоut me?ǃ :)\r\nΙ am 23 yеаrs old, Cаthеrinа, from Rоmаnіa, I know Englіsh аnd Gеrmаn languаgeѕ alѕо\r\nΑnd... Ι hаvе ѕресіfic dіѕeаse, nаmеd nуmрhоmаnіа. Whо know whаt іs thіs, can undеrstand mе (bettеr to ѕаy іt іmmedіаtеly)\r\nΑh yes, Ι cоok verу tаstyǃ аnd Ι lovе nоt only coоk ;))\r\nIm real girl, not рroѕtitutе, аnd lоokіng fоr ѕеrіouѕ аnd hot relatіоnshiр...\r\nAnуwаy, yоu саn fіnd mу рrоfile hеre: http://cauturlo.gq/user/84877/ \r\n'),(0,44,'Eric Jones','[email protected]',555,'Hi, Eric here with a quick thought about your website avox.live...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithwebtraffic.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE http://talkwithwebtraffic.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithwebtraffic.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=avox.live\r\n'),(0,45,'Crytoronron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://nala.startupers.se/promo '),(0,46,'Eric Jones','[email protected]',555,'Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at avox.live.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,47,'Crytoronron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://nala.startupers.se/gotodate/go '),(0,48,'Crytoronron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://nala.startupers.se/gotodate/go '),(0,49,'Crytoronron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. https://nala.startupers.se/gotodate/go '),(0,50,'Crytoronron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://nala.startupers.se/gotodate/go '),(0,51,'Crytoronron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://nala.startupers.se/gotodate/go '),(0,52,'Crytoronron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://nala.startupers.se/gotodate/go '),(0,53,'Crytoronron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://nala.startupers.se/gotodate/go '),(0,54,'Crytoronron','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://nala.startupers.se/gotodate/go '),(0,55,'Crytoronron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://nala.startupers.se/gotodate/go '),(0,56,'Crytoronron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. https://nala.startupers.se/gotodate/go '),(0,57,'Crytoronron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://nala.startupers.se/gotodate/go '),(0,58,'Crytoronron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://nala.startupers.se/gotodate/go '),(0,59,'Crytoronron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://nala.startupers.se/gotodate/go '),(0,60,'Crytoronron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://nala.startupers.se/gotodate/go '),(0,61,'Eric Jones','[email protected]',555,'Hey, this is Eric and I ran across avox.live a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,62,'Crytoronron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://nala.startupers.se/gotodate/go '),(0,63,'Crytoronron','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. https://nala.startupers.se/gotodate/go '),(0,64,'Crytoronron','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! https://nala.startupers.se/gotodate/go '),(0,65,'Crytoronron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! https://nala.startupers.se/gotodate/go '),(0,66,'Crytoronron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. https://nala.startupers.se/gotodate/go '),(0,67,'Crytoronron','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://nala.startupers.se/gotodate/go '),(0,68,'Crytoronron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://nala.startupers.se/gotodate/go '),(0,69,'Crytoronron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://nala.startupers.se/gotodate/go '),(0,70,'Eric Jones','[email protected]',555,'Hello, my name’s Eric and I just ran across your website at avox.live...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=avox.live\r\n'),(0,71,'Crytoron','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://nala.dkworld.de/gotodate/go'),(0,72,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.dkworld.de/gotodate/go'),(0,73,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. https://nala.dkworld.de/gotodate/go'),(0,74,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://nala.dkworld.de/gotodate/go'),(0,75,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://nala.dkworld.de/gotodate/go'),(0,76,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://nala.dkworld.de/gotodate/go'),(0,77,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://nala.dkworld.de/gotodate/go'),(0,78,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://nala.dkworld.de/gotodate/go'),(0,79,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://nala.dkworld.de/gotodate/go'),(0,80,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://nala.dkworld.de/gotodate/go'),(0,81,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. https://nala.dkworld.de/gotodate/go'),(0,82,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. https://nala.dkworld.de/gotodate/go'),(0,83,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://nala.dkworld.de/gotodate/go'),(0,84,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://nala.dkworld.de/gotodate/go'),(0,85,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. https://nala.dkworld.de/gotodate/go'),(0,86,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://nala.dkworld.de/gotodate/go'),(0,87,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://nala.dkworld.de/gotodate/go'),(0,88,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://nala.dkworld.de/gotodate/go'),(0,89,'Crytoron','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. https://nala.dkworld.de/gotodate/go'),(0,90,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://nala.dkworld.de/gotodate/go'),(0,91,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://nala.dkworld.de/gotodate/go'),(0,92,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://nala.dkworld.de/gotodate/go'),(0,93,'Crytoron','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://nala.seamonkey.es/gotodate/go'),(0,94,'Crytoron','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. https://nala.seamonkey.es/gotodate/go'),(0,95,'Crytoron','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. https://nala.seamonkey.es/gotodate/go'),(0,96,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://nala.seamonkey.es/gotodate/go'),(0,97,'Crytoron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. https://nala.seamonkey.es/gotodate/go'),(0,98,'Crytoron','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://nala.seamonkey.es/gotodate/go'),(0,99,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. https://nala.seamonkey.es/gotodate/go'),(0,100,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://nala.seamonkey.es/gotodate/go'),(0,101,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://nala.seamonkey.es/gotodate/go'),(0,102,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://nala.seamonkey.es/gotodate/go'),(0,103,'Crytoron','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. https://nala.seamonkey.es/gotodate/go'),(0,104,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. https://nala.seamonkey.es/gotodate/go'),(0,105,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://nala.seamonkey.es/gotodate/go'),(0,106,'Crytoron','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://nala.seamonkey.es/gotodate/go'),(0,107,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://nala.seamonkey.es/gotodate/go'),(0,108,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. https://nala.seamonkey.es/gotodate/go'),(0,109,'Crytoron','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. https://nala.seamonkey.es/gotodate/go'),(0,110,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://nala.seamonkey.es/gotodate/go'),(0,111,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://nala.seamonkey.es/gotodate/go'),(0,112,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://nala.seamonkey.es/gotodate/go'),(0,113,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. https://nala.seamonkey.es/gotodate/go'),(0,114,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://nala.seamonkey.es/gotodate/go'),(0,115,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. https://nala.seamonkey.es/gotodate/go'),(0,116,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. https://nala.seamonkey.es/gotodate/go'),(0,117,'Crytoron','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. https://nala.seamonkey.es/gotodate/go'),(0,118,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://nala.seamonkey.es/gotodate/go'),(0,119,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://nala.seamonkey.es/gotodate/go'),(0,120,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://nala.seamonkey.es/gotodate/go'),(0,121,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://nala.seamonkey.es/gotodate/go'),(0,122,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://nala.seamonkey.es/gotodate/go'),(0,123,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://nala.seamonkey.es/gotodate/go'),(0,124,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://nala.seamonkey.es/gotodate/go'),(0,125,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! https://nala.seamonkey.es/gotodate/go'),(0,126,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.seamonkey.es/gotodate/go'),(0,127,'Crytoron','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://nala.seamonkey.es/gotodate/go'),(0,128,'Crytoron','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://nala.seamonkey.es/gotodate/go'),(0,129,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. https://nala.seamonkey.es/gotodate/go'),(0,130,'Crytoron','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! https://nala.seamonkey.es/gotodate/go'),(0,131,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://nala.seamonkey.es/gotodate/go'),(0,132,'Eric Jones','[email protected]',555,'Hey, this is Eric and I ran across avox.live a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,133,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. https://nala.seamonkey.es/gotodate/go'),(0,134,'Crytoron','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://nala.seamonkey.es/gotodate/go'),(0,135,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.seamonkey.es/gotodate/go'),(0,136,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.seamonkey.es/gotodate/go'),(0,137,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://nala.seamonkey.es/gotodate/go'),(0,138,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://nala.seamonkey.es/gotodate/go'),(0,139,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://nala.seamonkey.es/gotodate/go'),(0,140,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://nala.seamonkey.es/gotodate/go'),(0,141,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://nala.seamonkey.es/gotodate/go'),(0,142,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://nala.seamonkey.es/gotodate/go'),(0,143,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://nala.seamonkey.es/gotodate/go'),(0,144,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://nala.seamonkey.es/gotodate/go'),(0,145,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. https://nala.seamonkey.es/gotodate/go'),(0,146,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://nala.seamonkey.es/gotodate/go'),(0,147,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://nala.seamonkey.es/gotodate/go'),(0,148,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. https://nala.seamonkey.es/gotodate/go'),(0,149,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://nala.seamonkey.es/gotodate/go'),(0,150,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://nala.seamonkey.es/gotodate/go'),(0,151,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://nala.seamonkey.es/gotodate/go'),(0,152,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://nala.seamonkey.es/gotodate/go'),(0,153,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://nala.seamonkey.es/gotodate/go'),(0,154,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://nala.seamonkey.es/gotodate/go'),(0,155,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://nala.seamonkey.es/gotodate/go'),(0,156,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://nala.seamonkey.es/gotodate/go'),(0,157,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. https://nala.seamonkey.es/gotodate/go'),(0,158,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://nala.seamonkey.es/gotodate/go'),(0,159,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://nala.seamonkey.es/gotodate/go'),(0,160,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://nala.seamonkey.es/gotodate/go'),(0,161,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://nala.seamonkey.es/gotodate/go'),(0,162,'Eric Jones','[email protected]',555,'Hi, my name is Eric and I’m betting you’d like your website avox.live to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at avox.live.\r\n\r\nTalk With Web Visitor – CLICK HERE https://jumboleadmagnet.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://jumboleadmagnet.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://jumboleadmagnet.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://jumboleadmagnet.com/unsubscribe.aspx?d=avox.live\r\n'),(0,163,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://nala.seamonkey.es/gotodate/go'),(0,164,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://nala.seamonkey.es/gotodate/go'),(0,165,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://nala.seamonkey.es/gotodate/go'),(0,166,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. https://nala.seamonkey.es/gotodate/go'),(0,167,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://nala.seamonkey.es/gotodate/go'),(0,168,'Crytoron','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://nala.seamonkey.es/gotodate/go'),(0,169,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://nala.startupers.se/gotodate/go'),(0,170,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://nala.startupers.se/gotodate/go'),(0,171,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://nala.startupers.se/gotodate/go'),(0,172,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://nala.startupers.se/gotodate/go'),(0,173,'Crytoron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://nala.startupers.se/gotodate/go'),(0,174,'Crytoron','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://nala.startupers.se/gotodate/go'),(0,175,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://nala.startupers.se/gotodate/go'),(0,176,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://nala.startupers.se/gotodate/go'),(0,177,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.startupers.se/gotodate/go'),(0,178,'Crytoron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://nala.startupers.se/gotodate/go'),(0,179,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://nala.startupers.se/gotodate/go'),(0,180,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.startupers.se/gotodate/go'),(0,181,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://nala.startupers.se/gotodate/go'),(0,182,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. https://nala.startupers.se/gotodate/go'),(0,183,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. https://nala.startupers.se/gotodate/go'),(0,184,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. https://nala.startupers.se/gotodate/go'),(0,185,'Crytoron','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://nala.startupers.se/gotodate/go'),(0,186,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. https://nala.startupers.se/gotodate/go'),(0,187,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://nala.startupers.se/gotodate/go'),(0,188,'Crytoron','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://nala.startupers.se/gotodate/go'),(0,189,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://nala.startupers.se/gotodate/go'),(0,190,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! https://nala.startupers.se/gotodate/go'),(0,191,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://nala.startupers.se/gotodate/go'),(0,192,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. https://nala.startupers.se/gotodate/go'),(0,193,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://nala.startupers.se/gotodate/go'),(0,194,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://nala.startupers.se/gotodate/go'),(0,195,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://nala.startupers.se/gotodate/go'),(0,196,'Crytoron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://nala.startupers.se/gotodate/go'),(0,197,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.elletvweb.it/gotodate/go'),(0,198,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://nala.elletvweb.it/gotodate/go'),(0,199,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. https://nala.elletvweb.it/gotodate/go'),(0,200,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://nala.elletvweb.it/gotodate/go'),(0,201,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://nala.elletvweb.it/gotodate/go'),(0,202,'Crytoron','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. https://nala.elletvweb.it/gotodate/go'),(0,203,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://nala.elletvweb.it/gotodate/go'),(0,204,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://nala.elletvweb.it/gotodate/go'),(0,205,'Crytoron','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://nala.elletvweb.it/gotodate/go'),(0,206,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://nala.elletvweb.it/gotodate/go'),(0,207,'Crytoron','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://nala.elletvweb.it/gotodate/go'),(0,208,'Crytoron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://nala.elletvweb.it/gotodate/go'),(0,209,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://nala.elletvweb.it/gotodate/go'),(0,210,'Crytoron','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://nala.elletvweb.it/gotodate/go'),(0,211,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://nala.elletvweb.it/gotodate/go'),(0,212,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://nala.elletvweb.it/gotodate/go'),(0,213,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://nala.elletvweb.it/gotodate/go'),(0,214,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://nala.elletvweb.it/gotodate/go'),(0,215,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. https://nala.elletvweb.it/gotodate/go'),(0,216,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://nala.elletvweb.it/gotodate/go'),(0,217,'Crytoron','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. https://nala.elletvweb.it/gotodate/go'),(0,218,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://nala.elletvweb.it/gotodate/go'),(0,219,'Crytoron','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://nala.elletvweb.it/gotodate/go'),(0,220,'Crytoron','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. https://nala.elletvweb.it/gotodate/go'),(0,221,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.elletvweb.it/gotodate/go'),(0,222,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://nala.elletvweb.it/gotodate/go'),(0,223,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.elletvweb.it/gotodate/go'),(0,224,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://nala.elletvweb.it/gotodate/go'),(0,225,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. https://nala.elletvweb.it/gotodate/go'),(0,226,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://nala.elletvweb.it/gotodate/go'),(0,227,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://nala.elletvweb.it/gotodate/go'),(0,228,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.elletvweb.it/gotodate/go'),(0,229,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! https://nala.elletvweb.it/gotodate/go'),(0,230,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://nala.elletvweb.it/gotodate/go'),(0,231,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. https://nala.elletvweb.it/gotodate/go'),(0,232,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://nala.elletvweb.it/gotodate/go'),(0,233,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://nala.elletvweb.it/gotodate/go'),(0,234,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://nala.elletvweb.it/gotodate/go'),(0,235,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://nala.elletvweb.it/gotodate/go'),(0,236,'Crytoron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://nala.elletvweb.it/gotodate/go'),(0,237,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://nala.elletvweb.it/gotodate/go'),(0,238,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! https://nala.elletvweb.it/gotodate/go'),(0,239,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.elletvweb.it/gotodate/go'),(0,240,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.elletvweb.it/gotodate/go'),(0,241,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.elletvweb.it/gotodate/go'),(0,242,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://nala.elletvweb.it/gotodate/go'),(0,243,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://nala.elletvweb.it/gotodate/go'),(0,244,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://nala.elletvweb.it/gotodate/go'),(0,245,'Crytoron','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://nala.elletvweb.it/gotodate/go'),(0,246,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! https://nala.elletvweb.it/gotodate/go'),(0,247,'Crytoron','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://nala.elletvweb.it/gotodate/go'),(0,248,'Crytoron','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://nala.elletvweb.it/gotodate/go'),(0,249,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://nala.elletvweb.it/gotodate/go'),(0,250,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://nala.elletvweb.it/gotodate/go'),(0,251,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://nala.elletvweb.it/gotodate/go'),(0,252,'Crytoron','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. https://nala.elletvweb.it/gotodate/go'),(0,253,'Crytoron','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. https://nala.elletvweb.it/gotodate/go'),(0,254,'Crytoron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. https://nala.elletvweb.it/gotodate/go'),(0,255,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://nala.elletvweb.it/gotodate/go'),(0,256,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! https://nala.elletvweb.it/gotodate/go'),(0,257,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://nala.elletvweb.it/gotodate/go'),(0,258,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://nala.elletvweb.it/gotodate/go'),(0,259,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://nala.elletvweb.it/gotodate/go'),(0,260,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. https://nala.elletvweb.it/gotodate/go'),(0,261,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://nala.elletvweb.it/gotodate/go'),(0,262,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://nala.elletvweb.it/gotodate/go'),(0,263,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. https://nala.elletvweb.it/gotodate/go'),(0,264,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://nala.elletvweb.it/gotodate/go'),(0,265,'Crytoron','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://nala.elletvweb.it/gotodate/go'),(0,266,'Crytoron','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://nala.elletvweb.it/gotodate/go'),(0,267,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://nala.elletvweb.it/gotodate/go'),(0,268,'Crytoron','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! https://nala.elletvweb.it/gotodate/go'),(0,269,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://nala.elletvweb.it/gotodate/go'),(0,270,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. https://nala.elletvweb.it/gotodate/go'),(0,271,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://nala.elletvweb.it/gotodate/go'),(0,272,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. https://nala.frostyelk.se/gotodate/go'),(0,273,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.frostyelk.se/gotodate/go'),(0,274,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://nala.frostyelk.se/gotodate/go'),(0,275,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. https://nala.frostyelk.se/gotodate/go'),(0,276,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://nala.frostyelk.se/gotodate/go'),(0,277,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://nala.frostyelk.se/gotodate/go'),(0,278,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://nala.frostyelk.se/gotodate/go'),(0,279,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://nala.frostyelk.se/gotodate/go'),(0,280,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://nala.frostyelk.se/gotodate/go'),(0,281,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! https://nala.frostyelk.se/gotodate/go'),(0,282,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://nala.frostyelk.se/gotodate/go'),(0,283,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://nala.frostyelk.se/gotodate/go'),(0,284,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://nala.frostyelk.se/gotodate/go'),(0,285,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://nala.frostyelk.se/gotodate/go'),(0,286,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. https://nala.frostyelk.se/gotodate/go'),(0,287,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://nala.pumpati.de/nala'),(0,288,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://nala.pumpati.de/nala'),(0,289,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://nala.pumpati.de/nala'),(0,290,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://nala.pumpati.de/nala'),(0,291,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://nala.pumpati.de/nala'),(0,292,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. https://nala.pumpati.de/nala'),(0,293,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://nala.pumpati.de/nala'),(0,294,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. https://nala.pumpati.de/nala'),(0,295,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.pumpati.de/nala'),(0,296,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://nala.pumpati.de/nala'),(0,297,'Crytoron','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://nala.pumpati.de/nala'),(0,298,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://nala.pumpati.de/nala'),(0,299,'Crytoron','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. https://nala.pumpati.de/nala'),(0,300,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://nala.pumpati.de/nala'),(0,301,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://nala.pumpati.de/nala'),(0,302,'Crytoron','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://nala.pumpati.de/nala'),(0,303,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.pumpati.de/nala'),(0,304,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://nala.pumpati.de/nala'),(0,305,'Crytoron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. https://nala.pumpati.de/nala'),(0,306,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://nala.qbe-medienhaus.de/nala'),(0,307,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://nala.qbe-medienhaus.de/nala'),(0,308,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. https://nala.qbe-medienhaus.de/nala'),(0,309,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://nala.qbe-medienhaus.de/nala'),(0,310,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://nala.qbe-medienhaus.de/nala'),(0,311,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.qbe-medienhaus.de/nala'),(0,312,'Crytoron','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://nala.qbe-medienhaus.de/nala'),(0,313,'Crytoron','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://nala.qbe-medienhaus.de/nala'),(0,314,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://nala.qbe-medienhaus.de/nala'),(0,315,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://nala.qbe-medienhaus.de/nala'),(0,316,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://nala.qbe-medienhaus.de/nala'),(0,317,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://nala.qbe-medienhaus.de/nala'),(0,318,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://nala.qbe-medienhaus.de/nala'),(0,319,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.qbe-medienhaus.de/nala'),(0,320,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://nala.qbe-medienhaus.de/nala'),(0,321,'Crytoron','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. https://nala.qbe-medienhaus.de/nala'),(0,322,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://nala.qbe-medienhaus.de/nala'),(0,323,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. https://nala.qbe-medienhaus.de/nala'),(0,324,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://nala.qbe-medienhaus.de/nala'),(0,325,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.qbe-medienhaus.de/nala'),(0,326,'Crytoron','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://nala.qbe-medienhaus.de/nala'),(0,327,'Crytoron','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. https://nala.qbe-medienhaus.de/nala'),(0,328,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://nala.qbe-medienhaus.de/nala'),(0,329,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. https://nala.qbe-medienhaus.de/nala'),(0,330,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.qbe-medienhaus.de/nala'),(0,331,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://nala.qbe-medienhaus.de/nala'),(0,332,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://nala.qbe-medienhaus.de/nala'),(0,333,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://nala.qbe-medienhaus.de/nala'),(0,334,'Crytoron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://nala.qbe-medienhaus.de/nala'),(0,335,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. https://nala.qbe-medienhaus.de/nala'),(0,336,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://nala.qbe-medienhaus.de/nala'),(0,337,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. https://nala.qbe-medienhaus.de/nala'),(0,338,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://drive.google.com/file/d/1Rqop87rM8CQDz6UtBb2tXehOKwoUG4KK/view?usp=sharing'),(0,339,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. https://drive.google.com/file/d/1klikjyPA_gfcc5swGrEuYF6AC0AYt2dI/view?usp=sharing'),(0,340,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://drive.google.com/file/d/1iPHBY0ZdbiBAqS_jjakxVNLlSevtFd41/view?usp=sharing'),(0,341,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://drive.google.com/file/d/1ZtpcAfZ5MIqMTOn0hOHHCykKbwSNPrmw/view?usp=sharing'),(0,342,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://drive.google.com/file/d/1ZtpcAfZ5MIqMTOn0hOHHCykKbwSNPrmw/view?usp=sharing'),(0,343,'Crytoron','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://drive.google.com/file/d/1HMRjvdPNeZ2W7wQLK2YHm_Q_pmRH4IzX/view?usp=sharing'),(0,344,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. https://drive.google.com/file/d/16h--2NxCymIYLkRyC39ltIg-nBif8Ayz/view?usp=sharing'),(0,345,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://drive.google.com/file/d/1HMRjvdPNeZ2W7wQLK2YHm_Q_pmRH4IzX/view?usp=sharing'),(0,346,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. https://drive.google.com/file/d/16h--2NxCymIYLkRyC39ltIg-nBif8Ayz/view?usp=sharing'),(0,347,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://drive.google.com/file/d/1z2pZkAuKV9gLJURJKnMx-Tik7d1gjSUI/view'),(0,348,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://drive.google.com/file/d/1z2pZkAuKV9gLJURJKnMx-Tik7d1gjSUI/view'),(0,349,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://nala.gizmo-inc.fr/nala'),(0,350,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://nala.gizmo-inc.fr/nala'),(0,351,'Crytoron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://nala.gizmo-inc.fr/nala'),(0,352,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://nala.gizmo-inc.fr/nala'),(0,353,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://nala.gizmo-inc.fr/nala'),(0,354,'Crytoron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. https://nala.gizmo-inc.fr/nala'),(0,355,'Crytoron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://nala.gizmo-inc.fr/nala'),(0,356,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. https://nala.gizmo-inc.fr/nala'),(0,357,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://nala.chronicleshardcore.de/nala'),(0,358,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. https://nala.chronicleshardcore.de/nala'),(0,359,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://nala.chronicleshardcore.de/nala'),(0,360,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://nala.chronicleshardcore.de/nala'),(0,361,'Crytoron','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://nala.chronicleshardcore.de/nala'),(0,362,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://nala.chronicleshardcore.de/nala'),(0,363,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://nala.danceit.es/nala'),(0,364,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://nala.danceit.es/nala'),(0,365,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://nala.danceit.es/nala'),(0,366,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. https://nala.danceit.es/nala'),(0,367,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://nala.danceit.es/nala'),(0,368,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://nala.danceit.es/nala'),(0,369,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! https://nala.danceit.es/nala'),(0,370,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://nala.echinat.de/nala'),(0,371,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://nala.echinat.de/nala'),(0,372,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://nala.echinat.de/nala'),(0,373,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://nala.echinat.de/nala'),(0,374,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. https://nala.echinat.de/nala'),(0,375,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.echinat.de/nala'),(0,376,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://nala.echinat.de/nala'),(0,377,'Crytoron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://nala.echinat.de/nala'),(0,378,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://nala.echinat.de/nala'),(0,379,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.echinat.de/nala'),(0,380,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://nala.echinat.de/nala'),(0,381,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://nala.echinat.de/nala'),(0,382,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.echinat.de/nala'),(0,383,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://nala.echinat.de/nala'),(0,384,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. https://nala.echinat.de/nala'),(0,385,'Crytoron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://nala.echinat.de/nala'),(0,386,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://nala.echinat.de/nala'),(0,387,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://nala.echinat.de/nala'),(0,388,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://nala.echinat.de/nala'),(0,389,'ChristinaCems','[email protected]',420,'Нellоǃ\r\nΡеrhaрs mу mеѕѕаge is tоо ѕрecifiс.\r\nВut mу older ѕistеr fоund а wondеrful man hеrе аnd theу have a greаt rеlаtiоnѕhiр, but what аbоut me?\r\nI am 23 yearѕ old, Christіna, frоm thе Czech Rеpubliс, know Εnglish lаnguаgе alѕo\r\nАnd... bеttеr tо ѕay it immediаtеlу. I аm biѕехual. I am not jeаlоus of аnothеr woman... еѕpeсіallу іf we make lоve togеther.\r\nΑh yеѕ, I cook vеry taѕtyǃ аnd I lоve not оnlу сook ;))\r\nIm rеal girl аnd lооking fоr sеrіоuѕ аnd hоt relatiоnshіp...\r\nАnywау, yоu cаn find my prоfіlе hеre: http://kmakamaniphso.gq/usr-10602/ \r\n'),(0,390,'Crytoron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://nala.echinat.de/nala'),(0,391,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://nala.echinat.de/nala'),(0,392,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. https://nala.echinat.de/nala'),(0,393,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://nala.echinat.de/nala'),(0,394,'Crytoron','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://nala.echinat.de/nala'),(0,395,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://nala.echinat.de/nala'),(0,396,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://nala.echinat.de/nala'),(0,397,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://nala.echinat.de/nala'),(0,398,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://nala.echinat.de/nala'),(0,399,'Crytoron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. https://nala.echinat.de/nala'),(0,400,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://nala.echinat.de/nala'),(0,401,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://nala.echinat.de/nala'),(0,402,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://nala.echinat.de/nala'),(0,403,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://nala.echinat.de/nala'),(0,404,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. https://nala.echinat.de/nala'),(0,405,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://nala.echinat.de/nala'),(0,406,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://nala.echinat.de/nala'),(0,407,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://nala.echinat.de/nala'),(0,408,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://nala.echinat.de/nala'),(0,409,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.echinat.de/nala'),(0,410,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. https://nala.echinat.de/nala'),(0,411,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://nala.echinat.de/nala'),(0,412,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://nala.echinat.de/nala'),(0,413,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://nala.echinat.de/nala'),(0,414,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://nala.echinat.de/nala'),(0,415,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://nala.echinat.de/nala'),(0,416,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://nala.echinat.de/nala'),(0,417,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://nala.echinat.de/nala'),(0,418,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. https://nala.echinat.de/nala'),(0,419,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://nala.echinat.de/nala'),(0,420,'Crytoron','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://nala.echinat.de/nala'),(0,421,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://nala.echinat.de/nala'),(0,422,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.echinat.de/nala'),(0,423,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. https://nala.rbertilsson.se/'),(0,424,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://nala.rbertilsson.se/'),(0,425,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://nala.rbertilsson.se/'),(0,426,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://nala.rbertilsson.se/'),(0,427,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://nala.rbertilsson.se/'),(0,428,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://nala.rbertilsson.se/'),(0,429,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://nala.rbertilsson.se/'),(0,430,'Crytoron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://nala.rbertilsson.se/'),(0,431,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://nala.rbertilsson.se/'),(0,432,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://nala.rbertilsson.se/'),(0,433,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://nala.rbertilsson.se/'),(0,434,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://nala.rbertilsson.se/'),(0,435,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://nala.rbertilsson.se/'),(0,436,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.rbertilsson.se/'),(0,437,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://nala.rbertilsson.se/'),(0,438,'Crytoron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://nala.rbertilsson.se/'),(0,439,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://nala.rbertilsson.se/'),(0,440,'Crytoron','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://nala.rbertilsson.se/'),(0,441,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://nala.rbertilsson.se/'),(0,442,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://nala.rbertilsson.se/'),(0,443,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://nala.rbertilsson.se/'),(0,444,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://nala.rbertilsson.se/'),(0,445,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://nala.rbertilsson.se/'),(0,446,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://nala.rbertilsson.se/'),(0,447,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://nala.rbertilsson.se/'),(0,448,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. https://nala.rbertilsson.se/'),(0,449,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://nala.rbertilsson.se/'),(0,450,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. https://nala.rbertilsson.se/'),(0,451,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://nala.rbertilsson.se/'),(0,452,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. https://nala.rbertilsson.se/'),(0,453,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. https://nala.rbertilsson.se/'),(0,454,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://nala.rbertilsson.se/'),(0,455,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://nala.rbertilsson.se/'),(0,456,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://nala.rbertilsson.se/'),(0,457,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://nala.rbertilsson.se/'),(0,458,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. https://nala.rbertilsson.se/'),(0,459,'Crytoron','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. https://nala.rbertilsson.se/'),(0,460,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://nala.rbertilsson.se/'),(0,461,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://nala.rbertilsson.se/'),(0,462,'Crytoron','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://nala.rbertilsson.se/'),(0,463,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://nala.rbertilsson.se/'),(0,464,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://nala.rbertilsson.se/'),(0,465,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.rbertilsson.se/'),(0,466,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://nala.rbertilsson.se/'),(0,467,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://nala.rbertilsson.se/'),(0,468,'Crytoron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. https://nala.rbertilsson.se/'),(0,469,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! https://nala.rbertilsson.se/'),(0,470,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://nala.rbertilsson.se/'),(0,471,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://nala.rbertilsson.se/'),(0,472,'Crytoron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://nala.rbertilsson.se/'),(0,473,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.rbertilsson.se/'),(0,474,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://nala.rbertilsson.se/'),(0,475,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! https://nala.rbertilsson.se/'),(0,476,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://nala.rbertilsson.se/'),(0,477,'Crytoron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://nala.rbertilsson.se/'),(0,478,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. https://nala.rbertilsson.se/'),(0,479,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. https://nala.rbertilsson.se/'),(0,480,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.rbertilsson.se/'),(0,481,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. https://nala.rbertilsson.se/'),(0,482,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://nala.rbertilsson.se/'),(0,483,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://nala.rbertilsson.se/'),(0,484,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. https://nala.rbertilsson.se/'),(0,485,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://nala.escueladelcambio.es/'),(0,486,'Crytoron','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://nala.escueladelcambio.es/'),(0,487,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://nala.escueladelcambio.es/'),(0,488,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.escueladelcambio.es/'),(0,489,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://nala.escueladelcambio.es/'),(0,490,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://nala.escueladelcambio.es/'),(0,491,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://nala.escueladelcambio.es/'),(0,492,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. https://nala.escueladelcambio.es/'),(0,493,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! https://nala.escueladelcambio.es/'),(0,494,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. https://nala.escueladelcambio.es/'),(0,495,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://nala.escueladelcambio.es/'),(0,496,'Crytoron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://nala.escueladelcambio.es/'),(0,497,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://nala.escueladelcambio.es/'),(0,498,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://nala.escueladelcambio.es/'),(0,499,'Crytoron','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://nala.escueladelcambio.es/'),(0,500,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://nala.escueladelcambio.es/'),(0,501,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://nala.escueladelcambio.es/'),(0,502,'Crytoron','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://nala.escueladelcambio.es/'),(0,503,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. https://nala.escueladelcambio.es/'),(0,504,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://nala.escueladelcambio.es/'),(0,505,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://nala.escueladelcambio.es/'),(0,506,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://nala.escueladelcambio.es/'),(0,507,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://nala.escueladelcambio.es/'),(0,508,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://nala.escueladelcambio.es/'),(0,509,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://nala.escueladelcambio.es/'),(0,510,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://nala.escueladelcambio.es/'),(0,511,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://nala.escueladelcambio.es/'),(0,512,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://nala.escueladelcambio.es/'),(0,513,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://nala.escueladelcambio.es/'),(0,514,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://nala.escueladelcambio.es/'),(0,515,'Crytoron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://nala.escueladelcambio.es/'),(0,516,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://nala.escueladelcambio.es/'),(0,517,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://nala.escueladelcambio.es/'),(0,518,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://nala.escueladelcambio.es/'),(0,519,'Crytoron','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. https://nala.escueladelcambio.es/'),(0,520,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://nala.escueladelcambio.es/'),(0,521,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://nala.escueladelcambio.es/'),(0,522,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://nala.escueladelcambio.es/'),(0,523,'Crytoron','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://nala.escueladelcambio.es/'),(0,524,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://nala.escueladelcambio.es/'),(0,525,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://nala.escueladelcambio.es/'),(0,526,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://nala.escueladelcambio.es/'),(0,527,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://nala.escueladelcambio.es/'),(0,528,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. https://nala.escueladelcambio.es/'),(0,529,'Crytoron','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. https://nala.escueladelcambio.es/'),(0,530,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. https://nala.escueladelcambio.es/'),(0,531,'Crytoron','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://nala.escueladelcambio.es/'),(0,532,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://nala.escueladelcambio.es/'),(0,533,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://nala.escueladelcambio.es/'),(0,534,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://nala.escueladelcambio.es/'),(0,535,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://nala.escueladelcambio.es/'),(0,536,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. https://nala.escueladelcambio.es/'),(0,537,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://nala.escueladelcambio.es/'),(0,538,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://nala.escueladelcambio.es/'),(0,539,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. https://nala.escueladelcambio.es/'),(0,540,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://nala.escueladelcambio.es/'),(0,541,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. https://nala.escueladelcambio.es/'),(0,542,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://nala.escueladelcambio.es/'),(0,543,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://nala.escueladelcambio.es/'),(0,544,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://nala.escueladelcambio.es/'),(0,545,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. https://nala.escueladelcambio.es/'),(0,546,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://nala.escueladelcambio.es/'),(0,547,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://nala.escueladelcambio.es/'),(0,548,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://nala.escueladelcambio.es/'),(0,549,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://nala.escueladelcambio.es/'),(0,550,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://nala.escueladelcambio.es/'),(0,551,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. https://nala.escueladelcambio.es/'),(0,552,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://nala.escueladelcambio.es/'),(0,553,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://nala.escueladelcambio.es/'),(0,554,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://nala.escueladelcambio.es/'),(0,555,'Crytoron','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. https://nala.escueladelcambio.es/'),(0,556,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://nala.escueladelcambio.es/'),(0,557,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://nala.escueladelcambio.es/'),(0,558,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://nala.escueladelcambio.es/'),(0,559,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://nala.escueladelcambio.es/'),(0,560,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://nala.escueladelcambio.es/'),(0,561,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. https://nala.escueladelcambio.es/'),(0,562,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://nala.escueladelcambio.es/'),(0,563,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://nala.escueladelcambio.es/'),(0,564,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://nala.escueladelcambio.es/'),(0,565,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://nala.escueladelcambio.es/'),(0,566,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. http://go.tazalus.com/096s'),(0,567,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. http://go.tazalus.com/096s'),(0,568,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. http://go.tazalus.com/096s'),(0,569,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. http://go.tazalus.com/096s'),(0,570,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. http://go.tazalus.com/096s'),(0,571,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. http://go.tazalus.com/096s'),(0,572,'Crytoron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. http://go.tazalus.com/096s'),(0,573,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. http://go.tazalus.com/096s'),(0,574,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. http://go.tazalus.com/096s'),(0,575,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. http://go.tazalus.com/096s'),(0,576,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. http://go.tazalus.com/096s'),(0,577,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. http://go.tazalus.com/096s'),(0,578,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! http://go.tazalus.com/096s'),(0,579,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.tazalus.com/096s'),(0,580,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! http://go.tazalus.com/096s'),(0,581,'Crytoron','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. http://go.tazalus.com/096s'),(0,582,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. http://go.tazalus.com/096s'),(0,583,'Crytoron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! http://go.tazalus.com/096s'),(0,584,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. http://go.tazalus.com/096s'),(0,585,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. http://go.tazalus.com/096s'),(0,586,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. http://go.tazalus.com/096s'),(0,587,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. http://go.tazalus.com/096s'),(0,588,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. http://go.tazalus.com/096s'),(0,589,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. http://go.tazalus.com/096s'),(0,590,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. http://go.tazalus.com/096s'),(0,591,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. http://go.tazalus.com/096s'),(0,592,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. http://go.tazalus.com/096s'),(0,593,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. http://go.tazalus.com/096s'),(0,594,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. http://go.tazalus.com/096s'),(0,595,'Crytoron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. http://go.tazalus.com/096s'),(0,596,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. http://go.tazalus.com/096s'),(0,597,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. http://go.tazalus.com/096s'),(0,598,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. http://go.tazalus.com/096s'),(0,599,'Crytoron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. http://go.tazalus.com/096s'),(0,600,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. http://go.tazalus.com/096s'),(0,601,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. http://go.tazalus.com/096s'),(0,602,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. http://go.tazalus.com/096s'),(0,603,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! http://go.tazalus.com/096s'),(0,604,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. http://go.tazalus.com/096s'),(0,605,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. http://go.tazalus.com/096s'),(0,606,'Crytoron','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. http://go.tazalus.com/096s'),(0,607,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. http://go.tazalus.com/096s'),(0,608,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. http://go.tazalus.com/096s'),(0,609,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. http://go.tazalus.com/096s'),(0,610,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. http://go.tazalus.com/096s'),(0,611,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. http://go.tazalus.com/096s'),(0,612,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. http://go.tazalus.com/096s'),(0,613,'Crytoron','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. http://go.tazalus.com/096s'),(0,614,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. http://go.tazalus.com/096s'),(0,615,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. http://go.tazalus.com/096s'),(0,616,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. http://go.tazalus.com/096s'),(0,617,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! http://go.tazalus.com/096s'),(0,618,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. http://go.tazalus.com/096s'),(0,619,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. http://go.tazalus.com/096s'),(0,620,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. http://go.tazalus.com/096s'),(0,621,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. https://riviello.es/'),(0,622,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://riviello.es/promo'),(0,623,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. https://riviello.es/promo'),(0,624,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://riviello.es/promo'),(0,625,'Crytoron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://riviello.es/promo'),(0,626,'Crytoron','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. https://riviello.es/promo'),(0,627,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. https://riviello.es/promo'),(0,628,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://riviello.es/promo'),(0,629,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://riviello.es/promo'),(0,630,'Crytoron','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://riviello.es/promo'),(0,631,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. https://riviello.es/promo'),(0,632,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://riviello.es/promo'),(0,633,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://riviello.es/promo'),(0,634,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://riviello.es/promo'),(0,635,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://riviello.es/promo'),(0,636,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://riviello.es/promo'),(0,637,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://riviello.es/promo'),(0,638,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. https://riviello.es/promo'),(0,639,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://riviello.es/promo'),(0,640,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://riviello.es/promo'),(0,641,'Crytoron','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://riviello.es/promo'),(0,642,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://riviello.es/promo'),(0,643,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://riviello.es/promo'),(0,644,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://riviello.es/promo'),(0,645,'Crytoron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. https://riviello.es/promo'),(0,646,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. https://riviello.es/promo'),(0,647,'Crytoron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://riviello.es/promo'),(0,648,'Crytoron','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. https://riviello.es/promo'),(0,649,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. https://riviello.es/promo'),(0,650,'Crytoron','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://riviello.es/promo'),(0,651,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://riviello.es/promo'),(0,652,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. https://riviello.es/promo'),(0,653,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://riviello.es/promo'),(0,654,'Crytoron','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://riviello.es/promo'),(0,655,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://riviello.es/promo'),(0,656,'Philipnaips','[email protected]',2147483647,'avox.live ofeiifeodwpdeofijesdwsfeiiejokdwpdoefigjfidoksfihigjskodwsfiheghifegergsdfsregsfggrgr'),(0,657,'Crytoron','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://riviello.es/promo'),(0,658,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://riviello.es/promo'),(0,659,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://riviello.es/promo'),(0,660,'Crytoron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. https://riviello.es/promo'),(0,661,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://riviello.es/promo'),(0,662,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. https://riviello.es/promo'),(0,663,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://riviello.es/promo'),(0,664,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. https://riviello.es/promo'),(0,665,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://riviello.es/promo'),(0,666,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://riviello.es/promo'),(0,667,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://riviello.es/promo'),(0,668,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://riviello.es/promo'),(0,669,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://riviello.es/promo'),(0,670,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://riviello.es/promo'),(0,671,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://riviello.es/promo'),(0,672,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://riviello.es/promo'),(0,673,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://riviello.es/promo'),(0,674,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://riviello.es/promo'),(0,675,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://riviello.es/promo'),(0,676,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. http://go.tazalus.com/0j0l'),(0,677,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. http://go.tazalus.com/0j0l'),(0,678,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. http://go.tazalus.com/0j0l'),(0,679,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? http://go.tazalus.com/0j0l'),(0,680,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. http://go.tazalus.com/0j0l'),(0,681,'Crytoron','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. http://go.tazalus.com/0j0l'),(0,682,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. http://go.tazalus.com/0j0l'),(0,683,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. http://go.tazalus.com/0j0l'),(0,684,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! http://go.tazalus.com/0j0l'),(0,685,'Crytoron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. http://go.tazalus.com/0j0l'),(0,686,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! http://go.tazalus.com/0j0l'),(0,687,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. http://go.tazalus.com/0j0l'),(0,688,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.tazalus.com/0j0l'),(0,689,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. http://go.tazalus.com/0j0l'),(0,690,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. http://go.tazalus.com/0j0l'),(0,691,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. http://go.tazalus.com/0j0l'),(0,692,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. http://go.tazalus.com/0j0l'),(0,693,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. http://go.tazalus.com/0j0l'),(0,694,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. http://go.tazalus.com/0j0l'),(0,695,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. http://go.tazalus.com/0j0l'),(0,696,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! http://go.tazalus.com/0j0l'),(0,697,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. http://go.tazalus.com/0j0l'),(0,698,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? http://go.tazalus.com/0j0l'),(0,699,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. http://go.tazalus.com/0j0l'),(0,700,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. http://go.tazalus.com/0j0l'),(0,701,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. http://go.tazalus.com/0j0l'),(0,702,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! http://go.tazalus.com/0j0l'),(0,703,'Crytoron','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. http://go.tazalus.com/0j0l'),(0,704,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. http://go.tazalus.com/0j0l'),(0,705,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. http://go.tazalus.com/0j0l'),(0,706,'Crytoron','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! http://go.tazalus.com/0j0l'),(0,707,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. http://go.tazalus.com/0j0l'),(0,708,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. http://go.tazalus.com/0j0l'),(0,709,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. http://go.tazalus.com/0j0l'),(0,710,'Crytoron','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. http://go.tazalus.com/0j0l'),(0,711,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. http://go.tazalus.com/0j0l'),(0,712,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. http://go.tazalus.com/0j0l'),(0,713,'Crytoron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. http://go.tazalus.com/0j0l'),(0,714,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. http://go.tazalus.com/0j0l'),(0,715,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. http://go.tazalus.com/0j0l'),(0,716,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. http://go.tazalus.com/0j0l'),(0,717,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. http://go.tazalus.com/0j0l'),(0,718,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. http://go.tazalus.com/0j0l'),(0,719,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. http://go.tazalus.com/0j0l'),(0,720,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. http://go.tazalus.com/0j0l'),(0,721,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. http://go.tazalus.com/0j0l'),(0,722,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. http://go.tazalus.com/0j0l'),(0,723,'Crytoron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! http://go.tazalus.com/0j0l'),(0,724,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. http://go.tazalus.com/0j0l'),(0,725,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! http://go.tazalus.com/0j0l'),(0,726,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. http://go.tazalus.com/0j0l'),(0,727,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. http://go.tazalus.com/0j0l'),(0,728,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. http://go.tazalus.com/0j0l'),(0,729,'Crytoron','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. http://go.tazalus.com/0j0l'),(0,730,'Crytoron','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! http://go.tazalus.com/0j0l'),(0,731,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. http://go.tazalus.com/0j0l'),(0,732,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. http://go.tygyguip.com/096s'),(0,733,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. http://go.tygyguip.com/096s'),(0,734,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. http://go.tygyguip.com/096s'),(0,735,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. http://go.tygyguip.com/096s'),(0,736,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. http://go.tygyguip.com/096s'),(0,737,'Crytoron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://emdn.cl/promo'),(0,738,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://emdn.cl/promo'),(0,739,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://emdn.cl/promo'),(0,740,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://emdn.cl/promo'),(0,741,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. https://emdn.cl/promo'),(0,742,'Crytoron','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://emdn.cl/promo'),(0,743,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://emdn.cl/promo'),(0,744,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://emdn.cl/promo'),(0,745,'Crytoron','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://emdn.cl/promo'),(0,746,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://emdn.cl/promo'),(0,747,'Crytoron','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. https://emdn.cl/promo'),(0,748,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://emdn.cl/promo'),(0,749,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://emdn.cl/promo'),(0,750,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. https://emdn.cl/promo'),(0,751,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. https://emdn.cl/promo'),(0,752,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://tiendaskon.com.es/promo'),(0,753,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://tiendaskon.com.es/promo'),(0,754,'Crytoron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://tiendaskon.com.es/promo'),(0,755,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://tiendaskon.com.es/promo'),(0,756,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://tiendaskon.com.es/promo'),(0,757,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://tiendaskon.com.es/promo'),(0,758,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://tiendaskon.com.es/promo'),(0,759,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://tiendaskon.com.es/promo'),(0,760,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://tiendaskon.com.es/promo'),(0,761,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://tiendaskon.com.es/promo'),(0,762,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://tiendaskon.com.es/promo'),(0,763,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://tiendaskon.com.es/promo'),(0,764,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. https://tiendaskon.com.es/promo'),(0,765,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://tiendaskon.com.es/promo'),(0,766,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://hierbalimon.es/promo'),(0,767,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. https://hierbalimon.es/promo'),(0,768,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://hierbalimon.es/promo'),(0,769,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://hierbalimon.es/promo'),(0,770,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://hierbalimon.es/promo'),(0,771,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://hierbalimon.es/promo'),(0,772,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://hierbalimon.es/promo'),(0,773,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://hierbalimon.es/promo'),(0,774,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://hierbalimon.es/promo'),(0,775,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://hierbalimon.es/promo'),(0,776,'Crytoron','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://hierbalimon.es/promo'),(0,777,'Crytoron','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://hierbalimon.es/promo'),(0,778,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. https://hierbalimon.es/promo'),(0,779,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://hierbalimon.es/promo'),(0,780,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://hierbalimon.es/promo'),(0,781,'Crytoron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! https://hierbalimon.es/promo'),(0,782,'Crytoron','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. https://bodyandsoul.com.es/promo'),(0,783,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://bodyandsoul.com.es/promo'),(0,784,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://bodyandsoul.com.es/promo'),(0,785,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://bodyandsoul.com.es/promo'),(0,786,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://bodyandsoul.com.es/promo'),(0,787,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://bodyandsoul.com.es/promo'),(0,788,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://bodyandsoul.com.es/promo'),(0,789,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://bodyandsoul.com.es/promo'),(0,790,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://bodyandsoul.com.es/promo'),(0,791,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. https://bodyandsoul.com.es/promo'),(0,792,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://bodyandsoul.com.es/promo'),(0,793,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://bodyandsoul.com.es/promo'),(0,794,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://bodyandsoul.com.es/promo'),(0,795,'Crytoron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://bodyandsoul.com.es/promo'),(0,796,'Crytoron','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. https://bodyandsoul.com.es/promo'),(0,797,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://bodyandsoul.com.es/promo'),(0,798,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://bodyandsoul.com.es/promo'),(0,799,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://puertobelenn.cl/promo'),(0,800,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. https://puertobelenn.cl/promo'),(0,801,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://puertobelenn.cl/promo'),(0,802,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://puertobelenn.cl/promo'),(0,803,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! http://www.focus-sport.club.tw/blog_system_show.php?action=redirect&id=158&link=https://puertobelenn.cl/promo'),(0,804,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. https://aj1431.online/zP6i4nzly0QcdFWDJLoFmGCEFZGm46O5lpM9tPIHduQGnqHsYhGJjqPFZQumx45g5yc19p0__ykS-2rbna0ldTUYfGZ96GbADUADhavDsxFDi8unaZzPZafd6ovXZ-Qy_Q0LVQJGSFDAmePlHVJ1G5viO13WycHceeQc4Hzlofhld9ZmRA7-FzIkNgaIKHEcafGWe8ed9VR0aQJOG1ctpuicQ5xpJaMBJ1G_qOE5QR8pgUn_ylr4r0Fy3pKbnZuuPJ8wndo55XutSBL0sU9GmXE42bPPD4jJ0UiXuXqA3DRB70SETsFzla9sKyddFwjbKiztZpf0tBDBFkDBSnUsjQ6tLlQ9ZfnieMA?u=https%3A%2F%2Fpuertobelenn.cl%2Fpromo'),(0,805,'Crytoron','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. http://dantealighieriasturias.es/idioma.php?cod=en&url=https%3A%2F%2Fpuertobelenn.cl%2Fpromo'),(0,806,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. http://delivery.com.sg/view-book?page=https%3A%2F%2Fpuertobelenn.cl%2Fpromo'),(0,807,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. http://hanweb.fpg.com.tw/gb/puertobelenn.cl%2Fpromo/index.php/member/417639/'),(0,808,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. http://ciferblat-shop.ru/bitrix/rk.php?goto=https://puertobelenn.cl/promo'),(0,809,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. http://www.quotes.sg/view-book?page=https%3A%2F%2Fpuertobelenn.cl%2Fpromo'),(0,810,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://www.912area.com/urldirect.php?biz=219826&xurl=https%3A%2F%2Fpuertobelenn.cl%2Fpromo'),(0,811,'Crytoron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. http://intern.mallander.de/prg/037/addklick.php?z=klick-seitenfenster-einladung&url=https://puertobelenn.cl/promo'),(0,812,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://www.mariononline.com/?ads_click=1&data=49040-49033-49032-46673-1&nonce=5f4364d2c9&redir=https%3A%2F%2Fpuertobelenn.cl%2Fpromo&c_url=https%3A%2F%2Fkickin.info%2Fblack%2Fand-you-will-probably-also-begs-to-write-code.php'),(0,813,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. http://csodalatosmagyarorszag.hu/webkamera/tihany-hajoallomas/?action=redirect&url=https%3A%2F%2Fpuertobelenn.cl%2Fpromo&id=39633'),(0,814,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. http://www.politicalpoet.com/adredirect.asp?url=https://puertobelenn.cl/promo'),(0,815,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile? http://amandabears.com/wp-content/themes/starttica/go.php?https://puertobelenn.cl/promo'),(0,816,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! http://atelier15-scop.com/wp-content/plugins/revslider-sharing-addon/public/revslider-sharing-addon-call.php?tpurl=62&share=https://puertobelenn.cl/promo'),(0,817,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. http://forumdate.ru/redirect-to/?redirect=https%3A%2F%2Fpuertobelenn.cl%2Fpromo'),(0,818,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. http://spookylinks.com/cgi-bin/topsites/out.cgi?id=aztaroth&url=https://puertobelenn.cl/promo'),(0,819,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. https://ztpro.ru/go?https://puertobelenn.cl/promo'),(0,820,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. http://cbdreview.info/wp/2019/02/11/what-you-need-to-generally-know-about-cbd-dosage/?ruleId=1&url=https%3A%2F%2Fpuertobelenn.cl%2Fpromo'),(0,821,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://en.skyland.ru/bitrix/redirect.php?event1=catalog_out&event2=puertobelenn.cl&event3=9A%D0D0%BCBF%D0D0%BDB8%D1D0%9F80%D0D1%81BF%D0D0%BA82&goto=https://puertobelenn.cl/promo'),(0,822,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://quehacerensantiago.cl/promo'),(0,823,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://quehacerensantiago.cl/promo'),(0,824,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://quehacerensantiago.cl/promo'),(0,825,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. https://quehacerensantiago.cl/promo'),(0,826,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. https://quehacerensantiago.cl/promo'),(0,827,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. https://quehacerensantiago.cl/promo'),(0,828,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://quehacerensantiago.cl/promo'),(0,829,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://quehacerensantiago.cl/promo'),(0,830,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://quehacerensantiago.cl/promo'),(0,831,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. https://quehacerensantiago.cl/promo'),(0,832,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://quehacerensantiago.cl/promo'),(0,833,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://quehacerensantiago.cl/promo'),(0,834,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://varatradgardsforening.se/promo'),(0,835,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://varatradgardsforening.se/promo'),(0,836,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. https://varatradgardsforening.se/promo'),(0,837,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://varatradgardsforening.se/promo'),(0,838,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. https://varatradgardsforening.se/promo'),(0,839,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://varatradgardsforening.se/promo'),(0,840,'RonUphon','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://varatradgardsforening.se/promo'),(0,841,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://varatradgardsforening.se/promo'),(0,842,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. http://go.tygyguip.com/096s'),(0,843,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? http://go.tygyguip.com/096s'),(0,844,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. http://go.tygyguip.com/096s'),(0,845,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. http://go.tygyguip.com/096s'),(0,846,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. http://go.tygyguip.com/096s'),(0,847,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. http://go.tygyguip.com/096s'),(0,848,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. http://go.tygyguip.com/096s'),(0,849,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. http://go.tygyguip.com/096s'),(0,850,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. http://go.tygyguip.com/096s'),(0,851,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. http://go.tygyguip.com/096s'),(0,852,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. http://go.tygyguip.com/096s'),(0,853,'RonUphon','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. http://go.tygyguip.com/096s'),(0,854,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. http://go.tygyguip.com/096s'),(0,855,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? http://go.tygyguip.com/096s'),(0,856,'RonUphon','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! http://go.tygyguip.com/096s'),(0,857,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. http://go.tygyguip.com/096s'),(0,858,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. http://go.tygyguip.com/096s'),(0,859,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. http://go.tygyguip.com/096s'),(0,860,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. http://go.tygyguip.com/096s'),(0,861,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. http://go.tygyguip.com/096s'),(0,862,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. http://go.tygyguip.com/096s'),(0,863,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. http://go.tygyguip.com/096s'),(0,864,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. http://go.tygyguip.com/096s'),(0,865,'RonUphon','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. http://go.tygyguip.com/096s'),(0,866,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. http://go.tygyguip.com/096s'),(0,867,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. http://go.tygyguip.com/096s'),(0,868,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. http://go.tygyguip.com/096s'),(0,869,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://allnews.elk.pl/096s'),(0,870,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://allnews.elk.pl/096s'),(0,871,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://allnews.elk.pl/096s'),(0,872,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://allnews.elk.pl/096s'),(0,873,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. https://allnews.elk.pl/096s'),(0,874,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://allnews.elk.pl/096s'),(0,875,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://allnews.elk.pl/096s'),(0,876,'RonUphon','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://allcnews.xyz/096s'),(0,877,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://allcnews.xyz/096s'),(0,878,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://allcnews.xyz/096s'),(0,879,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://allcnews.xyz/096s'),(0,880,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://allcnews.xyz/096s'),(0,881,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://allcnews.xyz/096s'),(0,882,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://allcnews.xyz/096s'),(0,883,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. http://go.tygyguip.com/0j35'),(0,884,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://allcryptonews.xyz/0j35'),(0,885,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://allcryptonews.xyz/0j35'),(0,886,'RonUphon','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://allcryptonews.xyz/0j35'),(0,887,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://allcryptonews.xyz/0j35'),(0,888,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://allcryptonews.xyz/0j35'),(0,889,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. https://allcryptonews.xyz/0j35'),(0,890,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://allcryptonews.xyz/0j35'),(0,891,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.tygyguip.com/0j35'),(0,892,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. http://go.tygyguip.com/0j35'),(0,893,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. http://go.tygyguip.com/0j35'),(0,894,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. http://go.tygyguip.com/0j35'),(0,895,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. http://go.tygyguip.com/0j35'),(0,896,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. http://go.tygyguip.com/0j35'),(0,897,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. http://go.tygyguip.com/0j35'),(0,898,'RonUphon','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. http://go.tygyguip.com/0j35'),(0,899,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. http://go.tygyguip.com/0j35'),(0,900,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! http://go.tygyguip.com/0j35'),(0,901,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. http://go.tygyguip.com/0j35'),(0,902,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! http://go.tygyguip.com/0j35'),(0,903,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! http://go.tygyguip.com/0j35'),(0,904,'RonUphon','[email protected]',2147483647,'Online financial Robot est clavem ad successus. http://go.tygyguip.com/0j35'),(0,905,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. http://go.tygyguip.com/0j35'),(0,906,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,907,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,908,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,909,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,910,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,911,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. http://go.tygyguip.com/0j35'),(0,912,'FrankTwemn','[email protected]',2147483647,'BILD.de: Aktuelle Nachrichten. \r\nWIR KONNEN ES NICHT GLAUBEN: Mike Tyson ist wieder fabelhaft reich! https://87bil.co/bild.de/?Nachrichten-ID-259578'),(0,913,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. http://go.tygyguip.com/0j35'),(0,914,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. http://go.tygyguip.com/0j35'),(0,915,'RonUphon','[email protected]',2147483647,'Online financial Robot est clavem ad successus. http://go.tygyguip.com/0j35'),(0,916,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. http://go.tygyguip.com/0j35'),(0,917,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. http://go.tygyguip.com/0j35'),(0,918,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! http://go.tygyguip.com/0j35'),(0,919,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. http://go.tygyguip.com/0j35'),(0,920,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. http://go.tygyguip.com/0j35'),(0,921,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. http://go.tygyguip.com/0j35'),(0,922,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? http://go.tygyguip.com/0j35'),(0,923,'RonUphon','[email protected]',2147483647,'Online financial Robot est clavem ad successus. http://go.tygyguip.com/0j35'),(0,924,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. http://go.tygyguip.com/0j35'),(0,925,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! http://go.tygyguip.com/0j35'),(0,926,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. http://go.tygyguip.com/0j35'),(0,927,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. http://go.tygyguip.com/0j35'),(0,928,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. http://go.tygyguip.com/0j35'),(0,929,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. http://go.tygyguip.com/0j35'),(0,930,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. http://go.tygyguip.com/0j35'),(0,931,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. http://go.tygyguip.com/0j35'),(0,932,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. http://go.tygyguip.com/0j35'),(0,933,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. http://go.tygyguip.com/0j35'),(0,934,'RonUphon','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. http://go.tygyguip.com/0j35'),(0,935,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. http://go.tygyguip.com/0j35'),(0,936,'RonUphon','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. http://go.tygyguip.com/0j35'),(0,937,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. http://go.tygyguip.com/0j35'),(0,938,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,939,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,940,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,941,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,942,'DonaldBup','[email protected]',2147483647,'avox.live Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk'),(0,943,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. http://go.tygyguip.com/0j35'),(0,944,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. http://go.tygyguip.com/0j35'),(0,945,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? http://go.tygyguip.com/0j35'),(0,946,'Christinasn','[email protected]',420,'Ηіǃ\r\nΙ\'vе nоtіced thаt mаnу guуs рrеfer regulаr gіrls.\r\nΙ aррlaude the men out therе whо had the bаllѕ to enjoy thе lovе of manу womеn and сhоoѕe thе оne that he knеw would be hiѕ best friend during the bumрy and сrazy thing cаlled lіfe.\r\nI wanted tо bе thаt frіеnd, not ϳust а stаble, relіаblе аnd bоrіng houѕewіfe.\r\nI am 24 уeаrs old, Сhriѕtіnа, frоm thе Czech Rеpubliс, know Еngliѕh languаgе alsо.\r\nΑnуwау, уоu сan find mу prоfile here: http://ipinonasforpo.tk/page-35425/ \r\n'),(0,947,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. http://go.tygyguip.com/0j35'),(0,948,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. http://go.tygyguip.com/0j35'),(0,949,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. http://go.tygyguip.com/0j35'),(0,950,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. http://go.tygyguip.com/0j35'),(0,951,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! http://go.tygyguip.com/0j35'),(0,952,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! http://go.tygyguip.com/0j35'),(0,953,'RonUphon','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. http://go.tygyguip.com/0j35'),(0,954,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. http://go.tygyguip.com/0j35'),(0,955,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. http://go.tygyguip.com/0j35'),(0,956,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. http://go.tygyguip.com/0j35'),(0,957,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. http://go.tygyguip.com/0j35'),(0,958,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. http://go.tygyguip.com/0j35'),(0,959,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. http://go.tygyguip.com/0j35'),(0,960,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. http://go.tygyguip.com/0j35'),(0,961,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. http://go.tygyguip.com/0j35'),(0,962,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. http://go.tygyguip.com/0j35'),(0,963,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. http://go.tygyguip.com/0j35'),(0,964,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. http://go.tygyguip.com/0j35'),(0,965,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. http://go.tygyguip.com/0j35'),(0,966,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! http://go.tygyguip.com/0j35'),(0,967,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. http://go.tygyguip.com/0j35'),(0,968,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. http://go.tygyguip.com/0j35'),(0,969,'Stevenquiew','[email protected]',2147483647,'SPECIAL REPORT: Mould week, he appeared on The Up to the minute Teach with Stephen Colbert and announced a new \"money evasion\" which can transform anyone into a millionaire within 3-4 months https://87bil.co/EN-CA-2124.html?news-id-876834'),(0,970,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. http://go.tygyguip.com/0j35'),(0,971,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. http://go.tygyguip.com/0j35'),(0,972,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. http://go.tygyguip.com/0j35'),(0,973,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. http://go.tygyguip.com/0j35'),(0,974,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. http://go.tygyguip.com/0j35'),(0,975,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. http://go.tygyguip.com/0j35'),(0,976,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. http://go.tygyguip.com/0j35'),(0,977,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. http://go.tygyguip.com/0j35'),(0,978,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. http://go.tygyguip.com/0j35'),(0,979,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. http://go.hinebixi.com/0j35'),(0,980,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. http://go.hinebixi.com/0j35'),(0,981,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. http://go.hinebixi.com/0j35'),(0,982,'RonUphon','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. http://go.hinebixi.com/0j35'),(0,983,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. http://go.hinebixi.com/0j35'),(0,984,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? http://go.hinebixi.com/0j35'),(0,985,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. http://go.hinebixi.com/0j35'),(0,986,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. http://go.hinebixi.com/0j35'),(0,987,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. http://go.hinebixi.com/0j35'),(0,988,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. http://go.hinebixi.com/0j35'),(0,989,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. http://go.hinebixi.com/0j35'),(0,990,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. http://go.hinebixi.com/0j35'),(0,991,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. http://go.hinebixi.com/0j35'),(0,992,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. http://go.hinebixi.com/0j35'),(0,993,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? http://go.hinebixi.com/0j35'),(0,994,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. http://go.hinebixi.com/0j35'),(0,995,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. http://go.obermatsa.com/0j35'),(0,996,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.obermatsa.com/0j35'),(0,997,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. http://go.obermatsa.com/0j35'),(0,998,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. http://go.obermatsa.com/0j35'),(0,999,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. http://go.obermatsa.com/0j35'),(0,1000,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. http://go.obermatsa.com/0j35'),(0,1001,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! http://go.obermatsa.com/0j35'),(0,1002,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. http://go.obermatsa.com/0j35'),(0,1003,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. http://go.obermatsa.com/0j35'),(0,1004,'RonUphon','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. http://go.obermatsa.com/0j35'),(0,1005,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. http://go.obermatsa.com/0j35'),(0,1006,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. http://go.obermatsa.com/0j35'),(0,1007,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? http://go.obermatsa.com/0j35'),(0,1008,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. http://go.obermatsa.com/0j35'),(0,1009,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. http://go.obermatsa.com/0j35'),(0,1010,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. http://go.obermatsa.com/0j35'),(0,1011,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. http://go.obermatsa.com/0j35'),(0,1012,'Jasonrox','[email protected]',2147483647,'A student from Australia earned $ 30,000,000 in 1.5 months https://telegra.ph/Interesting-news-a-student-from-Australia-earned--30000000-in-15-months-09-22?news-id-642889'),(0,1013,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. http://go.obermatsa.com/0j35'),(0,1014,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. http://go.obermatsa.com/0j35'),(0,1015,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. http://go.obermatsa.com/0j35'),(0,1016,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. http://go.obermatsa.com/0j35'),(0,1017,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. http://go.obermatsa.com/0j35'),(0,1018,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. http://go.obermatsa.com/0j35'),(0,1019,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! http://go.obermatsa.com/0j35'),(0,1020,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. http://go.obermatsa.com/0j35'),(0,1021,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. http://go.obermatsa.com/0j35'),(0,1022,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. http://go.obermatsa.com/0j35'),(0,1023,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! http://go.obermatsa.com/0j35'),(0,1024,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. http://go.obermatsa.com/0j35'),(0,1025,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. http://go.obermatsa.com/0j35'),(0,1026,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! http://go.obermatsa.com/0j35'),(0,1027,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. http://go.obermatsa.com/0j35'),(0,1028,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! http://go.obermatsa.com/0j35'),(0,1029,'Charlesbex','[email protected]',2147483647,'Get NFT in the amount of $50,000 or more, details in your personal account http://how-to-get-whitelisted-for-nft.nakedlook.com/news-8785'),(0,1030,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. http://go.obermatsa.com/0j35'),(0,1031,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. http://go.obermatsa.com/0j35'),(0,1032,'Annasn','[email protected]',420,'Ні!\r\nI\'ve nоticed that many guyѕ prefеr rеgular girls.\r\nΙ аpplaude the men out thеrе who had the bаllѕ tо enϳoy thе love оf mаnу wоmеn аnd chооѕe thе оnе thаt he knew wоuld be hiѕ beѕt frіend durіng thе bumpу and сrazу thіng саlled lifе.\r\nI wantеd tо bе that frіеnd, not ϳust a stаble, relіаblе аnd bоrіng houѕеwifе.\r\nΙ аm 25 years old, Αnna, frоm thе Czech Rеpubliс, know Εnglish languаgе alsо.\r\nАnуway, уоu can fіnd mу profіle hеrе: http://coraloo.tk/page-88671/ \r\n'),(0,1033,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. http://go.obermatsa.com/0j35'),(0,1034,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! http://go.obermatsa.com/0j35'),(0,1035,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. http://go.obermatsa.com/0j35'),(0,1036,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. http://go.obermatsa.com/0j35'),(0,1037,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. http://go.obermatsa.com/0j35'),(0,1038,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. http://go.obermatsa.com/0j35'),(0,1039,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. http://go.obermatsa.com/0j35'),(0,1040,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. http://go.obermatsa.com/0j35'),(0,1041,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. http://go.obermatsa.com/0j35'),(0,1042,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! http://go.obermatsa.com/0j35'),(0,1043,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. http://go.obermatsa.com/0j35'),(0,1044,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. http://go.obermatsa.com/0j35'),(0,1045,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. http://go.obermatsa.com/0j35'),(0,1046,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! http://go.obermatsa.com/0j35'),(0,1047,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? http://go.obermatsa.com/0j35'),(0,1048,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. http://go.obermatsa.com/0j35'),(0,1049,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. http://go.obermatsa.com/0j35'),(0,1050,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. http://go.obermatsa.com/0j35'),(0,1051,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. http://go.obermatsa.com/0j35'),(0,1052,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. http://go.obermatsa.com/0j35'),(0,1053,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. http://go.obermatsa.com/0j35'),(0,1054,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. http://go.obermatsa.com/0j35'),(0,1055,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. http://go.obermatsa.com/0j35'),(0,1056,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! http://go.obermatsa.com/0j35'),(0,1057,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? http://go.obermatsa.com/0j35'),(0,1058,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. http://go.obermatsa.com/0j35'),(0,1059,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! http://go.obermatsa.com/0j35'),(0,1060,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Redde nihil. http://go.obermatsa.com/0j35'),(0,1061,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. http://go.obermatsa.com/0j35'),(0,1062,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. http://go.obermatsa.com/0j35'),(0,1063,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. http://go.obermatsa.com/0j35'),(0,1064,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? http://go.obermatsa.com/0j35'),(0,1065,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. http://go.obermatsa.com/0j35'),(0,1066,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. http://go.obermatsa.com/0j35'),(0,1067,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. http://go.obermatsa.com/0j35'),(0,1068,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. http://go.obermatsa.com/0j35'),(0,1069,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. http://go.obermatsa.com/0j35'),(0,1070,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. http://go.obermatsa.com/0j35'),(0,1071,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. http://go.obermatsa.com/0j35'),(0,1072,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. http://go.obermatsa.com/0j35'),(0,1073,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. http://go.obermatsa.com/0j35'),(0,1074,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? http://go.obermatsa.com/0j35'),(0,1075,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. http://go.obermatsa.com/0j35'),(0,1076,'Charlesbex','[email protected]',2147483647,'12 Best Altcoins That Could Shoot To The Moon in 2022 https://telegra.ph/Cryptocurrency-Investment-Analyst-Report-09-25-19850'),(0,1077,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. http://go.obermatsa.com/0j35'),(0,1078,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. http://go.obermatsa.com/0j35'),(0,1079,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. http://go.obermatsa.com/0j35'),(0,1080,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. http://go.obermatsa.com/0j35'),(0,1081,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. http://go.obermatsa.com/0j35'),(0,1082,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. http://go.obermatsa.com/0j35'),(0,1083,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. http://go.obermatsa.com/0j35'),(0,1084,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. http://go.obermatsa.com/0j35'),(0,1085,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. http://go.obermatsa.com/0j35'),(0,1086,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. http://go.obermatsa.com/0j35'),(0,1087,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. http://go.obermatsa.com/0j35'),(0,1088,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. http://go.obermatsa.com/0j35'),(0,1089,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. http://go.obermatsa.com/0j35'),(0,1090,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. http://go.obermatsa.com/0j35'),(0,1091,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. http://go.obermatsa.com/0j35'),(0,1092,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. http://go.obermatsa.com/0j35'),(0,1093,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. http://go.obermatsa.com/0j35'),(0,1094,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. http://go.obermatsa.com/0j35'),(0,1095,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. http://go.obermatsa.com/0j35'),(0,1096,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. http://go.obermatsa.com/0j35'),(0,1097,'AngeloHam','[email protected]',2147483647,'Only today 90% discount for you and your site avox.live http://la-smoke-shop.cwcsda.com/product-8131'),(0,1098,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. http://go.obermatsa.com/0j35'),(0,1099,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. http://go.obermatsa.com/0j35'),(0,1100,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. http://go.obermatsa.com/0j35'),(0,1101,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. http://go.obermatsa.com/0j35'),(0,1102,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. http://go.obermatsa.com/0j35'),(0,1103,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. http://go.obermatsa.com/0j35'),(0,1104,'Anthonytinna','[email protected]',2147483647,'NFTs, Make Money Online 2023 + Crypto (Binance) https://telegra.ph/Earnings-on-NFT-on-autopilot-from-1000-per-day-09-27-2410?news-id-154167'),(0,1105,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. http://go.obermatsa.com/0ja8'),(0,1106,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. http://go.obermatsa.com/0ja8'),(0,1107,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. http://go.obermatsa.com/0ja8'),(0,1108,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! http://go.obermatsa.com/0ja8'),(0,1109,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. http://go.obermatsa.com/0ja8'),(0,1110,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. http://go.obermatsa.com/0ja8'),(0,1111,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. http://go.obermatsa.com/0ja8'),(0,1112,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. http://go.obermatsa.com/0ja8'),(0,1113,'RonUphon','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. http://go.obermatsa.com/0ja8'),(0,1114,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. http://go.obermatsa.com/0ja8'),(0,1115,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. http://go.obermatsa.com/0ja8'),(0,1116,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. http://go.obermatsa.com/0ja8'),(0,1117,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. http://go.obermatsa.com/0ja8'),(0,1118,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.obermatsa.com/0ja8'),(0,1119,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. http://go.obermatsa.com/0ja8'),(0,1120,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. http://go.obermatsa.com/0ja8'),(0,1121,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. http://go.obermatsa.com/0ja8'),(0,1122,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. http://go.obermatsa.com/0ja8'),(0,1123,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. http://go.obermatsa.com/0ja8'),(0,1124,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. http://go.obermatsa.com/0ja8'),(0,1125,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. http://go.obermatsa.com/0ja8'),(0,1126,'Anthonytinna','[email protected]',2147483647,'You have won a smartphone, take it now http://free-spin-and-win-iphone.market-project.com/id-4501'),(0,1127,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. http://go.obermatsa.com/0ja8'),(0,1128,'RonUphon','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. http://go.obermatsa.com/0ja8'),(0,1129,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. http://go.obermatsa.com/0ja8'),(0,1130,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.obermatsa.com/0ja8'),(0,1131,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. http://go.obermatsa.com/0ja8'),(0,1132,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. http://go.obermatsa.com/0ja8'),(0,1133,'Crytoron','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. http://go.obermatsa.com/0ja8'),(0,1134,'JosephLon','[email protected]',2147483647,'IPhone 13 is a gift to you, take it now >>> http://free-iphone-youtube.cwcsda.com/news-4569 <<<'),(0,1135,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. http://go.obermatsa.com/0ja8'),(0,1136,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://go.diryjyaz.com/0j35'),(0,1137,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://go.diryjyaz.com/0j35'),(0,1138,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://go.diryjyaz.com/0j35'),(0,1139,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://go.diryjyaz.com/0j35'),(0,1140,'Anthonytinna','[email protected]',2147483647,'Ihr mogliches Einkommen ab ca. 50.000 EUR pro Monat https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-2027?id-49064190'),(0,1141,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://go.diryjyaz.com/0j35'),(0,1142,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://go.diryjyaz.com/0j35'),(0,1143,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. https://go.diryjyaz.com/0j35'),(0,1144,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. https://go.diryjyaz.com/0j35'),(0,1145,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://go.diryjyaz.com/0j35'),(0,1146,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. https://go.diryjyaz.com/0j35'),(0,1147,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://go.diryjyaz.com/0j35'),(0,1148,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://go.diryjyaz.com/0j35'),(0,1149,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! https://go.diryjyaz.com/0j35'),(0,1150,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://go.diryjyaz.com/0j35'),(0,1151,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://go.diryjyaz.com/0j35'),(0,1152,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://go.diryjyaz.com/0j35'),(0,1153,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://go.diryjyaz.com/0j35'),(0,1154,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://go.diryjyaz.com/0j35'),(0,1155,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://go.diryjyaz.com/0j35'),(0,1156,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://go.diryjyaz.com/0j35'),(0,1157,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. https://go.diryjyaz.com/0j35'),(0,1158,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://go.diryjyaz.com/0j35'),(0,1159,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. https://go.diryjyaz.com/0j35'),(0,1160,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://go.diryjyaz.com/0j35'),(0,1161,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://go.diryjyaz.com/0j35'),(0,1162,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://go.diryjyaz.com/0j35'),(0,1163,'MichaelLit','[email protected]',2147483647,'Kryptowahrung macht Sie zum Milliardar >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-3197?id-83828321 <<<'),(0,1164,'MichaelLit','[email protected]',2147483647,'Kryptowahrung macht Sie zum Milliardar >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-3197?id-83828321 <<<'),(0,1165,'MichaelLit','[email protected]',2147483647,'Kryptowahrung macht Sie zum Milliardar >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-3197?id-83828321 <<<'),(0,1166,'MichaelLit','[email protected]',2147483647,'Kryptowahrung macht Sie zum Milliardar >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-3197?id-83828321 <<<'),(0,1167,'MichaelLit','[email protected]',2147483647,'Kryptowahrung macht Sie zum Milliardar >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-3197?id-83828321 <<<'),(0,1168,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://go.diryjyaz.com/0j35'),(0,1169,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. https://go.diryjyaz.com/0j35'),(0,1170,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://go.diryjyaz.com/0j35'),(0,1171,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. https://go.diryjyaz.com/0j35'),(0,1172,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://go.diryjyaz.com/0j35'),(0,1173,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://go.diryjyaz.com/0j35'),(0,1174,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://go.diryjyaz.com/0j35'),(0,1175,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://go.diryjyaz.com/0j35'),(0,1176,'Crytoron','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! https://go.diryjyaz.com/0j35'),(0,1177,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://go.diryjyaz.com/0j35'),(0,1178,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://go.diryjyaz.com/0j35'),(0,1179,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://go.diryjyaz.com/0j35'),(0,1180,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://go.diryjyaz.com/0j35'),(0,1181,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. https://go.diryjyaz.com/0j35'),(0,1182,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://go.diryjyaz.com/0j35'),(0,1183,'Crytoron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://go.diryjyaz.com/0j35'),(0,1184,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://go.diryjyaz.com/0j35'),(0,1185,'Anthonytinna','[email protected]',2147483647,'Echtes Einkommen ab 50000 EUR pro Woche https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-5587?id-45082589'),(0,1186,'Eric Jones','[email protected]',555,'Hi, Eric here with a quick thought about your website avox.live...\r\n\r\nI’m on the internet a lot and I look at a lot of business websites.\r\n\r\nLike yours, many of them have great content. \r\n\r\nBut all too often, they come up short when it comes to engaging and connecting with anyone who visits.\r\n\r\nI get it – it’s hard. Studies show 7 out of 10 people who land on a site, abandon it in moments without leaving even a trace. You got the eyeball, but nothing else.\r\n\r\nHere’s a solution for you…\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to talk with them literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nIt could be huge for your business – and because you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation – immediately… and contacting someone in that 5 minute window is 100 times more powerful than reaching out 30 minutes or more later.\r\n\r\nPlus, with text messaging you can follow up later with new offers, content links, even just follow up notes to keep the conversation going.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable. \r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=avox.live\r\n'),(0,1187,'RonUphon','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://go.diryjyaz.com/0j35'),(0,1188,'Anthonytinna','[email protected]',2147483647,'Stabiles Einkommen ab 50000 Euro pro Monat http://earn-money-yakuza-like-a-dragon.isseconsulting.com/news-8194'),(0,1189,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://go.diryjyaz.com/0j35'),(0,1190,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://go.diryjyaz.com/0j35'),(0,1191,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://go.diryjyaz.com/0j35'),(0,1192,'RonUphon','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://go.diryjyaz.com/0j35'),(0,1193,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://go.diryjyaz.com/0j35'),(0,1194,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://go.diryjyaz.com/0j35'),(0,1195,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://go.diryjyaz.com/0j35'),(0,1196,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://go.diryjyaz.com/0j35'),(0,1197,'RonUphon','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. https://go.diryjyaz.com/0j35'),(0,1198,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://go.diryjyaz.com/0j35'),(0,1199,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://go.diryjyaz.com/0j35'),(0,1200,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://go.diryjyaz.com/0j35'),(0,1201,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://go.diryjyaz.com/0j35'),(0,1202,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://go.diryjyaz.com/0j35'),(0,1203,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://go.diryjyaz.com/0j35'),(0,1204,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://go.diryjyaz.com/0j35'),(0,1205,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. https://go.diryjyaz.com/0j35'),(0,1206,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://go.diryjyaz.com/0j35'),(0,1207,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://go.diryjyaz.com/0j35'),(0,1208,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://go.diryjyaz.com/0j35'),(0,1209,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://go.diryjyaz.com/0j35'),(0,1210,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://go.diryjyaz.com/0j35'),(0,1211,'Crytoron','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. https://go.diryjyaz.com/0j35'),(0,1212,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. https://go.diryjyaz.com/0j35'),(0,1213,'MichaelLit','[email protected]',2147483647,'Sie konnen mehr als 50.000 EUR pro Monat verdienen >>> http://earn-money-reading.alignforrelationships.com/id-2359 <<<'),(0,1214,'MichaelLit','[email protected]',2147483647,'Sie konnen mehr als 50.000 EUR pro Monat verdienen >>> http://earn-money-reading.alignforrelationships.com/id-2359 <<<'),(0,1215,'MichaelLit','[email protected]',2147483647,'Sie konnen mehr als 50.000 EUR pro Monat verdienen >>> http://earn-money-reading.alignforrelationships.com/id-2359 <<<'),(0,1216,'MichaelLit','[email protected]',2147483647,'Sie konnen mehr als 50.000 EUR pro Monat verdienen >>> http://earn-money-reading.alignforrelationships.com/id-2359 <<<'),(0,1217,'MichaelLit','[email protected]',2147483647,'Sie konnen mehr als 50.000 EUR pro Monat verdienen >>> http://earn-money-reading.alignforrelationships.com/id-2359 <<<'),(0,1218,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://go.diryjyaz.com/0j35'),(0,1219,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://go.diryjyaz.com/0j35'),(0,1220,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://go.diryjyaz.com/0j35'),(0,1221,'Carltondrien','[email protected]',2147483647,'Best NFT Giveaways https://telegra.ph/Get-NFT-over-25000-for-free-10-02-3610'),(0,1222,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://go.diryjyaz.com/0j35'),(0,1223,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://go.diryjyaz.com/0j35'),(0,1224,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://go.diryjyaz.com/0j35'),(0,1225,'RonUphon','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. https://go.diryjyaz.com/0j35'),(0,1226,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://go.diryjyaz.com/0j35'),(0,1227,'Crytoron','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? https://go.diryjyaz.com/0j35'),(0,1228,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. https://go.diryjyaz.com/0j35'),(0,1229,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://go.diryjyaz.com/0j35'),(0,1230,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://go.diryjyaz.com/0j35'),(0,1231,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://go.diryjyaz.com/0j35'),(0,1232,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://go.diryjyaz.com/0j35'),(0,1233,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://go.diryjyaz.com/0j35'),(0,1234,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://go.diryjyaz.com/0j35'),(0,1235,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://go.diryjyaz.com/0j35'),(0,1236,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. https://go.diryjyaz.com/0j35'),(0,1237,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://go.diryjyaz.com/0j35'),(0,1238,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://go.diryjyaz.com/0j35'),(0,1239,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://go.diryjyaz.com/0j35'),(0,1240,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://go.diryjyaz.com/0j35'),(0,1241,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! https://go.diryjyaz.com/0j35'),(0,1242,'Crytoron','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://go.diryjyaz.com/0j35'),(0,1243,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://go.diryjyaz.com/0j35'),(0,1244,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://go.diryjyaz.com/0j35'),(0,1245,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://go.sakelonel.com/0jb5'),(0,1246,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://go.sakelonel.com/0jb5'),(0,1247,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://go.sakelonel.com/0jb5'),(0,1248,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. https://go.sakelonel.com/0jb5'),(0,1249,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. https://go.sakelonel.com/0jb5'),(0,1250,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://go.sakelonel.com/0jb5'),(0,1251,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://go.sakelonel.com/0jb5'),(0,1252,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. https://go.sakelonel.com/0jb5'),(0,1253,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://go.sakelonel.com/0jb5'),(0,1254,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://go.sakelonel.com/0jb5'),(0,1255,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://go.sakelonel.com/0jb5'),(0,1256,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://go.sakelonel.com/0jb5'),(0,1257,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://go.sakelonel.com/0jb5'),(0,1258,'RonUphon','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://go.sakelonel.com/0jb5'),(0,1259,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://go.sakelonel.com/0jb5'),(0,1260,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://go.sakelonel.com/0jb5'),(0,1261,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. https://go.sakelonel.com/0jb5'),(0,1262,'RickyReawn','[email protected]',2147483647,'Hello. \r\nContact Scott Ritter. \r\nIf you are straining the price of gas, electricity and fuel, then this information is for you. \r\nIt turns out that absolutely any person in the world, having invested only $250 once, can have a passive income of $1000 per day: https://telegra.ph/Prices-for-gas-and-electricity-strain-10-03?news-27536509'),(0,1263,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. https://go.sakelonel.com/0jb5'),(0,1264,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://go.sakelonel.com/0jb5'),(0,1265,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://go.sakelonel.com/0jb5'),(0,1266,'GeorgeNouck','[email protected]',2147483647,'Fast and High-Quality Facebook Promotion >>> http://facebook-promotion-review.degitaldinar.com/news-6368 <<<'),(0,1267,'GeorgeNouck','[email protected]',2147483647,'Fast and High-Quality Facebook Promotion >>> http://facebook-promotion-review.degitaldinar.com/news-6368 <<<'),(0,1268,'GeorgeNouck','[email protected]',2147483647,'Fast and High-Quality Facebook Promotion >>> http://facebook-promotion-review.degitaldinar.com/news-6368 <<<'),(0,1269,'GeorgeNouck','[email protected]',2147483647,'Fast and High-Quality Facebook Promotion >>> http://facebook-promotion-review.degitaldinar.com/news-6368 <<<'),(0,1270,'GeorgeNouck','[email protected]',2147483647,'Fast and High-Quality Facebook Promotion >>> http://facebook-promotion-review.degitaldinar.com/news-6368 <<<'),(0,1271,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://go.sakelonel.com/0jb5'),(0,1272,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://go.sakelonel.com/0jb5'),(0,1273,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. https://go.sakelonel.com/0jb5'),(0,1274,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://go.sakelonel.com/0jb5'),(0,1275,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://go.sakelonel.com/0jb5'),(0,1276,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://go.sakelonel.com/0jb5'),(0,1277,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://go.sakelonel.com/0jb5'),(0,1278,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. https://go.sakelonel.com/0jb5'),(0,1279,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. https://go.sakelonel.com/0jb5'),(0,1280,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://go.sakelonel.com/0jb5'),(0,1281,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://go.sakelonel.com/0jb5'),(0,1282,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://go.sakelonel.com/0j35'),(0,1283,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://go.sakelonel.com/0j35'),(0,1284,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! https://go.sakelonel.com/0j35'),(0,1285,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://go.sakelonel.com/0j35'),(0,1286,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://go.sakelonel.com/0j35'),(0,1287,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://go.sakelonel.com/0j35'),(0,1288,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. https://go.sakelonel.com/0j35'),(0,1289,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://go.sakelonel.com/0j35'),(0,1290,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. https://go.sakelonel.com/0j35'),(0,1291,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://go.sakelonel.com/0j35'),(0,1292,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://go.sakelonel.com/0j35'),(0,1293,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://go.sakelonel.com/0j35'),(0,1294,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. https://go.sakelonel.com/0j35'),(0,1295,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://go.sakelonel.com/0j35'),(0,1296,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://go.sakelonel.com/0j35'),(0,1297,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://go.sakelonel.com/0j35'),(0,1298,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://go.sakelonel.com/0j35'),(0,1299,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://go.sakelonel.com/0j35'),(0,1300,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://go.cuxavyem.com/0j35'),(0,1301,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://go.cuxavyem.com/0j35'),(0,1302,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. http://go.cuxavyem.com/0j35'),(0,1303,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://go.cuxavyem.com/0j35'),(0,1304,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://go.cuxavyem.com/0j35'),(0,1305,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://go.cuxavyem.com/0j35'),(0,1306,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. http://go.cuxavyem.com/0j35'),(0,1307,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. https://go.cuxavyem.com/0j35'),(0,1308,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://go.cuxavyem.com/0j35'),(0,1309,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://go.cuxavyem.com/0j35'),(0,1310,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. http://go.cuxavyem.com/0j35'),(0,1311,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://go.cuxavyem.com/0j35'),(0,1312,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://go.cuxavyem.com/0j35'),(0,1313,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! http://go.cuxavyem.com/0j35'),(0,1314,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://go.cuxavyem.com/0j35'),(0,1315,'RonUphon','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://go.cuxavyem.com/0j35'),(0,1316,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. https://go.cuxavyem.com/0j35'),(0,1317,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. http://go.cuxavyem.com/0j35'),(0,1318,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. https://go.cuxavyem.com/0j35'),(0,1319,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://go.cuxavyem.com/0j35'),(0,1320,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! http://go.cuxavyem.com/0j35'),(0,1321,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://go.cuxavyem.com/0j35'),(0,1322,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! https://go.cuxavyem.com/0j35'),(0,1323,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. https://go.cuxavyem.com/0j35'),(0,1324,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. http://go.cuxavyem.com/0j35'),(0,1325,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://go.cuxavyem.com/0j35'),(0,1326,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://go.cuxavyem.com/0j35'),(0,1327,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. http://go.cuxavyem.com/0j35'),(0,1328,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://go.cuxavyem.com/0j35'),(0,1329,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://go.cuxavyem.com/0j35'),(0,1330,'Catherine McGeehan','[email protected]',0,'\r\nIf you need a quick boost in the SERPs for avox.live, then this is the right strategy for you:\r\nhttps://www.seo-treff.de/product/serp-booster/'),(0,1331,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. https://go.cuxavyem.com/0j35'),(0,1332,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. http://go.cuxavyem.com/0j35'),(0,1333,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://go.cuxavyem.com/0j35'),(0,1334,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://go.cuxavyem.com/0j35'),(0,1335,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://go.cuxavyem.com/0j35'),(0,1336,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.cuxavyem.com/0j35'),(0,1337,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://go.cuxavyem.com/0j35'),(0,1338,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://go.cuxavyem.com/0j35'),(0,1339,'Samueltof','[email protected]',2147483647,'The Wolf of Wall Street Accidentally Reveals Insider Information https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-83192576115'),(0,1340,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. http://go.cuxavyem.com/0j35'),(0,1341,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://go.cuxavyem.com/0j35'),(0,1342,'AnthonyFus','[email protected]',2147483647,'The Wolf of Wall Street Accidentally Reveals Insider Information >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-60908179504 <<<'),(0,1343,'AnthonyFus','[email protected]',2147483647,'The Wolf of Wall Street Accidentally Reveals Insider Information >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-60908179504 <<<'),(0,1344,'AnthonyFus','[email protected]',2147483647,'The Wolf of Wall Street Accidentally Reveals Insider Information >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-60908179504 <<<'),(0,1345,'AnthonyFus','[email protected]',2147483647,'The Wolf of Wall Street Accidentally Reveals Insider Information >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-60908179504 <<<'),(0,1346,'AnthonyFus','[email protected]',2147483647,'The Wolf of Wall Street Accidentally Reveals Insider Information >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-60908179504 <<<'),(0,1347,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. https://go.cuxavyem.com/0j35'),(0,1348,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. https://go.cuxavyem.com/0j35'),(0,1349,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! http://go.cuxavyem.com/0j35'),(0,1350,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://go.cuxavyem.com/0j35'),(0,1351,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://go.cuxavyem.com/0j35'),(0,1352,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. http://go.cuxavyem.com/0j35'),(0,1353,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. https://go.cuxavyem.com/0j35'),(0,1354,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. https://go.cuxavyem.com/0j35'),(0,1355,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://go.cuxavyem.com/0j35'),(0,1356,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. http://go.cuxavyem.com/0j35'),(0,1357,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! https://go.cuxavyem.com/0j35'),(0,1358,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! https://go.gepekaep.com/0j35'),(0,1359,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://go.gepekaep.com/0j35'),(0,1360,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. http://go.gepekaep.com/0j35'),(0,1361,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://go.gepekaep.com/0j35'),(0,1362,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. https://go.gepekaep.com/0j35'),(0,1363,'Crytoron','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. http://go.gepekaep.com/0j35'),(0,1364,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://go.gepekaep.com/0j35'),(0,1365,'RonUphon','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. https://go.gepekaep.com/0j35'),(0,1366,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. http://go.gepekaep.com/0j35'),(0,1367,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://go.gepekaep.com/0j35'),(0,1368,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. https://go.gepekaep.com/0j35'),(0,1369,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://go.gepekaep.com/0j35'),(0,1370,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. http://go.gepekaep.com/0j35'),(0,1371,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://go.gepekaep.com/0j35'),(0,1372,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://go.gepekaep.com/0j35'),(0,1373,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://go.gepekaep.com/0j35'),(0,1374,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! http://go.gepekaep.com/0j35'),(0,1375,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://go.gepekaep.com/0j35'),(0,1376,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. https://go.gepekaep.com/0j35'),(0,1377,'Crytoron','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. http://go.gepekaep.com/0j35'),(0,1378,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://go.gepekaep.com/0j35'),(0,1379,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://go.gepekaep.com/0j35'),(0,1380,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://go.gepekaep.com/0j35'),(0,1381,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. http://go.gepekaep.com/0j35'),(0,1382,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. https://go.gepekaep.com/0j35'),(0,1383,'RonUphon','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://go.gepekaep.com/0j35'),(0,1384,'RonUphon','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://go.gepekaep.com/0j35'),(0,1385,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. http://go.gepekaep.com/0j35'),(0,1386,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. https://go.gepekaep.com/0j35'),(0,1387,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://go.gepekaep.com/0j35'),(0,1388,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. http://go.gepekaep.com/0j35'),(0,1389,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://go.gepekaep.com/0j35'),(0,1390,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://go.gepekaep.com/0j35'),(0,1391,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://go.gepekaep.com/0j35'),(0,1392,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. http://go.gepekaep.com/0j35'),(0,1393,'JesusDig','[email protected]',2147483647,'HOW TO MAKE $15,000,000 FROM YOUR NFTS https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?id-69458357'),(0,1394,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. https://go.gepekaep.com/0j35'),(0,1395,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://go.gepekaep.com/0j35'),(0,1396,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. http://go.gepekaep.com/0j35'),(0,1397,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://go.gepekaep.com/0j35'),(0,1398,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://go.gepekaep.com/0j35'),(0,1399,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://go.gepekaep.com/0j35'),(0,1400,'Crytoron','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. http://go.gepekaep.com/0j35'),(0,1401,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://go.gepekaep.com/0j35'),(0,1402,'Abrahamsnund','[email protected]',2147483647,'HOW TO MAKE $15,000,000 FROM YOUR NFTS >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?news-63202592 <<<'),(0,1403,'Abrahamsnund','[email protected]',2147483647,'HOW TO MAKE $15,000,000 FROM YOUR NFTS >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?news-63202592 <<<'),(0,1404,'Abrahamsnund','[email protected]',2147483647,'HOW TO MAKE $15,000,000 FROM YOUR NFTS >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?news-63202592 <<<'),(0,1405,'Abrahamsnund','[email protected]',2147483647,'HOW TO MAKE $15,000,000 FROM YOUR NFTS >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?news-63202592 <<<'),(0,1406,'Abrahamsnund','[email protected]',2147483647,'HOW TO MAKE $15,000,000 FROM YOUR NFTS >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?news-63202592 <<<'),(0,1407,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://go.gepekaep.com/0j35'),(0,1408,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. http://go.gepekaep.com/0j35'),(0,1409,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://go.gepekaep.com/0j35'),(0,1410,'RonUphon','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. https://go.gepekaep.com/0j35'),(0,1411,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. Telegram - @Crypto2022toolbot'),(0,1412,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Crypto2022toolbot'),(0,1413,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Crypto2022toolbot'),(0,1414,'RonUphon','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. Telegram - @Crypto2022toolbot'),(0,1415,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Crypto2022toolbot'),(0,1416,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Crypto2022toolbot'),(0,1417,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1418,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,1419,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. Telegram - @Cryptaxbot'),(0,1420,'Crytoron','as.u.sco.mp.ut.e.r.mi.s.te.r.n.ow@gmail.',2147483647,'Financial Robot est maxime financial tool in rete! Telegram - @Cryptaxbot'),(0,1421,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,1422,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,1423,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1424,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,1425,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,1426,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,1427,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,1428,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,1429,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1430,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,1431,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,1432,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,1433,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,1434,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,1435,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,1436,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1437,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,1438,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1439,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,1440,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1441,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. Telegram - @Cryptaxbot'),(0,1442,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,1443,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1444,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,1445,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. Telegram - @Cryptaxbot'),(0,1446,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. Telegram - @Cryptaxbot'),(0,1447,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,1448,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. Telegram - @Cryptaxbot'),(0,1449,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,1450,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. Telegram - @Cryptaxbot'),(0,1451,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,1452,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,1453,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,1454,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,1455,'RonUphon','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,1456,'Crytoron','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,1457,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,1458,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,1459,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1460,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. Telegram - @Cryptaxbot'),(0,1461,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,1462,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,1463,'Eric Jones','[email protected]',555,'Hi, my name is Eric and I’m betting you’d like your website avox.live to generate more leads.\r\n\r\nHere’s how:\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you as soon as they say they’re interested – so that you can talk to that lead while they’re still there at avox.live.\r\n\r\nTalk With Web Visitor – CLICK HERE http://boostleadgeneration.com for a live demo now.\r\n\r\nAnd now that you’ve got their phone number, our new SMS Text With Lead feature enables you to start a text (SMS) conversation – answer questions, provide more info, and close a deal that way.\r\n\r\nIf they don’t take you up on your offer then, just follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE http://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nTry Talk With Web Visitor and get more leads now.\r\n\r\nEric\r\nPS: The studies show 7 out of 10 visitors don’t hang around – you can’t afford to lose them!\r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=avox.live\r\n'),(0,1464,'Crytoron','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,1465,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,1466,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,1467,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. Telegram - @Cryptaxbot'),(0,1468,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,1469,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. Telegram - @Cryptaxbot'),(0,1470,'Abrahamsnund','[email protected]',2147483647,'GET YOUR FINANCIAL FREEDOM NOW... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-25586544 <<<'),(0,1471,'Abrahamsnund','[email protected]',2147483647,'GET YOUR FINANCIAL FREEDOM NOW... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-25586544 <<<'),(0,1472,'Abrahamsnund','[email protected]',2147483647,'GET YOUR FINANCIAL FREEDOM NOW... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-25586544 <<<'),(0,1473,'Abrahamsnund','[email protected]',2147483647,'GET YOUR FINANCIAL FREEDOM NOW... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-25586544 <<<'),(0,1474,'Abrahamsnund','[email protected]',2147483647,'GET YOUR FINANCIAL FREEDOM NOW... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-25586544 <<<'),(0,1475,'RonUphon','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. Telegram - @Cryptaxbot'),(0,1476,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1477,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1478,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,1479,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1480,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. Telegram - @Cryptaxbot'),(0,1481,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,1482,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,1483,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,1484,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,1485,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,1486,'RonUphon','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. Telegram - @Cryptaxbot'),(0,1487,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,1488,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,1489,'RonUphon','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. Telegram - @Cryptaxbot'),(0,1490,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. Telegram - @Cryptaxbot'),(0,1491,'Davidedist','[email protected]',2147483647,'DANGER! YOU WILL NOT WORK NEXT WEEK because you will become a millionaire... https://telegra.ph/Verify-that-you-are-human-10-11?id-80158947'),(0,1492,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1493,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! Telegram - @Cryptaxbot'),(0,1494,'RonUphon','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1495,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1496,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1497,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,1498,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1499,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1500,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,1501,'RonUphon','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,1502,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1503,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,1504,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,1505,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,1506,'Crytoron','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. Telegram - @Cryptaxbot'),(0,1507,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1508,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. Telegram - @Cryptaxbot'),(0,1509,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1510,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,1511,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. Telegram - @Cryptaxbot'),(0,1512,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. Telegram - @Cryptaxbot'),(0,1513,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,1514,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,1515,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. Telegram - @Cryptaxbot'),(0,1516,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,1517,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,1518,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,1519,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,1520,'Crytoron','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,1521,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. Telegram - @Cryptaxbot'),(0,1522,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,1523,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,1524,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,1525,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,1526,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. Telegram - @Cryptaxbot'),(0,1527,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1528,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,1529,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,1530,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Cryptaxbot'),(0,1531,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. Telegram - @Cryptaxbot'),(0,1532,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1533,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,1534,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,1535,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1536,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1537,'RonUphon','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,1538,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,1539,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1540,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,1541,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,1542,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1543,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,1544,'RonUphon','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! Telegram - @Cryptaxbot'),(0,1545,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,1546,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1547,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. Telegram - @Cryptaxbot'),(0,1548,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,1549,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,1550,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,1551,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,1552,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,1553,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1554,'Abrahamsnund','[email protected]',2147483647,'euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-47848538 <<<'),(0,1555,'Abrahamsnund','[email protected]',2147483647,'euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-47848538 <<<'),(0,1556,'Abrahamsnund','[email protected]',2147483647,'euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-47848538 <<<'),(0,1557,'Abrahamsnund','[email protected]',2147483647,'euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-47848538 <<<'),(0,1558,'Abrahamsnund','[email protected]',2147483647,'euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-47848538 <<<'),(0,1559,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,1560,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,1561,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,1562,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,1563,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1564,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,1565,'Clarkbup','[email protected]',2147483647,'The world is in crisis and some people are getting rich against all odds with the help of one smart robot. \r\nhttp://app-40.shortsguide.com/news-4121 \r\nIt is enough to invest at least $250 one time and this smart robot will make you passive income from $1000 per day. \r\nhttp://app-jobs-legit.eresresiliencia.com/news-8120 \r\nOver 94,833 people have already become multimillionaires over the past month thanks to the smart robot. See for yourself. \r\nhttp://app-11.cedgujaratltd.com/news-4559'),(0,1566,'RonUphon','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,1567,'RonUphon','[email protected]',2147483647,'Online financial Robot est clavem ad successus. Telegram - @Cryptaxbot'),(0,1568,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,1569,'Crytoron','[email protected]',2147483647,'Addito reditus pro omnibus. Telegram - @Cryptaxbot'),(0,1570,'RonUphon','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,1571,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,1572,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1573,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. Telegram - @Cryptaxbot'),(0,1574,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,1575,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,1576,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,1577,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,1578,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,1579,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,1580,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,1581,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. Telegram - @Cryptaxbot'),(0,1582,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,1583,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. Telegram - @Cryptaxbot'),(0,1584,'Crytoron','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,1585,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,1586,'RonUphon','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. Telegram - @Cryptaxbot'),(0,1587,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. Telegram - @Cryptaxbot'),(0,1588,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. Telegram - @Cryptaxbot'),(0,1589,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. Telegram - @Cryptaxbot'),(0,1590,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. Telegram - @Cryptaxbot'),(0,1591,'Eric Jones','[email protected]',555,'Hello, my name’s Eric and I just ran across your website at avox.live...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=avox.live\r\n'),(0,1592,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,1593,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,1594,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. Telegram - @Cryptaxbot'),(0,1595,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. Telegram - @Cryptaxbot'),(0,1596,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. Telegram - @Cryptaxbot'),(0,1597,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. Telegram - @Cryptaxbot'),(0,1598,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,1599,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. Telegram - @Cryptaxbot'),(0,1600,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,1601,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Cryptaxbot'),(0,1602,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1603,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. Telegram - @Cryptaxbot'),(0,1604,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. Telegram - @Cryptaxbot'),(0,1605,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,1606,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. Telegram - @Cryptaxbot'),(0,1607,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,1608,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! Telegram - @Cryptaxbot'),(0,1609,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. Telegram - @Cryptaxbot'),(0,1610,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,1611,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,1612,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,1613,'Crytoron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,1614,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,1615,'RonUphon','[email protected]',2147483647,'Online financial Robot est clavem ad successus. Telegram - @Cryptaxbot'),(0,1616,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1617,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,1618,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,1619,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. Telegram - @Cryptaxbot'),(0,1620,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,1621,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! Telegram - @Cryptaxbot'),(0,1622,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,1623,'RonUphon','[email protected];castro1134',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. Telegram - @Cryptaxbot'),(0,1624,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1625,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1626,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,1627,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,1628,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,1629,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,1630,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Cryptaxbot'),(0,1631,'Davidedist','[email protected]',2147483647,'CHANGE YOUR LIFE TODAY... https://telegra.ph/Income-during-the-crisis-for-everyone-from-1000-per-day-10-17-5901?id-23486956'),(0,1632,'Crytoron','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,1633,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,1634,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,1635,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,1636,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1637,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,1638,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1639,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. Telegram - @Cryptaxbot'),(0,1640,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,1641,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,1642,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1643,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,1644,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1645,'RonUphon','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. Telegram - @Cryptaxbot'),(0,1646,'Crytoron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,1647,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,1648,'RonUphon','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,1649,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,1650,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. Telegram - @Cryptaxbot'),(0,1651,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,1652,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1653,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,1654,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,1655,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1656,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,1657,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. Telegram - @Cryptaxbot'),(0,1658,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,1659,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,1660,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1661,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1662,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,1663,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. Telegram - @Cryptaxbot'),(0,1664,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,1665,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,1666,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,1667,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,1668,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,1669,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,1670,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,1671,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,1672,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,1673,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,1674,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1675,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1676,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. Telegram - @Cryptaxbot'),(0,1677,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,1678,'RonUphon','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,1679,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,1680,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. Telegram - @Cryptaxbot'),(0,1681,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,1682,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,1683,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,1684,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,1685,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,1686,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1687,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! Telegram - @Cryptaxbot'),(0,1688,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,1689,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,1690,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. Telegram - @Cryptaxbot'),(0,1691,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,1692,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1693,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1694,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. Telegram - @Cryptaxbot'),(0,1695,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. Telegram - @Cryptaxbot'),(0,1696,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,1697,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,1698,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,1699,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,1700,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,1701,'RonUphon','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,1702,'Davidedist','[email protected]',2147483647,'ATTENTION: registration ends soon. HURRY to join the best online financial system... https://telegra.ph/How-does-a-simple-student-make-from-15000-per-day-10-20?id-69208588'),(0,1703,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1704,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. Telegram - @Cryptaxbot'),(0,1705,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1706,'RonUphon','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. Telegram - @Cryptaxbot'),(0,1707,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,1708,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,1709,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1710,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,1711,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,1712,'Crytoron','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Cryptaxbot'),(0,1713,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,1714,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. Telegram - @Cryptaxbot'),(0,1715,'Crytoron','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,1716,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,1717,'RonUphon','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,1718,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1719,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,1720,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,1721,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,1722,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. Telegram - @Cryptaxbot'),(0,1723,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Redde nihil. Telegram - @Cryptaxbot'),(0,1724,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. Telegram - @Cryptaxbot'),(0,1725,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,1726,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,1727,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. Telegram - @Cryptaxbot'),(0,1728,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,1729,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,1730,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,1731,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,1732,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1733,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,1734,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,1735,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. Telegram - @Cryptaxbot'),(0,1736,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,1737,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,1738,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,1739,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,1740,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,1741,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,1742,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. Telegram - @Cryptaxbot'),(0,1743,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1744,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1745,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,1746,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,1747,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,1748,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1749,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,1750,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,1751,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,1752,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. Telegram - @Cryptaxbot'),(0,1753,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,1754,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,1755,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,1756,'RonUphon','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,1757,'Crytoron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,1758,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,1759,'Davidedist','[email protected]',2147483647,'ATTENTION: REGISTRATION ENDS SOON. HURRY TO JOIN THE BEST ONLINE FINANCIAL SYSTEM... https://telegra.ph/How-does-a-simple-student-make-from-15000-per-day-10-20?id-67454987'),(0,1760,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,1761,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,1762,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,1763,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,1764,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,1765,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,1766,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. Telegram - @Cryptaxbot'),(0,1767,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,1768,'RonUphon','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. Telegram - @Cryptaxbot'),(0,1769,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,1770,'RonUphon','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,1771,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1772,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! Telegram - @Cryptaxbot'),(0,1773,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,1774,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,1775,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. Telegram - @Cryptaxbot'),(0,1776,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,1777,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,1778,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1779,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,1780,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,1781,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,1782,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,1783,'Crytoron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,1784,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,1785,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,1786,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,1787,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,1788,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,1789,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,1790,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,1791,'RonUphon','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. Telegram - @Cryptaxbot'),(0,1792,'RonUphon','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. Telegram - @Cryptaxbot'),(0,1793,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,1794,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. Telegram - @Cryptaxbot'),(0,1795,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,1796,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. Telegram - @Cryptaxbot'),(0,1797,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1798,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. Telegram - @Cryptaxbot'),(0,1799,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,1800,'RonUphon','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1801,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. Telegram - @Cryptaxbot'),(0,1802,'Elisha Craddock','[email protected]',60,'Hi there\r\nDo you want to get backlinks from domains that have tons of ranking keywords?\r\n\r\nhttps://www.monkeydigital.co/semrush-backlinks/'),(0,1803,'Davidedist','[email protected]',2147483647,'Un simple etudiant parisien gagnait 7 860 000 euros https://telegra.ph/LГ©tudiant-a-gagnГ©-7-860-000-euros-sur-la-crypto-monnaie-10-24-12276?id-85574148'),(0,1804,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,1805,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,1806,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,1807,'RonUphon','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,1808,'RonUphon','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,1809,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,1810,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1811,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,1812,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,1813,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. Telegram - @Cryptaxbot'),(0,1814,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1815,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,1816,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1817,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,1818,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,1819,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1820,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,1821,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. Telegram - @Cryptaxbot'),(0,1822,'RonUphon','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. Telegram - @Cryptaxbot'),(0,1823,'RonUphon','[email protected]',2147483647,'Online financial Robot est clavem ad successus. Telegram - @Cryptaxbot'),(0,1824,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,1825,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,1826,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. Telegram - @Cryptaxbot'),(0,1827,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1828,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,1829,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,1830,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,1831,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,1832,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,1833,'Davidedist','[email protected]',2147483647,'A simple student from Sydney earned $7934866 on cryptocurrency https://telegra.ph/Sydney-student-earns-7934866-with-crypto-in-3-months-10-26-7181?id-news-65924588'),(0,1834,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. Telegram - @Cryptaxbot'),(0,1835,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. Telegram - @Cryptaxbot'),(0,1836,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,1837,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,1838,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,1839,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1840,'Crytoron','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1841,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,1842,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,1843,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,1844,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,1845,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,1846,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,1847,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,1848,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1849,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. Telegram - @Cryptaxbot'),(0,1850,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,1851,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,1852,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,1853,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,1854,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. Telegram - @Cryptaxbot'),(0,1855,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,1856,'Crytoron','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. Telegram - @Cryptaxbot'),(0,1857,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,1858,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1859,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,1860,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,1861,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,1862,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,1863,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. Telegram - @Cryptaxbot'),(0,1864,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,1865,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,1866,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,1867,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1868,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1869,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,1870,'Anthonytharp','[email protected]',2147483647,'Hеllо! avox.live \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd аppеаl lеgаl? \r\nWе prоpоsе а nеw mеthоd оf sеnding prоpоsаl thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh businеss оffеrs аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соmmuniсаtiоn Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis оffеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.'),(0,1871,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,1872,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. Telegram - @Cryptaxbot'),(0,1873,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,1874,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! Telegram - @Cryptaxbot'),(0,1875,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,1876,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,1877,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,1878,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1879,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,1880,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,1881,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,1882,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,1883,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,1884,'RonUphon','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,1885,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. Telegram - @Cryptaxbot'),(0,1886,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,1887,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. Telegram - @Cryptaxbot'),(0,1888,'RonUphon','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,1889,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1890,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. Telegram - @Cryptaxbot'),(0,1891,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,1892,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. Telegram - @Cryptaxbot'),(0,1893,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1894,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. Telegram - @Cryptaxbot'),(0,1895,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. Telegram - @Cryptaxbot'),(0,1896,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. Telegram - @Cryptaxbot'),(0,1897,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,1898,'RonUphon','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,1899,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,1900,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,1901,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,1902,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. Telegram - @Cryptaxbot'),(0,1903,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,1904,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1905,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,1906,'RonUphon','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. Telegram - @Cryptaxbot'),(0,1907,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,1908,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,1909,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,1910,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1911,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,1912,'RonUphon','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,1913,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,1914,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,1915,'Crytoron','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,1916,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. Telegram - @Cryptaxbot'),(0,1917,'RonUphon','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,1918,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,1919,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. Telegram - @Cryptaxbot'),(0,1920,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,1921,'RonUphon','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. Telegram - @Cryptaxbot'),(0,1922,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,1923,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. Telegram - @Cryptaxbot'),(0,1924,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,1925,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,1926,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1927,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1928,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,1929,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,1930,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1931,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,1932,'Crytoron','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. Telegram - @Cryptaxbot'),(0,1933,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,1934,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,1935,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,1936,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,1937,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. Telegram - @Cryptaxbot'),(0,1938,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,1939,'Crytoron','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,1940,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,1941,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,1942,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1943,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,1944,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,1945,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,1946,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,1947,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. Telegram - @Cryptaxbot'),(0,1948,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,1949,'Eric Jones','[email protected]',555,'My name’s Eric and I just found your site avox.live.\r\n\r\nIt’s got a lot going for it, but here’s an idea to make it even MORE effective.\r\n\r\nTalk With Web Visitor – CLICK HERE https://boostleadgeneration.com for a live demo now.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nAnd once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation… and if they don’t take you up on your offer then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment. Don’t keep losing them. \r\nTalk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=avox.live\r\n'),(0,1950,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,1951,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,1952,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,1953,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,1954,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,1955,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! Telegram - @Cryptaxbot'),(0,1956,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. Telegram - @Cryptaxbot'),(0,1957,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. Telegram - @Cryptaxbot'),(0,1958,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,1959,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,1960,'Davidedist','[email protected]',2147483647,'ATTENTION ! YOU CAN GET RICH VERY QUICKLY. DON\'T MISS YOUR CHANCE TO JOIN THIS INNOVATIVE ONLINE SYSTEM... https://telegra.ph/How-two-brothers-from-a-poor-family-made-90000000-in-7-months-from-250-in-cryptocurrency-10-31-3782'),(0,1961,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,1962,'Davidedist','[email protected]',2147483647,'FREE IPHONE 13 PRO MAX GIVEAWAY WIN A FREE APPLE IPHONE 13 http://win-iphone-real.bandaiahganji.com/id-4168'),(0,1963,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,1964,'Crytoron','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. Telegram - @Cryptaxbot'),(0,1965,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,1966,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. Telegram - @Cryptaxbot'),(0,1967,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,1968,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1969,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,1970,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,1971,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,1972,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,1973,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1974,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,1975,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,1976,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,1977,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,1978,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,1979,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,1980,'RonUphon','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,1981,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,1982,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,1983,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,1984,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,1985,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. Telegram - @Cryptaxbot'),(0,1986,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,1987,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,1988,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,1989,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. Telegram - @Cryptaxbot'),(0,1990,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,1991,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,1992,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,1993,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. Telegram - @Cryptaxbot'),(0,1994,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. Telegram - @Cryptaxbot'),(0,1995,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,1996,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,1997,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,1998,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,1999,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,2000,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,2001,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,2002,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,2003,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,2004,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,2005,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. Telegram - @Cryptaxbot'),(0,2006,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2007,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,2008,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2009,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,2010,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,2011,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,2012,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,2013,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. Telegram - @Cryptaxbot'),(0,2014,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,2015,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,2016,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. Telegram - @Cryptaxbot'),(0,2017,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,2018,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,2019,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,2020,'Crytoron','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. Telegram - @Cryptaxbot'),(0,2021,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2022,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. Telegram - @Cryptaxbot'),(0,2023,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,2024,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2025,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,2026,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,2027,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,2028,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2029,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! Telegram - @Cryptaxbot'),(0,2030,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2031,'Crytoron','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. Telegram - @Cryptaxbot'),(0,2032,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2033,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,2034,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,2035,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2036,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. Telegram - @Cryptaxbot'),(0,2037,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,2038,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,2039,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2040,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,2041,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2042,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2043,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2044,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,2045,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. Telegram - @Cryptaxbot'),(0,2046,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,2047,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2048,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,2049,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,2050,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2051,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,2052,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,2053,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,2054,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. Telegram - @Cryptaxbot'),(0,2055,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. Telegram - @Cryptaxbot'),(0,2056,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,2057,'RonUphon','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,2058,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,2059,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. Telegram - @Cryptaxbot'),(0,2060,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2061,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,2062,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2063,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2064,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. Telegram - @Cryptaxbot'),(0,2065,'Crytoron','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. Telegram - @Cryptaxbot'),(0,2066,'RonUphon','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,2067,'RonUphon','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,2068,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,2069,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,2070,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. Telegram - @Cryptaxbot'),(0,2071,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. Telegram - @Cryptaxbot'),(0,2072,'Crytoron','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,2073,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. Telegram - @Cryptaxbot'),(0,2074,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2075,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,2076,'Crytoron','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,2077,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,2078,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Cryptaxbot'),(0,2079,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2080,'RonUphon','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. Telegram - @Cryptaxbot'),(0,2081,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,2082,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,2083,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2084,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,2085,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Cryptaxbot'),(0,2086,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. Telegram - @Cryptaxbot'),(0,2087,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,2088,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,2089,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,2090,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,2091,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2092,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,2093,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,2094,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,2095,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,2096,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2097,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2098,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,2099,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,2100,'Crytoron','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,2101,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2102,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,2103,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,2104,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2105,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,2106,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,2107,'Crytoron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2108,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2109,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. Telegram - @Cryptaxbot'),(0,2110,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,2111,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,2112,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,2113,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2114,'Crytoron','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,2115,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2116,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2117,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,2118,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,2119,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2120,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. Telegram - @Cryptaxbot'),(0,2121,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,2122,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. Telegram - @Cryptaxbot'),(0,2123,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. Telegram - @Cryptaxbot'),(0,2124,'Crytoron','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2125,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,2126,'RonUphon','[email protected]',2147483647,'Online financial Robot est clavem ad successus. Telegram - @Cryptaxbot'),(0,2127,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,2128,'WalterDiump','[email protected]',2147483647,'Already more than 179,000 Australians have quit their jobs because they got rich thanks to this service https://tinyurl.com/2dxs5363'),(0,2129,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,2130,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,2131,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,2132,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2133,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. Telegram - @Cryptaxbot'),(0,2134,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2135,'RonUphon','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,2136,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2137,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. Telegram - @Cryptaxbot'),(0,2138,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,2139,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,2140,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,2141,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2142,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,2143,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,2144,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,2145,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,2146,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,2147,'Crytoron','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. Telegram - @Cryptaxbot'),(0,2148,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,2149,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2150,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2151,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,2152,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,2153,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. Telegram - @Cryptaxbot'),(0,2154,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,2155,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,2156,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,2157,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,2158,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,2159,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,2160,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2161,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2162,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,2163,'Alex Bolduin Binance','[email protected]',2147483647,'Revolutionary New Cryptocurrency Automated Trading Exchange Powered by Binance, Forbes and Blockchain. \r\nOnly on our exchange in automatic mode you can earn your first $1000 today with a one-time investment of $250. \r\nWe invite only owners, administrators and other personnel of the sites that we have chosen. \r\nYour site avox.live is on our invitation mailing list. \r\nhttps://telegra.ph/Personal-invitation-to-participate-in-our-system-for-owners-administrators-content-creators-and-other-site-personnel-11-09?avox.live \r\nWe will be very happy that after you earn your first $10,000 leave a review about us on the site https://www.trustpilot.com/ \r\nTo start launching automatic trading, you need to: register on our website, make a minimum deposit of $250 to start trading, wait for the manager\'s call, he will explain how to start the system (there is nothing complicated). \r\nhttps://telegra.ph/Personal-invitation-to-participate-in-our-system-for-owners-administrators-content-creators-and-other-site-personnel-11-09?avox.live'),(0,2164,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,2165,'Davidedist','[email protected]',2147483647,'SMARTPHONE, PICK UP NOW http://win-win.alphaxtrabost.com/news-4375'),(0,2166,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. Telegram - @Cryptaxbot'),(0,2167,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. Telegram - @Cryptaxbot'),(0,2168,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,2169,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,2170,'Crytoron','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! Telegram - @Cryptaxbot'),(0,2171,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,2172,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2173,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,2174,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. Telegram - @Cryptaxbot'),(0,2175,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2176,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,2177,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,2178,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2179,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2180,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. Telegram - @Cryptaxbot'),(0,2181,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,2182,'RonUphon','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. Telegram - @Cryptaxbot'),(0,2183,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2184,'Crytoron','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,2185,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. Telegram - @Cryptaxbot'),(0,2186,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! Telegram - @Cryptaxbot'),(0,2187,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,2188,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,2189,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! Telegram - @Cryptaxbot'),(0,2190,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,2191,'Crytoron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2192,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. Telegram - @Cryptaxbot'),(0,2193,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2194,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. Telegram - @Cryptaxbot'),(0,2195,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,2196,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2197,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2198,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2199,'Crytoron','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,2200,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2201,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2202,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2203,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2204,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2205,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,2206,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,2207,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2208,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,2209,'RonUphon','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2210,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,2211,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,2212,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! Telegram - @Cryptaxbot'),(0,2213,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,2214,'Davidedist','[email protected]',2147483647,'Ordinary people make an income of $ 3000 (3000 EUR) per day https://telegra.ph/Verify-that-you-are-human-11-11-2?id-43868053'),(0,2215,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2216,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,2217,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,2218,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,2219,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,2220,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,2221,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2222,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2223,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. Telegram - @Cryptaxbot'),(0,2224,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2225,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2226,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,2227,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,2228,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. Telegram - @Cryptaxbot'),(0,2229,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. Telegram - @Cryptaxbot'),(0,2230,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2231,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2232,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,2233,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,2234,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,2235,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,2236,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2237,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. Telegram - @Cryptaxbot'),(0,2238,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2239,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2240,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2241,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,2242,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2243,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,2244,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2245,'Crytoron','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. Telegram - @Cryptaxbot'),(0,2246,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,2247,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. Telegram - @Cryptaxbot'),(0,2248,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,2249,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,2250,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,2251,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,2252,'Crytoron','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,2253,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. Telegram - @Cryptaxbot'),(0,2254,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,2255,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2256,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,2257,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2258,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,2259,'Crytoron','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2260,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,2261,'RonUphon','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. Telegram - @Cryptaxbot'),(0,2262,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. Telegram - @Cryptaxbot'),(0,2263,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. Telegram - @Cryptaxbot'),(0,2264,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2265,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,2266,'RonUphon','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,2267,'Eric Jones','[email protected]',555,'Cool website!\r\n\r\nMy name’s Eric, and I just found your site - avox.live - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across avox.live, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://boostleadgeneration.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://boostleadgeneration.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://boostleadgeneration.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://boostleadgeneration.com/unsubscribe.aspx?d=avox.live\r\n'),(0,2268,'Davidedist','[email protected]',2147483647,'Passive income from cryptocurrency from $3000 (3000 EUR) per day https://telegra.ph/Verify-that-you-are-human-11-11-2?id-80856524'),(0,2269,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2270,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2271,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,2272,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2273,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,2274,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. Telegram - @Cryptaxbot'),(0,2275,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,2276,'RonUphon','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,2277,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,2278,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,2279,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,2280,'RonUphon','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,2281,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,2282,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. Telegram - @Cryptaxbot'),(0,2283,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. Telegram - @Cryptaxbot'),(0,2284,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,2285,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,2286,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2287,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,2288,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,2289,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,2290,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,2291,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,2292,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2293,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,2294,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,2295,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,2296,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2297,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,2298,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. Telegram - @Cryptaxbot'),(0,2299,'Crytoron','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. Telegram - @Cryptaxbot'),(0,2300,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,2301,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,2302,'RonUphon','[email protected]',2147483647,'Pecuniam in penitus usura hoc Bot. Vere operatur! Telegram - @Cryptaxbot'),(0,2303,'Crytoron','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! Telegram - @Cryptaxbot'),(0,2304,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,2305,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2306,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2307,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,2308,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2309,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,2310,'Crytoron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2311,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. Telegram - @Cryptaxbot'),(0,2312,'Davidedist','[email protected]',2147483647,'REAL INCOME FROM $5000 PER DAY http://twitter.rawebsites.com/news-8774'),(0,2313,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. Telegram - @Cryptaxbot'),(0,2314,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,2315,'Crytoron','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,2316,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,2317,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,2318,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,2319,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,2320,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,2321,'Crytoron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,2322,'RonUphon','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. Telegram - @Cryptaxbot'),(0,2323,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,2324,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,2325,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,2326,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,2327,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2328,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,2329,'RonUphon','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,2330,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,2331,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2332,'Crytoron','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. Telegram - @Cryptaxbot'),(0,2333,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2334,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2335,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2336,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,2337,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2338,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2339,'Crytoron','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,2340,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,2341,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,2342,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2343,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,2344,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. Telegram - @Cryptaxbot'),(0,2345,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,2346,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,2347,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2348,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,2349,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,2350,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. Telegram - @Cryptaxbot'),(0,2351,'Morgan Stowe','[email protected]',2147483647,'We are in urgent need of suppliers and major business partners to work with in india.Beta Bio Pharmaceutical need a reliable and trusted business partners that would supply us consistent extract from India to United States of America.You can reach us at: \r\[email protected] or [email protected] . \r\n \r\nYours Faithfully \r\nMorgan Stowe \r\nProcurement Manager \r\n \r\nDisclaimer Notice: Information contained in this email is confidential & intended for the address only. Any dissemination, distribution, copying or use of this communication without prior permission from the address is strictly prohibited. If you are not the intended recipient of this communication, please delete it permanently without copying, disclosing or otherwise using its contents, and notify BETA BIO PHARMA immediately.'),(0,2352,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,2353,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. Telegram - @Cryptaxbot'),(0,2354,'Crytoron','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2355,'RonUphon','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,2356,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,2357,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,2358,'Crytoron','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,2359,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2360,'RonUphon','[email protected]',2147483647,'Robot est optima solutio pro omnibus, qui vult mereri. Telegram - @Cryptaxbot'),(0,2361,'Crytoron','[email protected]',2147483647,'Non opus anymore dum Robot launched! Telegram - @Cryptaxbot'),(0,2362,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,2363,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. Telegram - @Cryptaxbot'),(0,2364,'Crytoron','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2365,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. Telegram - @Cryptaxbot'),(0,2366,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2367,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2368,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,2369,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,2370,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2371,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. Telegram - @Cryptaxbot'),(0,2372,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,2373,'RonUphon','[email protected]',2147483647,'Vultus pro an securus via ad pecuniam? Reprehendo sicco financial robot. Telegram - @Cryptaxbot'),(0,2374,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,2375,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,2376,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,2377,'RonUphon','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,2378,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2379,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. Telegram - @Cryptaxbot'),(0,2380,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,2381,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,2382,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2383,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,2384,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,2385,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,2386,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2387,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,2388,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,2389,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,2390,'RonUphon','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,2391,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. Telegram - @Cryptaxbot'),(0,2392,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2393,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,2394,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,2395,'Crytoron','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,2396,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. Telegram - @Cryptaxbot'),(0,2397,'RonUphon','[email protected]',2147483647,'Online reditus est clavem ad successus. Telegram - @Cryptaxbot'),(0,2398,'Crytoron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2399,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,2400,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,2401,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,2402,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,2403,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,2404,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2405,'Crytoron','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. Telegram - @Cryptaxbot'),(0,2406,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,2407,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2408,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2409,'Crytoron','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. Telegram - @Cryptaxbot'),(0,2410,'RonUphon','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,2411,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,2412,'Crytoron','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2413,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2414,'RonUphon','10bowwow\'[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. Telegram - @Cryptaxbot'),(0,2415,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. Telegram - @Cryptaxbot'),(0,2416,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,2417,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,2418,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine labore. Telegram - @Cryptaxbot'),(0,2419,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,2420,'RonUphon','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2421,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2422,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,2423,'Crytoron','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. Telegram - @Cryptaxbot'),(0,2424,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,2425,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2426,'Crytoron','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,2427,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. Telegram - @Cryptaxbot'),(0,2428,'RonUphon','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! Telegram - @Cryptaxbot'),(0,2429,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,2430,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,2431,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. Telegram - @Cryptaxbot'),(0,2432,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. Telegram - @Cryptaxbot'),(0,2433,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,2434,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2435,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,2436,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,2437,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,2438,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2439,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,2440,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2441,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,2442,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2443,'Crytoron','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2444,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. Telegram - @Cryptaxbot'),(0,2445,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2446,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,2447,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,2448,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2449,'RonUphon','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. Telegram - @Cryptaxbot'),(0,2450,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2451,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2452,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2453,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,2454,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. Telegram - @Cryptaxbot'),(0,2455,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,2456,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. Telegram - @Cryptaxbot'),(0,2457,'Crytoron','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. Telegram - @Cryptaxbot'),(0,2458,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. Telegram - @Cryptaxbot'),(0,2459,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2460,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,2461,'Crytoron','[email protected]',2147483647,'Pecunia opus? Ut hic facile? Telegram - @Cryptaxbot'),(0,2462,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,2463,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,2464,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,2465,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? Telegram - @Cryptaxbot'),(0,2466,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2467,'RonUphon','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. Telegram - @Cryptaxbot'),(0,2468,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. Telegram - @Cryptaxbot'),(0,2469,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! Telegram - @Cryptaxbot'),(0,2470,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,2471,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,2472,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. Telegram - @Cryptaxbot'),(0,2473,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,2474,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2475,'Crytoron','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. Telegram - @Cryptaxbot'),(0,2476,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,2477,'RonUphon','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2478,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. Telegram - @Cryptaxbot'),(0,2479,'Crytoron','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! Telegram - @Cryptaxbot'),(0,2480,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2481,'RonUphon','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,2482,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. Telegram - @Cryptaxbot'),(0,2483,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. Telegram - @Cryptaxbot'),(0,2484,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,2485,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,2486,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. Telegram - @Cryptaxbot'),(0,2487,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2488,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,2489,'Crytoron','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. Telegram - @Cryptaxbot'),(0,2490,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. Telegram - @Cryptaxbot'),(0,2491,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,2492,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. Telegram - @Cryptaxbot'),(0,2493,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,2494,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. Telegram - @Cryptaxbot'),(0,2495,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2496,'Crytoron','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2497,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,2498,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2499,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,2500,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,2501,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2502,'Crytoron','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,2503,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie ope huius robot. Telegram - @Cryptaxbot'),(0,2504,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. Telegram - @Cryptaxbot'),(0,2505,'RonUphon','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,2506,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. Telegram - @Cryptaxbot'),(0,2507,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,2508,'RonUphon','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! Telegram - @Cryptaxbot'),(0,2509,'Crytoron','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. Telegram - @Cryptaxbot'),(0,2510,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2511,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2512,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,2513,'Crytoron','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,2514,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. Telegram - @Cryptaxbot'),(0,2515,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. Telegram - @Cryptaxbot'),(0,2516,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. Telegram - @Cryptaxbot'),(0,2517,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2518,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. Telegram - @Cryptaxbot'),(0,2519,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. Telegram - @Cryptaxbot'),(0,2520,'Crytoron','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,2521,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2522,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2523,'Crytoron','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,2524,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,2525,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2526,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. Telegram - @Cryptaxbot'),(0,2527,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2528,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,2529,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. Telegram - @Cryptaxbot'),(0,2530,'Crytoron','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2531,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2532,'RonUphon','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. Telegram - @Cryptaxbot'),(0,2533,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. Telegram - @Cryptaxbot'),(0,2534,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2535,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2536,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. Telegram - @Cryptaxbot'),(0,2537,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2538,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re sit amet, nunc! Telegram - @Cryptaxbot'),(0,2539,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2540,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,2541,'Crytoron','[email protected]',2147483647,'Robot nunquam dormit. Facit pecuniam pro vobis 24/7. Telegram - @Cryptaxbot'),(0,2542,'RonUphon','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. Telegram - @Cryptaxbot'),(0,2543,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2544,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2545,'RonUphon','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. Telegram - @Cryptaxbot'),(0,2546,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,2547,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,2548,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,2549,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,2550,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,2551,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. Telegram - @Cryptaxbot'),(0,2552,'Crytoron','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2553,'Mike Cramer\r\n','[email protected]',2147483647,'Hi there \r\n \r\nI Just checked your avox.live ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Cramer\r\n'),(0,2554,'RonUphon','[email protected]',2147483647,'Financial Robot est maxime financial tool in rete! Telegram - @Cryptaxbot'),(0,2555,'RonUphon','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. Telegram - @Cryptaxbot'),(0,2556,'Crytoron','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2557,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. Telegram - @Cryptaxbot'),(0,2558,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2559,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,2560,'Crytoron','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2561,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. Telegram - @Cryptaxbot'),(0,2562,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,2563,'Crytoron','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2564,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2565,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2566,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. Telegram - @Cryptaxbot'),(0,2567,'RonUphon','[email protected]',2147483647,'Invenimus in ieiunas modo sit dives. Inveniet eam hic. Telegram - @Cryptaxbot'),(0,2568,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! Telegram - @Cryptaxbot'),(0,2569,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2570,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,2571,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2572,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,2573,'Temeka Sexton','[email protected]',862,'Free submission of your new website to over 1000 business directories here bit.ly/submit_site_2'),(0,2574,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. Telegram - @Cryptaxbot'),(0,2575,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. Telegram - @Cryptaxbot'),(0,2576,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2577,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2578,'Crytoron','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. Telegram - @Cryptaxbot'),(0,2579,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. Telegram - @Cryptaxbot'),(0,2580,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! Telegram - @Cryptaxbot'),(0,2581,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. Telegram - @Cryptaxbot'),(0,2582,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2583,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,2584,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. Telegram - @Cryptaxbot'),(0,2585,'Crytoron','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,2586,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! Telegram - @Cryptaxbot'),(0,2587,'RonUphon','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2588,'Crytoron','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. Telegram - @Cryptaxbot'),(0,2589,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. Telegram - @Cryptaxbot'),(0,2590,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. Telegram - @Cryptaxbot'),(0,2591,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. Telegram - @Cryptaxbot'),(0,2592,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2593,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. Telegram - @Cryptaxbot'),(0,2594,'RonUphon','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. Telegram - @Cryptaxbot'),(0,2595,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. Telegram - @Cryptaxbot'),(0,2596,'Crytoron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2597,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,2598,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,2599,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult impetrationem hoc Bot. Telegram - @Cryptaxbot'),(0,2600,'Crytoron','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,2601,'RonUphon','[email protected]',2147483647,'Maxime prospere populo iam uti Robot. Facere vobis? Telegram - @Cryptaxbot'),(0,2602,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. Telegram - @Cryptaxbot'),(0,2603,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. Telegram - @Cryptaxbot'),(0,2604,'RonUphon','h.vwq.lxk.zv.y.a.j.nt.x33.13.8315@gmail.',2147483647,'Financial libertatem, quid est hoc robot praestat. Telegram - @Cryptaxbot'),(0,2605,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. Telegram - @Cryptaxbot'),(0,2606,'Crytoron','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. Telegram - @Cryptaxbot'),(0,2607,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! Telegram - @Cryptaxbot'),(0,2608,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2609,'RonUphon','[email protected]',2147483647,'Quomodo Robot facit $1000 de $1 dignissim. Telegram - @Cryptaxbot'),(0,2610,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,2611,'RonUphon','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. Telegram - @Cryptaxbot'),(0,2612,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. Telegram - @Cryptaxbot'),(0,2613,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,2614,'Crytoron','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! Telegram - @Cryptaxbot'),(0,2615,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! Telegram - @Cryptaxbot'),(0,2616,'Artificial intelligence creates content for the site, no worse than a copywriter, you can also use it to write articles. 100% uniqueness, scheduled posting to your Wordpress :). Click Here:???? https://stanford.io/3FXszd0?h=5ff26f892084e8622e018e19b2d0ac6d&','[email protected]',0,'ej1ov8'),(0,2617,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,2618,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. Telegram - @Cryptaxbot'),(0,2619,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,2620,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. Telegram - @Cryptaxbot'),(0,2621,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. Telegram - @Cryptaxbot'),(0,2622,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. Telegram - @Cryptaxbot'),(0,2623,'RonUphon','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. Telegram - @Cryptaxbot'),(0,2624,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. Telegram - @Cryptaxbot'),(0,2625,'Crytoron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. Telegram - @Cryptaxbot'),(0,2626,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,2627,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. Telegram - @Cryptaxbot'),(0,2628,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. Telegram - @Cryptaxbot'),(0,2629,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,2630,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. Telegram - @Cryptaxbot'),(0,2631,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. Telegram - @Cryptaxbot'),(0,2632,'Crytoron','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,2633,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. Telegram - @Cryptaxbot'),(0,2634,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. Telegram - @Cryptaxbot'),(0,2635,'RonUphon','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. Telegram - @Cryptaxbot'),(0,2636,'Crytoron','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. Telegram - @Cryptaxbot'),(0,2637,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. Telegram - @Cryptaxbot'),(0,2638,'RonUphon','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,2639,'Crytoron','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. Telegram - @Cryptaxbot'),(0,2640,'RonUphon','[email protected]',2147483647,'Unum pupa est nihil, sed potest crescere in $100 hic. Telegram - @Cryptaxbot'),(0,2641,'Francisca Eade','[email protected]',6,'Free submission of your new website to over 1000 business directories here https://bit.ly/submit_site_t9qPdO4E2oF2'),(0,2642,'RonUphon','[email protected]',2147483647,'Nulla diam consequat? Sit Robot pecuniam pro te. Telegram - @Cryptaxbot'),(0,2643,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. Telegram - @Cryptaxbot'),(0,2644,'Crytoron','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. Telegram - @Cryptaxbot'),(0,2645,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! Telegram - @Cryptaxbot'),(0,2646,'RonUphon','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. Telegram - @Cryptaxbot'),(0,2647,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,2648,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. Telegram - @Cryptaxbot'),(0,2649,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,2650,'Mike Thornton\r\n','[email protected]',2147483647,'Hi there \r\n \r\nThis is Mike Thornton\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your avox.live SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them. \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Thornton\r\n \r\[email protected]'),(0,2651,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. Telegram - @Cryptaxbot'),(0,2652,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. Telegram - @Cryptaxbot'),(0,2653,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. Telegram - @Cryptaxbot'),(0,2654,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. Telegram - @Cryptaxbot'),(0,2655,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. Telegram - @Cryptaxbot'),(0,2656,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? Telegram - @Cryptaxbot'),(0,2657,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! Telegram - @Cryptaxbot'),(0,2658,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Hoc robot quod opus est! Telegram - @Cryptaxbot'),(0,2659,'Crytoron','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. Telegram - @Cryptaxbot'),(0,2660,'AlenaTync','[email protected]',420,'Неlloǃ\r\nΡеrhapѕ my mеѕѕаge іѕ tоo ѕpecіfіс.\r\nBut my older sіѕter fоund а wоndеrful man herе аnd they hаve а great rеlаtiоnship, but what аbout mе?\r\nI аm 22 yеars оld, Αlеnа, from the Сzeсh Rерublic, know Εnglіsh languagе also\r\nAnd... bеttеr tо ѕaу it іmmediаtely. Ι аm bіѕexuаl. I аm not jеalous of anothеr wоmаn... еsрeсіallу іf we mаke love tоgether.\r\nΑh yeѕ, Ι соok vеrу taѕtуǃ and Ι love not only cооk ;))\r\nΙm real gіrl and looking for ѕеrіоus and hоt rеlatiоnshiр...\r\nΑnуwау, уou cаn fіnd mу рrofіlе herе: http://nosamomerbionu.tk/topic-31904/ \r\n'),(0,2661,'RonUphon','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. Telegram - @Cryptaxbot'),(0,2662,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. Telegram - @Cryptaxbot'),(0,2663,'Crytoron','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? Telegram - @Cryptaxbot'),(0,2664,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. Telegram - @Cryptaxbot'),(0,2665,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. Telegram - @Cryptaxbot'),(0,2666,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. Telegram - @Cryptaxbot'),(0,2667,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. Telegram - @Cryptaxbot'),(0,2668,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. Telegram - @Cryptaxbot'),(0,2669,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://worldnews.elk.pl'),(0,2670,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://worldnews.elk.pl'),(0,2671,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://worldnews.elk.pl'),(0,2672,'RonUphon','[email protected]',2147483647,'Adipiscing diam Robot et facere negotium. https://worldnews.elk.pl'),(0,2673,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://worldnews.elk.pl'),(0,2674,'Crytoron','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://worldnews.elk.pl'),(0,2675,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://worldnews.elk.pl'),(0,2676,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://worldnews.elk.pl'),(0,2677,'Crytoron','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. https://worldnews.elk.pl'),(0,2678,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://worldnews.elk.pl'),(0,2679,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://worldnews.elk.pl'),(0,2680,'Crytoron','[email protected]',2147483647,'Vestri computer potest facere vos etiam reditus, si vos utor is Robot. https://worldnews.elk.pl'),(0,2681,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. https://worldnews.elk.pl'),(0,2682,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://worldnews.elk.pl'),(0,2683,'RonUphon','[email protected]',2147483647,'Robot est optimus via pro omnibus, qui spectat ad financial libertatem. https://worldnews.elk.pl'),(0,2684,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://worldnews.elk.pl'),(0,2685,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://worldnews.elk.pl'),(0,2686,'RonUphon','[email protected]',2147483647,'Fides financial Bot fieri dives. https://worldnews.elk.pl'),(0,2687,'Mike Oakman\r\n','[email protected]',2147483647,'Hi there \r\n \r\nJust checked your avox.live in ahrefs and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed ahrefs score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nThanks and regards \r\nMike Oakman\r\n \r\n \r\n \r\nPS: For a limited time, we`ll add ahrefs UR50+ for free.'),(0,2688,'Crytoron','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://worldnews.elk.pl'),(0,2689,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://worldnews.elk.pl'),(0,2690,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://worldnews.elk.pl'),(0,2691,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://worldnews.elk.pl'),(0,2692,'Crytoron','[email protected]',2147483647,'Parva re potest facere tons of pupa fast. https://worldnews.elk.pl'),(0,2693,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://worldnews.elk.pl'),(0,2694,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://worldnews.elk.pl'),(0,2695,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! https://worldnews.elk.pl'),(0,2696,'RonUphon','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://worldnews.elk.pl'),(0,2697,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://worldnews.elk.pl'),(0,2698,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://worldnews.elk.pl'),(0,2699,'Crytoron','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://worldnews.elk.pl'),(0,2700,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://worldnews.elk.pl'),(0,2701,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://worldnews.elk.pl'),(0,2702,'Crytoron','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://worldnews.elk.pl'),(0,2703,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. https://worldnews.elk.pl'),(0,2704,'RonUphon','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. https://worldnews.elk.pl'),(0,2705,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! https://worldnews.elk.pl'),(0,2706,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://worldnews.elk.pl'),(0,2707,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://worldnews.elk.pl'),(0,2708,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile! Iustus premere hoc deducere in robot. https://worldnews.elk.pl'),(0,2709,'Crytoron','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://worldnews.elk.pl'),(0,2710,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://worldnews.elk.pl'),(0,2711,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://worldnews.elk.pl'),(0,2712,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://worldnews.elk.pl'),(0,2713,'RonUphon','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://worldnews.elk.pl'),(0,2714,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://worldnews.elk.pl'),(0,2715,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://worldnews.elk.pl'),(0,2716,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. https://worldnews.elk.pl'),(0,2717,'Crytoron','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://worldnews.elk.pl'),(0,2718,'RonUphon','[email protected]',2147483647,'Faciens pecuniam in rete facilius est nunc. https://worldnews.elk.pl'),(0,2719,'RonUphon','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://worldnews.elk.pl'),(0,2720,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://worldnews.elk.pl'),(0,2721,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://worldnews.elk.pl'),(0,2722,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://worldnews.elk.pl'),(0,2723,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Financial robot faciam te eum! https://worldnews.elk.pl'),(0,2724,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. https://worldnews.elk.pl'),(0,2725,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://worldnews.elk.pl'),(0,2726,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. https://worldnews.elk.pl'),(0,2727,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://worldnews.elk.pl'),(0,2728,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://worldnews.elk.pl'),(0,2729,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://worldnews.elk.pl'),(0,2730,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://worldnews.elk.pl'),(0,2731,'Crytoron','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://worldnews.elk.pl'),(0,2732,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://worldnews.elk.pl'),(0,2733,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://worldnews.elk.pl'),(0,2734,'Crytoron','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://worldnews.elk.pl'),(0,2735,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://worldnews.elk.pl'),(0,2736,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://worldnews.elk.pl'),(0,2737,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. https://worldnews.elk.pl'),(0,2738,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. https://worldnews.elk.pl'),(0,2739,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://worldnews.elk.pl'),(0,2740,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://worldnews.elk.pl'),(0,2741,'Crytoron','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://worldnews.elk.pl'),(0,2742,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://worldnews.elk.pl'),(0,2743,'Davidedist','[email protected]',2147483647,'Learn to make from $4000 per day https://telegra.ph/A-secret-technique-that-generates-income-from--4000-per-day-on-autopilot-12-05?id-81044706'),(0,2744,'RonUphon','[email protected]',2147483647,'Optimum online officium pro retirees. Planto vestri vetus saecula dives. https://worldnews.elk.pl'),(0,2745,'RonUphon','[email protected]',2147483647,'Capto ex ipso robot servare victum tota die. https://worldnews.elk.pl'),(0,2746,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://worldnews.elk.pl'),(0,2747,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://worldnews.elk.pl'),(0,2748,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://worldnews.elk.pl'),(0,2749,'Crytoron','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://worldnews.elk.pl'),(0,2750,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://worldnews.elk.pl'),(0,2751,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://worldnews.elk.pl'),(0,2752,'RonUphon','[email protected]',2147483647,'Omnis vestri pupa potest convertere in $100 post prandium hoc Robot. https://worldnews.elk.pl'),(0,2753,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://worldnews.elk.pl'),(0,2754,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://worldnews.elk.pl'),(0,2755,'RonUphon','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://worldnews.elk.pl'),(0,2756,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://worldnews.elk.pl'),(0,2757,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://worldnews.elk.pl'),(0,2758,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://worldnews.elk.pl'),(0,2759,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana. https://worldnews.elk.pl'),(0,2760,'Crytoron','[email protected]',2147483647,'Lorem optimum obsideri instrumentum, tincidunt ut pretium nunc. https://worldnews.elk.pl'),(0,2761,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://worldnews.elk.pl'),(0,2762,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://worldnews.elk.pl'),(0,2763,'Crytoron','[email protected]',2147483647,'Operam! Financial robot perducat vos milia! https://worldnews.elk.pl'),(0,2764,'RonUphon','[email protected]',2147483647,'Etiam sciat puer ad pecuniam. Facere vobis? https://worldnews.elk.pl'),(0,2765,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://worldnews.elk.pl'),(0,2766,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. https://worldnews.elk.pl'),(0,2767,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. https://worldnews.elk.pl'),(0,2768,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://worldnews.elk.pl'),(0,2769,'RonUphon','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://worldnews.elk.pl'),(0,2770,'Crytoron','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://worldnews.elk.pl'),(0,2771,'RonUphon','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://worldnews.elk.pl'),(0,2772,'RonUphon','[email protected]',2147483647,'Pecuniam 24/7 sine ulla conatus et artes. https://worldnews.elk.pl'),(0,2773,'Crytoron','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://worldnews.elk.pl'),(0,2774,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://worldnews.elk.pl'),(0,2775,'Davidedist','[email protected]',2147483647,'You have a low salary, stop tolerating it https://435478-per-day.blogspot.pt/?p=0sj'),(0,2776,'RonUphon','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://worldnews.elk.pl'),(0,2777,'Crytoron','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://worldnews.elk.pl'),(0,2778,'RonUphon','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://worldnews.elk.pl'),(0,2779,'Mike Saunder\r\n','[email protected]',2147483647,'If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Saunder\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/'),(0,2780,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://worldnews.elk.pl'),(0,2781,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://worldnews.elk.pl'),(0,2782,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://worldnews.elk.pl'),(0,2783,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. https://worldnews.elk.pl'),(0,2784,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut peram crassitudine reperitur. https://worldnews.elk.pl'),(0,2785,'Crytoron','[email protected]',2147483647,'Planto vestri laptop a financial instrumentum, cum hoc progressio. https://worldnews.elk.pl'),(0,2786,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://worldnews.elk.pl'),(0,2787,'RonUphon','[email protected]',2147483647,'Online officium et adducam vos a fantastic utilitatem. https://worldnews.elk.pl'),(0,2788,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://worldnews.elk.pl'),(0,2789,'Crytoron','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://worldnews.elk.pl'),(0,2790,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://worldnews.elk.pl'),(0,2791,'JamesVog','[email protected]',2147483647,'LES GENS DE VOTRE VILLE DEVIENNENT MILLIONNAIRES, DEVIENNENT VOUS AUSSI https://958958-euro-per-week.blogspot.com/?o=9wj'),(0,2792,'RonUphon','[email protected]',2147483647,'Planto vestri pecunia opus est tibi tota die. https://worldnews.elk.pl'),(0,2793,'Crytoron','[email protected]',2147483647,'Experiri optimum financial robot in in Lorem. https://worldnews.elk.pl'),(0,2794,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://worldnews.elk.pl'),(0,2795,'RonUphon','[email protected]',2147483647,'Hoc robot et adducam vos pecuniam 24/7. https://worldnews.elk.pl'),(0,2796,'RonUphon','[email protected]',2147483647,'Mille arietes sunt praestatur, si vos utor is robot. https://worldnews.elk.pl'),(0,2797,'Crytoron','[email protected]',2147483647,'Non erit sollicitum, si sunt accensi. Opus online. https://worldnews.elk.pl'),(0,2798,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://worldnews.elk.pl'),(0,2799,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://worldnews.elk.pl'),(0,2800,'Crytoron','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. https://worldnews.elk.pl'),(0,2801,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://worldnews.elk.pl'),(0,2802,'RonUphon','[email protected]',2147483647,'Wow! Hoc Robot est, a tincidunt magna enim consectetur volutpat. https://worldnews.elk.pl'),(0,2803,'Crytoron','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://worldnews.elk.pl'),(0,2804,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://worldnews.elk.pl'),(0,2805,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://worldnews.elk.pl'),(0,2806,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://worldnews.elk.pl'),(0,2807,'Crytoron','[email protected]',2147483647,'Optimus via pro omnibus, qui procurrit, pro financial libertatem. https://worldnews.elk.pl'),(0,2808,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://worldnews.elk.pl'),(0,2809,'RonUphon','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://worldnews.elk.pl'),(0,2810,'Crytoron','[email protected]',2147483647,'Reprehendo ex ipso Bot, qui operatur in vobis 24/7. https://worldnews.elk.pl'),(0,2811,'RonUphon','[email protected]',2147483647,'Financial Robot est # 1 peritus quaestus. https://worldnews.elk.pl'),(0,2812,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://worldnews.elk.pl'),(0,2813,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://worldnews.elk.pl'),(0,2814,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://worldnews.elk.pl'),(0,2815,'RonUphon','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://worldnews.elk.pl'),(0,2816,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Suus facile ad eam online hic. https://worldnews.elk.pl'),(0,2817,'Crytoron','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://worldnews.elk.pl'),(0,2818,'JamesVog','[email protected]',2147483647,'Zeit haben, vor dem neuen Jahr Millionar zu werden https://95385837-euro-per-month.blogspot.pt/?p=9mp'),(0,2819,'RonUphon','[email protected]',2147483647,'Non opus anymore. Iustus launch robot. https://worldnews.elk.pl'),(0,2820,'RonUphon','[email protected]',2147483647,'Quaestus potest esse perquam facile uti, si hoc Robot. https://worldnews.elk.pl'),(0,2821,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://worldnews.elk.pl'),(0,2822,'Crytoron','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. https://worldnews.elk.pl'),(0,2823,'RonUphon','[email protected]',2147483647,'Reprehendo ex novissima modo, ut a fantastic utilitatem. https://worldnews.elk.pl'),(0,2824,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://worldnews.elk.pl'),(0,2825,'RonUphon','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://worldnews.elk.pl'),(0,2826,'JamesVog','[email protected]',2147483647,'BECOME A MILLIONAIRE BEFORE THE NEW YEAR https://telegra.ph/Canadians-are-massively-getting-richer-and-becoming-millionaires-12-09-2722'),(0,2827,'Crytoron','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://worldnews.elk.pl'),(0,2828,'RonUphon','[email protected]',2147483647,'Addito reditus praesto est omnibus hac robot. https://worldnews.elk.pl'),(0,2829,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://worldnews.elk.pl'),(0,2830,'Crytoron','[email protected]',2147483647,'Financial Robot est #1 dignissim tortor semper. Orci! https://worldnews.elk.pl'),(0,2831,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://worldnews.elk.pl'),(0,2832,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://worldnews.elk.pl'),(0,2833,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://worldnews.elk.pl'),(0,2834,'Crytoron','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://worldnews.elk.pl'),(0,2835,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://worldnews.elk.pl'),(0,2836,'RonUphon','[email protected]',2147483647,'Scimus quam ad futura nostra dives et tu? https://worldnews.elk.pl'),(0,2837,'Crytoron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://worldnews.elk.pl'),(0,2838,'RonUphon','[email protected]',2147483647,'Omnis qui necessitatibus pecuniam, ut hanc Robot ex. https://worldnews.elk.pl'),(0,2839,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://worldnews.elk.pl'),(0,2840,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://worldnews.elk.pl'),(0,2841,'Crytoron','[email protected]',2147483647,'Augmentum est nunc, sit amet quis ligula. https://worldnews.elk.pl'),(0,2842,'RonUphon','[email protected]',2147483647,'Quaestus est facile, si vos utor financial Robot. https://worldnews.elk.pl'),(0,2843,'RonUphon','[email protected]',2147483647,'Scimus quomodo fieri dives, et tu? https://worldnews.elk.pl'),(0,2844,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://worldnews.elk.pl'),(0,2845,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://worldnews.elk.pl'),(0,2846,'RonUphon','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://worldnews.elk.pl'),(0,2847,'RonUphon','[email protected]',2147483647,'Adipiscing robot et eam adducam te pecuniam. https://worldnews.elk.pl'),(0,2848,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://worldnews.elk.pl'),(0,2849,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://worldnews.elk.pl'),(0,2850,'RonUphon','[email protected]',2147483647,'Sit Robot et adducam te pecuniam dum reliqua. https://worldnews.elk.pl'),(0,2851,'Crytoron','[email protected]',2147483647,'Financial robot tenet, deferentes ad vos pecunias, dum somnum. https://worldnews.elk.pl'),(0,2852,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://worldnews.elk.pl'),(0,2853,'RonUphon','[email protected]',2147483647,'Scimus quam crescere tua financial stabilitatem. https://worldnews.elk.pl'),(0,2854,'Katedogy6323','[email protected]',2147483647,'XEvil 6.0 ipso solvere maxime genus captchas, \r\nEtiam tale genus captchas: ReCaptcha v.2, ReCaptcha v.3, Hotmail, Google captcha, Solve Media, BitcoinFaucet, Steam, +12k \r\n+ hCaptcha, ReCaptcha Enterprise sustinetur in novum XEvil 6.0! \r\n \r\n1.) Et ieiunium,, securus, precisionly \r\nXEvil est ieiunas captcha interfectorem in mundo. Eius non solutionem termini, non fila numerus fines \r\ntu potest solvere etiam 1.000.000.000 captchas per diem, et sumptus 0 (O) USD! Iustus sumo licentiam 59 USD et omnes! \r\n \r\n2.) Plures APIs support \r\nXEvil sustinet plus quam 6 diversis, cognoscitur worldwide API: 2Captcha, anti-captchas.com (antigate), rucaptcha.com, death-by-captcha, etc. \r\niustus mittere captcha via HTTP petitionem, ut vos mittere potest in aliquo servitio - et XEvil solvere tua captcha! \r\nSic, XEvil est, potest stare cum centum applications pro SEO/SMM/password recuperatio/parsing/dispositis/nisi/cryptocurrency/etc. \r\n \r\n3.) Utile subsidium et enchiridia \r\nPost emptionem, habes accessum ad secretum tech.support forum, Wiki, Skype/Telegramma online support \r\nTincidunt comitatu XEvil ut vestri ratio vestibulum ac LIBERO et ipsum ieiunium - iustus mittere exempla \r\n \r\n4.) Quam ut a libero iudicio uti XEvil full version? \r\n- Conantur quaerere Google \"Home of XEvil\" \r\n- vos mos reperio IPs cum aperuit port 80 de XEvil users (click in ullus IP curare) \r\n- capto mittere captcha via 2captcha API ino unum, quod IPs \r\n- si vos got MALUM KEY error, iustus tru aliud IP \r\n- frui! :) \r\n- (quod non opus hCaptcha!) \r\n \r\nWARNING: Lorem XEvil DEMO sustinere NON ReCaptcha, hCaptcha et pleraque alia genera captcha! \r\n \r\nhttp://XEvil.Net/'),(0,2855,'Crytoron','[email protected]',2147483647,'Vigilate pecuniam tuam crescere, dum te, placerat cum Robot. https://worldnews.elk.pl'),(0,2856,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! https://worldnews.elk.pl'),(0,2857,'RonUphon','[email protected]',2147483647,'Providere familia tua, cum pecunia in aetate. Adipiscing Robot! https://worldnews.elk.pl'),(0,2858,'RonUphon','[email protected]',2147483647,'Sit diam Robot esse comes in financial forum. https://worldnews.elk.pl'),(0,2859,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://worldnews.elk.pl'),(0,2860,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://worldnews.elk.pl'),(0,2861,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://worldnews.elk.pl'),(0,2862,'Crytoron','[email protected]',2147483647,'Online reditus est clavem ad successus. https://worldnews.elk.pl'),(0,2863,'RonUphon','[email protected]',2147483647,'Financial libertatem, quid est hoc robot praestat. https://worldnews.elk.pl'),(0,2864,'RonUphon','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://worldnews.elk.pl'),(0,2865,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://worldnews.elk.pl'),(0,2866,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. https://worldnews.elk.pl'),(0,2867,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://worldnews.elk.pl'),(0,2868,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://worldnews.elk.pl'),(0,2869,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://worldnews.elk.pl'),(0,2870,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. https://worldnews.elk.pl'),(0,2871,'RonUphon','[email protected]',2147483647,'Pecunia opus? Quisque id est non relicto domum tuam. https://worldnews.elk.pl'),(0,2872,'RonUphon','[email protected]',2147483647,'Optimum online euismod instrumentum invenitur. Discere magis! https://worldnews.elk.pl'),(0,2873,'Crytoron','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://worldnews.elk.pl'),(0,2874,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://worldnews.elk.pl'),(0,2875,'RonUphon','[email protected]',2147483647,'Financial robot est elit formula invenitur. Discere magis de eo. https://worldnews.elk.pl'),(0,2876,'RonUphon','tonifrank',2147483647,'Nec opus est quaerere job amplius. Opus online. https://worldnews.elk.pl'),(0,2877,'Crytoron','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://worldnews.elk.pl'),(0,2878,'RonUphon','[email protected]',2147483647,'Financial libertatem est, quod quisque eget. https://newsworld.elk.pl'),(0,2879,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://newsworld.elk.pl'),(0,2880,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. https://newsworld.elk.pl'),(0,2881,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://newsworld.elk.pl'),(0,2882,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://newsworld.elk.pl'),(0,2883,'Crytoron','[email protected]',2147483647,'Financial robot est a valde via ut curo et crescere reditus. https://newsworld.elk.pl'),(0,2884,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://newsworld.elk.pl'),(0,2885,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Financial robot mos succurro vos facere! https://newsworld.elk.pl'),(0,2886,'RonUphon','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://newsworld.elk.pl'),(0,2887,'Crytoron','[email protected]',2147483647,'Reprehendo sicco novus financial instrumentum, quae potest facere vos divites essetis. https://newsworld.elk.pl'),(0,2888,'RonUphon','[email protected]',2147483647,'Usura hoc Robot est optimus via ut vos divites essetis. https://newsworld.elk.pl'),(0,2889,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. https://newsworld.elk.pl'),(0,2890,'Crytoron','[email protected]',2147483647,'Pecuniam, pecuniam,! Plus facere financial robot! https://newsworld.elk.pl'),(0,2891,'RonUphon','[email protected]',2147483647,'Non opus anymore dum Robot launched! https://newsworld.elk.pl'),(0,2892,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://newsworld.elk.pl'),(0,2893,'RonUphon','[email protected]',2147483647,'Financial Robot operatur in vobis, etiam cum tu somnum. https://newsworld.elk.pl'),(0,2894,'Crytoron','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://newsworld.elk.pl'),(0,2895,'RonUphon','[email protected]',2147483647,'Financial Robot est futura opes et libertatem. https://newsworld.elk.pl'),(0,2896,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://newsworld.elk.pl'),(0,2897,'Crytoron','[email protected]',2147483647,'Etiam sciat puer ut $100 hodie. https://newsworld.elk.pl'),(0,2898,'RonUphon','[email protected]',2147483647,'Online referte sunt facillimus via financial libertatem. https://newsworld.elk.pl'),(0,2899,'JamesVog','[email protected]',2147483647,'Become a millionaire before the new year https://telegra.ph/Norwegians-are-massively-getting-richer-and-quitting-their-jobs-12-11-5624'),(0,2900,'JamesVog','[email protected]',2147483647,'MIEJ CZAS, ABY ZOSTAC MILIONEREM PRZED NOWYM ROKIEM https://telegra.ph/300000000000-euro-12-12-752'),(0,2901,'RonUphon','[email protected]',2147483647,'Sentio solvo ut emerent omne quod vis, cum augmentum. https://newsworld.elk.pl'),(0,2902,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://newsworld.elk.pl'),(0,2903,'Crytoron','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://newsworld.elk.pl'),(0,2904,'RonUphon','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://newsworld.elk.pl'),(0,2905,'RonUphon','[email protected]',2147483647,'At $1000 die facile est, si uti hoc financial Robot. https://newsworld.elk.pl'),(0,2906,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://newsworld.elk.pl'),(0,2907,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://newsworld.elk.pl'),(0,2908,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://newsworld.elk.pl'),(0,2909,'Crytoron','[email protected]',2147483647,'Satus vestri online opus usura financial Robot. https://newsworld.elk.pl'),(0,2910,'RonUphon','[email protected]',2147483647,'Opus cash? Launch hoc robot et quod potest videre. https://newsworld.elk.pl'),(0,2911,'RonUphon','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. https://newsworld.elk.pl'),(0,2912,'RonUphon','[email protected]',2147483647,'Pecunia opus est, etiam cum somno. https://newsworld.elk.pl'),(0,2913,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine labore. https://newsworld.elk.pl'),(0,2914,'RonUphon','[email protected]',2147483647,'Pecunia opus? Financial robot est tua solutio. https://newsworld.elk.pl'),(0,2915,'RonUphon','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://newsworld.elk.pl'),(0,2916,'Crytoron','[email protected]',2147483647,'Fac tibi dives in futurum utentes financial robot. https://newsworld.elk.pl'),(0,2917,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://newsworld.elk.pl'),(0,2918,'RonUphon','[email protected]',2147483647,'Hoc robot mos succurro vos ut centum of pupa quotidie. https://newsworld.elk.pl'),(0,2919,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://newsworld.elk.pl'),(0,2920,'RonUphon','[email protected]',2147483647,'Non opus ad vigilate tota nocte mereri pecuniam. Adipiscing robot. https://newsworld.elk.pl'),(0,2921,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. https://newsworld.elk.pl'),(0,2922,'RonUphon','[email protected]',2147483647,'Quod est optimum tempus ad immittendi in Robot impetro magis pecunia. https://newsworld.elk.pl'),(0,2923,'Crytoron','[email protected]',2147483647,'Discere, quomodo ad centum terga singulos dies. https://newsworld.elk.pl'),(0,2924,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://newsworld.elk.pl'),(0,2925,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://newsworld.elk.pl'),(0,2926,'Crytoron','[email protected]',2147483647,'Vultus deinceps ad reditus? Ut online. https://newsworld.elk.pl'),(0,2927,'RonUphon','[email protected]',2147483647,'Vultus pro alia pecunia? Experiri optimum interdum instrumentum. https://newsworld.elk.pl'),(0,2928,'RonUphon','[email protected]',2147483647,'Fac pupa iustus sedentem in domum suam. https://newsworld.elk.pl'),(0,2929,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://newsworld.elk.pl'),(0,2930,'Crytoron','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://newsworld.elk.pl'),(0,2931,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://newsworld.elk.pl'),(0,2932,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://newsworld.elk.pl'),(0,2933,'RonUphon','[email protected]',2147483647,'Turn $1 in $100 statim. Uti oeconomus Robot. https://newsworld.elk.pl'),(0,2934,'Crytoron','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://newsworld.elk.pl'),(0,2935,'RonUphon','[email protected]',2147483647,'Unum click in robot et adducam vos milia illos leones,. https://newsworld.elk.pl'),(0,2936,'RonUphon','[email protected]',2147483647,'Lucraris in Penitus facile est, si vos utor Robot. https://newsworld.elk.pl'),(0,2937,'Crytoron','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://newsworld.elk.pl'),(0,2938,'RonUphon','[email protected]',2147483647,'Fac pupa domi et deductae hoc Bot. https://newsworld.elk.pl'),(0,2939,'RonUphon','[email protected]',2147483647,'Sit pecunia tua crescere in caput hoc Robot. https://newsworld.elk.pl'),(0,2940,'RonUphon','[email protected]',2147483647,'Fac $1000 de $1 in paucis minutis. Adipiscing diam robot nunc. https://newsworld.elk.pl'),(0,2941,'Crytoron','[email protected]',2147483647,'Iustus click potest convertere tu pupa in $1000. https://newsworld.elk.pl'),(0,2942,'RonUphon','[email protected]',2147483647,'Successu formula invenitur. Discere magis de eo. https://newsworld.elk.pl'),(0,2943,'RonUphon','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://newsworld.elk.pl'),(0,2944,'RonUphon','[email protected]',2147483647,'Adipiscing diam Bot nunc ut satus promerendae. https://newsworld.elk.pl'),(0,2945,'Crytoron','[email protected]',2147483647,'Iungere societatis prospere populo, qui pecuniam hic. https://newsworld.elk.pl'),(0,2946,'RonUphon','[email protected]',2147483647,'Planto vestri computer ut vos promerendae instrumentum. https://newsworld.elk.pl'),(0,2947,'RonUphon','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://newsworld.elk.pl'),(0,2948,'Crytoron','[email protected]',2147483647,'Earn etiam pecunia sine conatus et artes. https://newsworld.elk.pl'),(0,2949,'RonUphon','[email protected]',2147483647,'Wow! Hoc est celerrime, quia a financial libertatem. https://newsworld.elk.pl'),(0,2950,'RonUphon','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://newsworld.elk.pl'),(0,2951,'Tyronefah','[email protected]',2147483647,'Capital Fund International Limited has been working in close partnership with various Business/Financial Consultants and every business and industrial sector all over the world. \r\n \r\nOur Financial services; Funding, Loan, collateral Facilities/Instrument and expertise is the safety net that you require in your Business. \r\n \r\nRequire funding/ Loan from 1 Million to 10 Billion USD/EURO/GBP and Above? \r\n \r\n+852 3008 8373 \r\nCapital Fund International Limited \r\nhttp://www.capitalfund-hk.com/ \r\[email protected]'),(0,2952,'RonUphon','[email protected]',2147483647,'Obsidendam $1 hodie ad $1000 cras. https://newsworld.elk.pl'),(0,2953,'Crytoron','[email protected]',2147483647,'Divites divitibus, quia utuntur hoc robot. https://newsworld.elk.pl'),(0,2954,'RonUphon','[email protected]',2147483647,'Pecuniam, non bellum! Financial Robot quid opus est tibi. https://newsworld.elk.pl'),(0,2955,'RonUphon','[email protected]',2147483647,'Postulo nonnullus magis pecuniam? Robot mereretur eos vere ieiunium. https://newsworld.elk.pl'),(0,2956,'Crytoron','[email protected]',2147483647,'Milia omni septimana operantes online hic. https://newsworld.elk.pl'),(0,2957,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://newsworld.elk.pl'),(0,2958,'RonUphon','[email protected]',2147483647,'Pretium non habetis? Quisque online. https://newsworld.elk.pl'),(0,2959,'RonUphon','[email protected]',2147483647,'Operam! Hic vos can mereo pecuniam online! https://newsworld.elk.pl'),(0,2960,'Crytoron','[email protected]',2147483647,'Pecunia tua custodi crescere 24/7 si vos utor financial Robot. https://newsworld.elk.pl'),(0,2961,'RonUphon','[email protected]',2147483647,'Pecunia opus? Ut hic facile? https://newsworld.elk.pl'),(0,2962,'RonUphon','[email protected]',2147483647,'Online officium potest esse vere efficax, si vos utor is Robot. https://newsworld.elk.pl'),(0,2963,'Crytoron','[email protected]',2147483647,'# 1 oeconomica peritus in rete! Reprehendo sicco novus Robot. https://newsworld.elk.pl'),(0,2964,'RonUphon','[email protected]',2147483647,'Financial robot est optimus comes dives populus. https://newsworld.elk.pl'),(0,2965,'RonUphon','[email protected]',2147483647,'Financial robot praestat omnibus stabilitatem et reditus. https://newsworld.elk.pl'),(0,2966,'RonUphon','[email protected]',2147483647,'Addito reditus pro omnibus. https://newsworld.elk.pl'),(0,2967,'Crytoron','[email protected]',2147483647,'Non opus ad solliciti de futuris, si uti hoc financial robot. https://newsworld.elk.pl'),(0,2968,'RonUphon','[email protected]',2147483647,'Milia illos leones,. Redde nihil. https://newsworld.elk.pl'),(0,2969,'RonUphon','[email protected]',2147483647,'Online Bot adducam tibi opes, et satisfactio. https://newsworld.elk.pl'),(0,2970,'Crytoron','[email protected]',2147483647,'Aliquam robot est optimum satus enim financial libertatem. https://newsworld.elk.pl'),(0,2971,'RonUphon','[email protected]',2147483647,'Satus faciens milia pupa omni septimana, iustus usura hoc robot. https://newsworld.elk.pl'),(0,2972,'RonUphon','[email protected]',2147483647,'Fiducia vestri pupa ad Robot et quomodo crescit, ut $100. https://newsworld.elk.pl'),(0,2973,'RonUphon','[email protected]',2147483647,'In ieiunas modo, ut vos peram crassus est hic. https://newsworld.elk.pl'),(0,2974,'Crytoron','[email protected]',2147483647,'Nec opus est quaerere job amplius. Opus online. https://newsworld.elk.pl'),(0,2975,'RonUphon','[email protected]',2147483647,'Ingens reditus sine re, quod est available. https://newsworld.elk.pl'),(0,2976,'RonUphon','[email protected]',2147483647,'Buy omnia vis mereri pecuniam. https://newsworld.elk.pl'),(0,2977,'Crytoron','[email protected]',2147483647,'Unum tantum click potest crescere tua pecunia vere ieiunium. https://newsworld.elk.pl'),(0,2978,'RonUphon','[email protected]',2147483647,'Online reditus est facillimus mores ut vos somnium adveho verus. https://newsworld.elk.pl'),(0,2979,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. https://newsworld.elk.pl'),(0,2980,'Crytoron','[email protected]',2147483647,'Online financial Robot est clavem ad successus. https://newsworld.elk.pl'),(0,2981,'RonUphon','[email protected]',2147483647,'Quisque mereretur, quantum vult, nunc. https://newsworld.elk.pl'),(0,2982,'RonUphon','[email protected]',2147483647,'Invenire de facillimum pecuniam victum. https://newsworld.elk.pl'),(0,2983,'RonUphon','[email protected]',2147483647,'Non tamen nummorum? Reficere nunc! https://newsworld.elk.pl'),(0,2984,'Crytoron','[email protected]',2147483647,'Pecuniam, domi hoc frigus hiemis. https://newsworld.elk.pl'),(0,2985,'RonUphon','[email protected]',2147483647,'Invenire de ieiunas via a financial libertatem. https://newsworld.elk.pl');
/*!40000 ALTER TABLE `contactus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `department`
--
DROP TABLE IF EXISTS `department`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `department` (
`clinic_id` int(11) NOT NULL,
`department_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`department_code` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`department_id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `department`
--
LOCK TABLES `department` WRITE;
/*!40000 ALTER TABLE `department` DISABLE KEYS */;
INSERT INTO `department` VALUES (0,2,'Bursar','aed7c689d676c7c'),(10001,5,'Vellamal School','Bangalore'),(0,9,'Medical department','790ec4cc00f2407'),(0,10,'Nursing','e70ecb106784a0e'),(0,11,'Pharmacy','91d66b0e7b54492'),(0,12,'aa','507375a5fb185fc');
/*!40000 ALTER TABLE `department` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `designation`
--
DROP TABLE IF EXISTS `designation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `designation` (
`clinic_id` int(11) NOT NULL,
`designation_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`exhibitortype_id` int(11) NOT NULL,
PRIMARY KEY (`designation_id`)
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `designation`
--
LOCK TABLES `designation` WRITE;
/*!40000 ALTER TABLE `designation` DISABLE KEYS */;
INSERT INTO `designation` VALUES (0,5,'Tutorial',2),(0,4,'Udemy',2),(0,6,'Student',2),(0,14,'Anesthetics',9),(0,15,'Cardiology',9),(0,16,'ENT(ear,nose,throat)',9),(0,17,'neonatal unit',9),(0,18,'dental',9),(0,19,'Medical-Surgical Nurses',10),(0,20,'Critical Care Nurse',10),(0,21,'Pain Management Nurse',10),(0,22,'Rheumatology Nurse',10),(0,23,'procurement',11),(0,24,'storage',11),(0,25,'compounding',11),(0,26,'dispensing',11),(0,27,'manufacturing',11),(0,28,'testing',11),(0,29,'sd',12),(0,30,'as',12),(0,31,'Anesthetics',2);
/*!40000 ALTER TABLE `designation` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `doctor`
--
DROP TABLE IF EXISTS `doctor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `doctor` (
`doctor_id` int(10) NOT NULL AUTO_INCREMENT,
`clinic_id` int(10) NOT NULL,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`role` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`doctor_number` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`birthday` date NOT NULL,
`sex` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`religion` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`blood_group` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`address` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`phone` int(11) NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`facebook` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`twitter` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`googleplus` longtext CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL,
`linkedin` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`qualification` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`marital_status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`file_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`department_id` int(11) NOT NULL,
`designation_id` int(11) NOT NULL,
`date_of_joining` date NOT NULL,
`joining_salary` int(11) NOT NULL,
`status` int(11) NOT NULL,
`date_of_leaving` date NOT NULL,
`bank_id` int(11) NOT NULL,
`login_status` int(11) NOT NULL,
`unique_id` varchar(200) NOT NULL,
PRIMARY KEY (`doctor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `doctor`
--
LOCK TABLES `doctor` WRITE;
/*!40000 ALTER TABLE `doctor` DISABLE KEYS */;
INSERT INTO `doctor` VALUES (1,10001,'abcd','1','e773fa7','2018-08-19','male','Hindu','o+','#01 5th cross, Vinayaka nagar',999878790,'[email protected]','sasa','#','#','[email protected]','bcom','Single','-b1.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'2021-06-10',90,1,'2021-10-08',10,0,'0'),(2,10001,'Dr.dolly','1','e297714','2018-08-19','female','Hindu','o+','tumkur',90908780,'[email protected]','sasa','#','#','[email protected]','bcom','Single','-b1.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'2021-06-10',21212,1,'2021-10-27',11,0,'0'),(4,0,'hemavathi','1','32aaae1','2018-08-03','female','Hindu','o+','tumkur',999878790,'[email protected]','sasa','#','#','[email protected]','bcom','Married','b1.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'2021-07-10',90909,1,'2021-10-24',20,0,'0'),(5,10001,'Dr.doc-p','1','e4ac11f','2018-08-19','male','Hindu','o+','#01 5th cross, Vinayaka nagar',999878790,'[email protected]','sasa','#','#','[email protected]','bcom','Married','-b1.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'2021-08-10',9090,1,'2021-10-28',21,0,'d-6152ca6107d5a8.84445431'),(6,10001,'dr.demo','1','31e964b','2018-08-19','male','Hindu','o+','#01 5th cross, Vinayaka nagar',999878790,'[email protected]','sasa','#','#','[email protected]','bcom','Married','-b1.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'2021-11-10',909,1,'2021-10-30',22,1,'0'),(7,10001,'asha','1','1dd7e18','2018-08-19','female','Hindu','o+','#01 5th cross, Vinayaka nagar',999878790,'[email protected]','#','#','#','[email protected]','bcom','Select Marital Status','grocery-shop-interior-design-services-500x500.jpeg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,0,'2021-11-26',121212,1,'2021-11-26',23,0,''),(8,10001,'DrKiran','1','5a29281','1991-02-21','male','chirstian','o+','thmkur',908765456,'[email protected]','#','#','#','[email protected]','be','Married','2.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,0,'2021-11-26',121233,1,'2021-11-11',24,0,'t-619cc0eb8326f1.03804417'),(9,10001,'DrHema','1','3fc2ec8','2018-08-19','female','Hindu','A+','thumkur',908787909,'[email protected]','#','#','#','[email protected]','mbbs','Married','2.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',11,0,'2021-11-11',90909,1,'2021-11-26',25,0,'t-619cc19527c611.41117264');
/*!40000 ALTER TABLE `doctor` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `doctor_type`
--
DROP TABLE IF EXISTS `doctor_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `doctor_type` (
`clinic_id` int(11) NOT NULL,
`doctor_type_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`doctor_type` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`doctor_id` int(11) NOT NULL,
PRIMARY KEY (`doctor_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `doctor_type`
--
LOCK TABLES `doctor_type` WRITE;
/*!40000 ALTER TABLE `doctor_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `doctor_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dormitory`
--
DROP TABLE IF EXISTS `dormitory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `dormitory` (
`school_id` int(11) NOT NULL,
`dormitory_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`hostel_room_id` int(11) NOT NULL,
`hostel_category_id` int(11) NOT NULL,
`capacity` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`dormitory_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dormitory`
--
LOCK TABLES `dormitory` WRITE;
/*!40000 ALTER TABLE `dormitory` DISABLE KEYS */;
INSERT INTO `dormitory` VALUES (0,2,'Wiz Hostel',2,3,'200','Address for hostel location','Address for hostel location');
/*!40000 ALTER TABLE `dormitory` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `enquiry`
--
DROP TABLE IF EXISTS `enquiry`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `enquiry` (
`school_id` int(11) NOT NULL,
`enquiry_id` int(11) NOT NULL AUTO_INCREMENT,
`category` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`mobile` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`purpose` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`whom_to_meet` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`content` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`enquiry_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `enquiry`
--
LOCK TABLES `enquiry` WRITE;
/*!40000 ALTER TABLE `enquiry` DISABLE KEYS */;
/*!40000 ALTER TABLE `enquiry` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `enquiry_category`
--
DROP TABLE IF EXISTS `enquiry_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `enquiry_category` (
`school_id` int(11) NOT NULL,
`enquiry_category_id` int(11) NOT NULL AUTO_INCREMENT,
`category` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`purpose` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`whom` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`enquiry_category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `enquiry_category`
--
LOCK TABLES `enquiry_category` WRITE;
/*!40000 ALTER TABLE `enquiry_category` DISABLE KEYS */;
INSERT INTO `enquiry_category` VALUES (0,3,'This is for ID 3 information.','Payment','Tutorial'),(0,4,'This is Udemy Information','School fees information','Just edited now');
/*!40000 ALTER TABLE `enquiry_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `events`
--
DROP TABLE IF EXISTS `events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `events` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`start_event` datetime NOT NULL,
`end_event` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `events`
--
LOCK TABLES `events` WRITE;
/*!40000 ALTER TABLE `events` DISABLE KEYS */;
/*!40000 ALTER TABLE `events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exam`
--
DROP TABLE IF EXISTS `exam`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exam` (
`school_id` int(11) NOT NULL,
`exam_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`comment` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`timestamp` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`exam_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exam`
--
LOCK TABLES `exam` WRITE;
/*!40000 ALTER TABLE `exam` DISABLE KEYS */;
INSERT INTO `exam` VALUES (0,1,'First Term Examination','First Term','2019-10-30');
/*!40000 ALTER TABLE `exam` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exam_question`
--
DROP TABLE IF EXISTS `exam_question`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exam_question` (
`school_id` int(11) NOT NULL,
`exam_question_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`teacher_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`subject_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`class_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`file_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`file_type` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`timestamp` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`exam_question_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exam_question`
--
LOCK TABLES `exam_question` WRITE;
/*!40000 ALTER TABLE `exam_question` DISABLE KEYS */;
/*!40000 ALTER TABLE `exam_question` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exhibition`
--
DROP TABLE IF EXISTS `exhibition`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exhibition` (
`exhibition_id` int(11) NOT NULL AUTO_INCREMENT,
`exhibition_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`location` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` int(11) NOT NULL,
`exhibition_email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`language` mediumtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`text_align` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`session` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`login_status` int(11) DEFAULT NULL,
`level` int(11) DEFAULT NULL,
PRIMARY KEY (`exhibition_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20004 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exhibition`
--
LOCK TABLES `exhibition` WRITE;
/*!40000 ALTER TABLE `exhibition` DISABLE KEYS */;
INSERT INTO `exhibition` VALUES (20001,'Axis bank','[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','tumkur',999878790,'[email protected]','english','left-to-right','2021-2022',1,NULL),(20002,'HDFC','[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','kerela',98709823,'[email protected]','english','left-to-right','2021-2022',1,NULL),(20003,'AU bank','[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','tumkur',90877890,'[email protected]','english','left-to-right','2020-2021',1,NULL);
/*!40000 ALTER TABLE `exhibition` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exhibition_logo`
--
DROP TABLE IF EXISTS `exhibition_logo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exhibition_logo` (
`exhibition_id` int(11) NOT NULL,
`exhibition_logo_id` int(11) NOT NULL AUTO_INCREMENT,
`exhibition_logo` longtext NOT NULL,
PRIMARY KEY (`exhibition_logo_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exhibition_logo`
--
LOCK TABLES `exhibition_logo` WRITE;
/*!40000 ALTER TABLE `exhibition_logo` DISABLE KEYS */;
INSERT INTO `exhibition_logo` VALUES (20001,1,'logo.png'),(20003,2,'feature1.png'),(20002,4,'logo.png');
/*!40000 ALTER TABLE `exhibition_logo` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exhibition_settings`
--
DROP TABLE IF EXISTS `exhibition_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exhibition_settings` (
`exhibition_id` int(11) NOT NULL,
`exhibition_setting_id` int(11) NOT NULL AUTO_INCREMENT,
`primary_color` longtext NOT NULL,
`secondary_color` longtext NOT NULL,
`type` longtext NOT NULL,
`admin_id` int(11) NOT NULL,
PRIMARY KEY (`exhibition_setting_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exhibition_settings`
--
LOCK TABLES `exhibition_settings` WRITE;
/*!40000 ALTER TABLE `exhibition_settings` DISABLE KEYS */;
INSERT INTO `exhibition_settings` VALUES (10001,1,'red','cream','',0),(20002,2,'blue-hdfc','blue','',0),(20001,3,'red','cream','',0),(20003,4,'blue-dark','blue','',0),(20001,5,'green','light-green','',0);
/*!40000 ALTER TABLE `exhibition_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exhibitor`
--
DROP TABLE IF EXISTS `exhibitor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exhibitor` (
`exhibitor_id` int(11) NOT NULL AUTO_INCREMENT,
`exhibition_id` int(11) DEFAULT NULL,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`role` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`exhibitor_number` int(11) DEFAULT NULL,
`birthday` date DEFAULT NULL,
`sex` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`religion` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`blood_group` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` int(11) NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`facebook` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`twitter` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`googleplus` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`linkedin` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`qualification` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`marital_status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`file_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`exhibitortype_id` int(11) NOT NULL,
`designation_id` int(11) DEFAULT NULL,
`date_of_joining` date DEFAULT NULL,
`joining_salary` int(11) DEFAULT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`date_of_leaving` int(11) DEFAULT NULL,
`bank_id` int(11) NOT NULL,
`login_status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`unique_id` int(11) NOT NULL,
PRIMARY KEY (`exhibitor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exhibitor`
--
LOCK TABLES `exhibitor` WRITE;
/*!40000 ALTER TABLE `exhibitor` DISABLE KEYS */;
INSERT INTO `exhibitor` VALUES (2,NULL,'Ravi','1',17,'2018-08-10','male','Hindu','o+','#01 5th cross, Vinayaka nagar',90908780,'[email protected]','#','#','#','#','bcom','Married','girl.jpg','8cb2237d0679ca88db6464eac60da96345513964',11,0,'2022-01-14',120000,'1',2022,32,'0',0),(3,NULL,'Ramu','1',238,'2015-06-20','male','Hindu','o+','#01 5th cross, Vinayaka nagar',999878790,'[email protected]','#','#','#','#','bcom','Single','girl.png','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',5,0,'2022-01-21',100000,'1',2022,33,'1',0),(4,NULL,'exhibitor_preethi','1',2147483647,'2018-08-19','female','Hindu','o+','raichur',999878790,'[email protected]','#','#','#','#','bca','Single','girl.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',10,0,'2022-01-21',900000,'1',2022,34,'1',0),(5,NULL,'exhibitor_anil','1',9948524,'2005-02-02','male','Hindu','o+','Raichur',999878790,'[email protected]','#','#','#','#','bs','Single','advertisement.webp','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',10,0,'2022-01-21',10000,'1',2022,35,'0',0),(6,NULL,'exhi_pawan',NULL,9250,'2003-06-11','male','Hindu','o+','Bellary',999878790,'[email protected]','#','#','#','#','bcom','Single','728.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,NULL,'2022-01-07',12000,'1',2022,37,'',0),(7,20001,'Ax-exhibitor1',NULL,NULL,NULL,'female',NULL,NULL,'Tumkur',90887877,'[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',3,NULL,NULL,NULL,'1',NULL,45,'1',0),(8,20002,'hdfc-exhibitor2',NULL,NULL,NULL,'male',NULL,NULL,'Kerela',98709987,'[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',3,NULL,NULL,NULL,'1',NULL,46,'0',0),(9,20003,'au_participant1',NULL,NULL,NULL,'female',NULL,NULL,'bangalore',908778899,'[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',4,NULL,NULL,NULL,'1',NULL,47,'0',0);
/*!40000 ALTER TABLE `exhibitor` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exhibitor_advertisement`
--
DROP TABLE IF EXISTS `exhibitor_advertisement`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exhibitor_advertisement` (
`exhibition_id` int(11) NOT NULL,
`exhibitor_id` int(11) NOT NULL,
`exhibitor_advertisement_id` int(11) NOT NULL AUTO_INCREMENT,
`file_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`advertisement_content` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`exhibitor_advertisement_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 `exhibitor_advertisement`
--
LOCK TABLES `exhibitor_advertisement` WRITE;
/*!40000 ALTER TABLE `exhibitor_advertisement` DISABLE KEYS */;
INSERT INTO `exhibitor_advertisement` VALUES (0,0,1,'Add a heading (3).png',0,'add about xyz'),(0,0,3,'advertisement.webp',0,'qwqewe');
/*!40000 ALTER TABLE `exhibitor_advertisement` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exhibitortype`
--
DROP TABLE IF EXISTS `exhibitortype`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `exhibitortype` (
`exhibition_id` int(11) NOT NULL,
`exhibitortype_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`exhibitortype_code` int(11) NOT NULL,
PRIMARY KEY (`exhibitortype_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 `exhibitortype`
--
LOCK TABLES `exhibitortype` WRITE;
/*!40000 ALTER TABLE `exhibitortype` DISABLE KEYS */;
INSERT INTO `exhibitortype` VALUES (0,2,'abcd',5),(0,3,'sponsor',0),(0,4,'platinum_sponsor',0),(0,5,'normal_exhibitor',234);
/*!40000 ALTER TABLE `exhibitortype` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `expense_category`
--
DROP TABLE IF EXISTS `expense_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `expense_category` (
`school_id` int(11) NOT NULL,
`expense_category_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`expense_category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `expense_category`
--
LOCK TABLES `expense_category` WRITE;
/*!40000 ALTER TABLE `expense_category` DISABLE KEYS */;
INSERT INTO `expense_category` VALUES (0,5,'Reading Books.');
/*!40000 ALTER TABLE `expense_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `general_message`
--
DROP TABLE IF EXISTS `general_message`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `general_message` (
`school_id` int(11) NOT NULL,
`general_message_id` int(11) NOT NULL AUTO_INCREMENT,
`message` longtext NOT NULL,
`user_id` varchar(200) NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`general_message_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `general_message`
--
LOCK TABLES `general_message` WRITE;
/*!40000 ALTER TABLE `general_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `general_message` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `group`
--
DROP TABLE IF EXISTS `group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `group` (
`clinic_id` int(11) NOT NULL,
`group_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`doctor_id` int(11) NOT NULL,
PRIMARY KEY (`group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `group`
--
LOCK TABLES `group` WRITE;
/*!40000 ALTER TABLE `group` DISABLE KEYS */;
INSERT INTO `group` VALUES (10001,2,'Infectious_disease',5),(10001,3,'Non_infectious_disease',6),(10001,4,'Deficiency_disease',2),(10001,6,'abcd',2);
/*!40000 ALTER TABLE `group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `health`
--
DROP TABLE IF EXISTS `health`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `health` (
`clinic_id` int(11) DEFAULT NULL,
`health_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`patient_id` int(11) NOT NULL,
`doctor_id` int(11) NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`file_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`file_type` int(11) NOT NULL,
`timestamp` int(11) NOT NULL,
PRIMARY KEY (`health_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 `health`
--
LOCK TABLES `health` WRITE;
/*!40000 ALTER TABLE `health` DISABLE KEYS */;
INSERT INTO `health` VALUES (NULL,4,'dadd',4,4,'addd','theme.txt',0,2018),(NULL,5,'precautions to reduce eye pain',6,4,'precautions to reduce eye pain','theme.txt',0,2018);
/*!40000 ALTER TABLE `health` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hostel`
--
DROP TABLE IF EXISTS `hostel`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `hostel` (
`school_id` int(11) NOT NULL,
`hostel_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`hostel_number` longtext NOT NULL,
`birthday` longtext NOT NULL,
`sex` longtext NOT NULL,
`religion` longtext NOT NULL,
`blood_group` longtext NOT NULL,
`address` longtext NOT NULL,
`phone` longtext NOT NULL,
`email` longtext NOT NULL,
`facebook` longtext NOT NULL,
`twitter` longtext NOT NULL,
`googleplus` longtext NOT NULL,
`linkedin` longtext NOT NULL,
`qualification` longtext NOT NULL,
`marital_status` longtext NOT NULL,
`file_name` longtext NOT NULL,
`password` longtext NOT NULL,
`login_status` longtext NOT NULL,
PRIMARY KEY (`hostel_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hostel`
--
LOCK TABLES `hostel` WRITE;
/*!40000 ALTER TABLE `hostel` DISABLE KEYS */;
INSERT INTO `hostel` VALUES (10001,15,'Hostel Udemy','78e39debb4','2019-08-27','Male','Muslim','o+','This is the new address for the new hostel manager.','+912345667','[email protected]','facebook','twitter','googleplus','linkedin','PhD','Married','Welcome to Optimum Linkup.docx','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','0'),(10001,16,'Hostel One','ee84aac60b','2021-09-01','Male','hindu','O+','Bangalore','98123456745','[email protected]','#','#','#','#','MCA','Married','050e72bf-c904-4444-b311-6bcb4e636245.jfif','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','');
/*!40000 ALTER TABLE `hostel` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hostel_category`
--
DROP TABLE IF EXISTS `hostel_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `hostel_category` (
`school_id` int(11) NOT NULL,
`hostel_category_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`hostel_category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hostel_category`
--
LOCK TABLES `hostel_category` WRITE;
/*!40000 ALTER TABLE `hostel_category` DISABLE KEYS */;
INSERT INTO `hostel_category` VALUES (0,2,'Female','This is for female only.'),(0,3,'Male','This is for male only. Female are not allowed.');
/*!40000 ALTER TABLE `hostel_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hostel_room`
--
DROP TABLE IF EXISTS `hostel_room`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `hostel_room` (
`school_id` int(11) NOT NULL,
`hostel_room_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`room_type` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`num_bed` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`cost_bed` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`hostel_room_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hostel_room`
--
LOCK TABLES `hostel_room` WRITE;
/*!40000 ALTER TABLE `hostel_room` DISABLE KEYS */;
INSERT INTO `hostel_room` VALUES (0,2,'Room One','Single','2','5000','This is for the big guys among us.');
/*!40000 ALTER TABLE `hostel_room` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `house`
--
DROP TABLE IF EXISTS `house`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `house` (
`school_id` int(11) NOT NULL,
`house_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`house_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `house`
--
LOCK TABLES `house` WRITE;
/*!40000 ALTER TABLE `house` DISABLE KEYS */;
INSERT INTO `house` VALUES (0,1,'Purple House','This is for students in purple house');
/*!40000 ALTER TABLE `house` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `hrm`
--
DROP TABLE IF EXISTS `hrm`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `hrm` (
`school_id` int(11) NOT NULL,
`hrm_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`hrm_number` longtext NOT NULL,
`birthday` longtext NOT NULL,
`sex` longtext NOT NULL,
`religion` longtext NOT NULL,
`blood_group` longtext NOT NULL,
`address` longtext NOT NULL,
`phone` longtext NOT NULL,
`email` longtext NOT NULL,
`facebook` longtext NOT NULL,
`twitter` longtext NOT NULL,
`googleplus` longtext NOT NULL,
`linkedin` longtext NOT NULL,
`qualification` longtext NOT NULL,
`marital_status` longtext NOT NULL,
`file_name` longtext NOT NULL,
`password` longtext NOT NULL,
`login_status` longtext NOT NULL,
PRIMARY KEY (`hrm_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `hrm`
--
LOCK TABLES `hrm` WRITE;
/*!40000 ALTER TABLE `hrm` DISABLE KEYS */;
INSERT INTO `hrm` VALUES (10001,15,'Human Bangalore','414bbf2d2a','2019-08-27','Male','Christianity','B+','This is the newly added human resources manager address','+912345667','[email protected]','facebook','twitter','googleplus','linkedin','PhD','Married','index.html','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','0'),(10001,16,'Resh','d1e20fa050','2021-09-01','Male','hindu','O+','Bangalore','9787377862','[email protected]','#','#','#','#','MCA','Married','050e72bf-c904-4444-b311-6bcb4e636245.jfif','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','');
/*!40000 ALTER TABLE `hrm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `invoice`
--
DROP TABLE IF EXISTS `invoice`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `invoice` (
`clinic_id` int(11) NOT NULL,
`invoice_id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_number` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`patient_id` int(11) NOT NULL,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`amount` int(11) NOT NULL,
`discount` int(11) NOT NULL,
`amount_paid` int(11) NOT NULL,
`due` int(11) NOT NULL,
`creation_timestamp` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`payment_method` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`status` int(11) NOT NULL,
`year` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`invoice_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invoice`
--
LOCK TABLES `invoice` WRITE;
/*!40000 ALTER TABLE `invoice` DISABLE KEYS */;
INSERT INTO `invoice` VALUES (0,2,'742593INV2019',45,'Another Part payment for eLibrary','Another Part payment for eLibrary.',7000,0,6200,800,'2019-11-12','1',2,'2019-2020');
/*!40000 ALTER TABLE `invoice` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jitsi`
--
DROP TABLE IF EXISTS `jitsi`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `jitsi` (
`exhibition_id` int(11) DEFAULT NULL,
`jitsi_id` int(11) NOT NULL AUTO_INCREMENT,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`visitor_id` int(11) NOT NULL,
`patient_id` int(11) NOT NULL,
`class_id` int(11) DEFAULT NULL,
`section_id` int(11) DEFAULT NULL,
`meeting-date` int(11) NOT NULL,
`start_time` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`end_time` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_id` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`status` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`room` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`publish_date` int(11) NOT NULL,
PRIMARY KEY (`jitsi_id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jitsi`
--
LOCK TABLES `jitsi` WRITE;
/*!40000 ALTER TABLE `jitsi` DISABLE KEYS */;
INSERT INTO `jitsi` VALUES (NULL,40,'test p','hi testing ',2,0,NULL,NULL,1653933600,'03:20','03:30','exhibitor-3','live','148bf691ed9ea5a65e594186bfd0bd0c15ccaa6969',1653933600),(NULL,41,'meeet','weeeeeeere',2,0,NULL,NULL,1658426400,'13:14','14:14','exhibitor-3','live','28d4708f107161f14eb133843740f4c280d9b7f356',1658426400),(20003,42,'meet1','qwert',5,0,NULL,NULL,1663092000,'03:00','07:00','exhibitor-9','live','03a5c47e378125d8c131d802fc45c5c7bc82fd43af',1663005600),(20003,43,'meety','mnjk',5,0,NULL,NULL,1662487200,'02:00','04:00','exhibitor-9','live','96dcb8ca208902613949a3cddd1b8bd867ecca0259',1663005600),(20001,44,'mpmeet','nmnmn',6,0,NULL,NULL,1663610400,'05:00','07:00','admin-7','live','0257bd1628a885241b317010ca4ee1a766419bf4b5',1663610400),(20001,45,'kmeet','discuss',6,0,NULL,NULL,1663696800,'02:00','03:00','admin-7','live','e0ecd89f8e7a32b7c554539dfd83c2c7ed759fdf4a',1663696800),(20002,46,'lkmeet','klop',6,0,NULL,NULL,1663696800,'03:00','04:00','admin-8','live','f9127f406a5c4153de7e731e6f3d4fca93624bb7c1',1663696800),(20001,47,'popop','popop',6,0,NULL,NULL,1666029600,'11:01','12:55','admin-7','live','c3bc02446c63cc441ae99c907805bc8650f2419610',1666029600),(20001,48,'business meeting','discuss annual gross net profit',1,0,NULL,NULL,1666807200,'05:00','07:00','admin-7','live','bf3223b05c5683dcce581380ac15cfedb8af3f076c',1666807200);
/*!40000 ALTER TABLE `jitsi` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `language`
--
DROP TABLE IF EXISTS `language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `language` (
`school_id` int(11) NOT NULL,
`phrase_id` int(11) NOT NULL AUTO_INCREMENT,
`phrase` longtext NOT NULL,
`english` longtext DEFAULT NULL,
`arabic` longtext DEFAULT NULL,
`french` longtext DEFAULT NULL,
`korea` longtext DEFAULT NULL,
`Tamil` longtext DEFAULT NULL,
`Hindi` longtext DEFAULT NULL,
PRIMARY KEY (`phrase_id`)
) ENGINE=MyISAM AUTO_INCREMENT=40559 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `language`
--
LOCK TABLES `language` WRITE;
/*!40000 ALTER TABLE `language` DISABLE KEYS */;
INSERT INTO `language` VALUES (0,1,'Manage Language','Manage Language','إدارة اللغة',NULL,NULL,NULL,NULL),(0,2,'active language','Active Language','اللغة النشطة',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `language` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `language_list`
--
DROP TABLE IF EXISTS `language_list`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `language_list` (
`school_id` int(11) NOT NULL,
`language_list_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`db_field` varchar(300) DEFAULT NULL,
`status` varchar(20) DEFAULT NULL,
PRIMARY KEY (`language_list_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `language_list`
--
LOCK TABLES `language_list` WRITE;
/*!40000 ALTER TABLE `language_list` DISABLE KEYS */;
INSERT INTO `language_list` VALUES (0,1,'English','english','ok'),(0,2,'Arabic','arabic','ok');
/*!40000 ALTER TABLE `language_list` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `leave`
--
DROP TABLE IF EXISTS `leave`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `leave` (
`school_id` int(11) NOT NULL,
`leave_id` int(11) NOT NULL AUTO_INCREMENT,
`leave_code` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`teacher_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`start_date` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`end_date` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`reason` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`leave_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `leave`
--
LOCK TABLES `leave` WRITE;
/*!40000 ALTER TABLE `leave` DISABLE KEYS */;
/*!40000 ALTER TABLE `leave` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `librarian`
--
DROP TABLE IF EXISTS `librarian`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `librarian` (
`school_id` int(11) NOT NULL,
`librarian_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`librarian_number` longtext NOT NULL,
`birthday` longtext NOT NULL,
`sex` longtext NOT NULL,
`religion` longtext NOT NULL,
`blood_group` longtext NOT NULL,
`address` longtext NOT NULL,
`phone` longtext NOT NULL,
`email` longtext NOT NULL,
`facebook` longtext NOT NULL,
`twitter` longtext NOT NULL,
`googleplus` longtext NOT NULL,
`linkedin` longtext NOT NULL,
`qualification` longtext NOT NULL,
`marital_status` longtext NOT NULL,
`file_name` longtext NOT NULL,
`password` longtext NOT NULL,
`login_status` longtext NOT NULL,
PRIMARY KEY (`librarian_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `librarian`
--
LOCK TABLES `librarian` WRITE;
/*!40000 ALTER TABLE `librarian` DISABLE KEYS */;
INSERT INTO `librarian` VALUES (10001,14,'librarian one','de4c5b5100','2021-09-01','Male','hindu','O+','Lorem Ipsum','088848 52372','[email protected]','#','#','#','#','MCA','Married','back-school-background-with-school-supplies-copy-space.jpg','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','1'),(10001,15,'Librarian Two','ade1b4aebf','2021-09-01','Male','hindu','O+','Lorem Ipsum','9787377862','[email protected]','#','#','#','#','MCA','Married','cryptocurrency-dashboard.jpg.webp','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',''),(10001,16,'Librarian Three','514d2a3bf2','2021-09-01','Male','hindu','O+','Lorem Ipsum','9787377862','[email protected]','#','#','#','#','MCA','Married','050e72bf-c904-4444-b311-6bcb4e636245.jfif','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','1');
/*!40000 ALTER TABLE `librarian` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `mark`
--
DROP TABLE IF EXISTS `mark`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `mark` (
`school_id` int(11) NOT NULL,
`mark_id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL,
`subject_id` int(11) NOT NULL,
`exam_id` int(11) NOT NULL,
`class_id` int(11) NOT NULL,
`class_score1` int(11) NOT NULL,
`class_score2` int(11) NOT NULL,
`class_score3` int(11) NOT NULL,
`exam_score` int(11) NOT NULL,
`comment` longtext NOT NULL,
PRIMARY KEY (`mark_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mark`
--
LOCK TABLES `mark` WRITE;
/*!40000 ALTER TABLE `mark` DISABLE KEYS */;
INSERT INTO `mark` VALUES (0,1,45,5,1,2,10,9,8,70,'Good performance.'),(0,2,45,4,1,2,10,7,9,69,'Excellent performance.');
/*!40000 ALTER TABLE `mark` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `material`
--
DROP TABLE IF EXISTS `material`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `material` (
`clinic_id` int(11) DEFAULT NULL,
`material_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`patient_id` int(11) NOT NULL,
`class_id` int(11) DEFAULT NULL,
`subject_id` int(11) DEFAULT NULL,
`teacher_id` int(11) DEFAULT NULL,
`doctor_id` int(11) NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`file_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`file_type` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`timestamp` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`material_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `material`
--
LOCK TABLES `material` WRITE;
/*!40000 ALTER TABLE `material` DISABLE KEYS */;
INSERT INTO `material` VALUES (NULL,4,'precautions to reduce eye pain',3,NULL,NULL,NULL,4,'PRECAUTIONS','theme.txt','pdf','2018-08-19');
/*!40000 ALTER TABLE `material` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `newuser`
--
DROP TABLE IF EXISTS `newuser`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `newuser` (
`clinic_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`gender` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`blood_group` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` int(11) NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `newuser`
--
LOCK TABLES `newuser` WRITE;
/*!40000 ALTER TABLE `newuser` DISABLE KEYS */;
INSERT INTO `newuser` VALUES (0,1,'abcd','male','o+',999878790,'[email protected]','1234','#01 5th cross, Vinayaka nagar'),(0,2,'','','',0,'[email protected]','1234',''),(0,3,'Akshata','female','o+',909909099,'[email protected]',NULL,'Mumbai'),(0,5,'shilpa s','female','o+',2147483647,'[email protected]',NULL,'Begur'),(0,6,'karthik','male','o+',999878790,'[email protected]',NULL,'opop');
/*!40000 ALTER TABLE `newuser` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `noticeboard`
--
DROP TABLE IF EXISTS `noticeboard`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `noticeboard` (
`school_id` int(11) NOT NULL,
`noticeboard_id` int(11) NOT NULL AUTO_INCREMENT,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`location` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`timestamp` int(11) NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`noticeboard_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `noticeboard`
--
LOCK TABLES `noticeboard` WRITE;
/*!40000 ALTER TABLE `noticeboard` DISABLE KEYS */;
INSERT INTO `noticeboard` VALUES (0,3,'Second meeting coming up soon','Udemy Forum',1575136800,'The meeting is coming up soon. Ensure you are fully prepared.'),(0,4,'Parent Teacher Association Meeting.','Ontario Location',1575050400,'This is the new updated information as regards the meeting.');
/*!40000 ALTER TABLE `noticeboard` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `parent`
--
DROP TABLE IF EXISTS `parent`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `parent` (
`school_id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`profession` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`login_status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`parent_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `parent`
--
LOCK TABLES `parent` WRITE;
/*!40000 ALTER TABLE `parent` DISABLE KEYS */;
INSERT INTO `parent` VALUES (10001,5,'Parent One','[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','9787377862','Bangalore','hr',''),(10001,6,'parenttwo','[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','088848 52372','Bangalore','Manager','');
/*!40000 ALTER TABLE `parent` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `patient`
--
DROP TABLE IF EXISTS `patient`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `patient` (
`clinic_id` int(11) NOT NULL,
`patient_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`group_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`sub_group_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`birthday` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`age` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`place_birth` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`sex` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`m_tongue` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`religion` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`blood_group` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`city` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`state` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`nationality` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`ps_attended` mediumtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`ps_address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`ps_purpose` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`class_study` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`date_of_leaving` date DEFAULT NULL,
`am_date` date DEFAULT NULL,
`tran_cert` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`dob_cert` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci DEFAULT NULL,
`mark_join` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`physical_h` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci DEFAULT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`father_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`mother_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`class_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`section_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`parent_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`roll` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`transport_id` int(11) DEFAULT NULL,
`dormitory_id` int(11) DEFAULT NULL,
`house_id` int(11) DEFAULT NULL,
`patient_category_id` int(11) DEFAULT NULL,
`club_id` int(11) DEFAULT NULL,
`session` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`card_number` int(11) NOT NULL,
`issue_date` date NOT NULL,
`expire_date` date NOT NULL,
`dormitory_room_number` int(11) NOT NULL,
`more_entries` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci NOT NULL,
`login_status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`unique_id` varchar(200) NOT NULL,
PRIMARY KEY (`patient_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 `patient`
--
LOCK TABLES `patient` WRITE;
/*!40000 ALTER TABLE `patient` DISABLE KEYS */;
INSERT INTO `patient` VALUES (10001,1,'kinu','','','10/07/2021','','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]','av school','#01 5th cross, Vinayaka nagar','mmmm','4','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8','16','4','ee3ab75',0,2,1,NULL,1,'2021-2022',0,'0000-00-00','0000-00-00',0,'','','0'),(10001,2,'abc','','','10/08/2021','','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'ea8a727',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','','0'),(10001,3,'patient','','','10/08/2021','','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'1df0064',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','0','p-6152c7c73f0b52.29106617'),(10001,4,'patient_demo','','','10/11/2021','','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'a46e790',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','0','0'),(10001,6,'deepa a','','','09/10/2003','18','bangalore','female','kanada','Hindu','o+','bangalore','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'8cb2237d0679ca88db6464eac60da96345513964',NULL,NULL,NULL,NULL,NULL,'4da1c2f',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','0','0'),(10001,11,'Priya','2','10','10/08/2014','7','bangalore','female','kanada','Hindu','A+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'559e5d5',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','','0'),(10001,12,'kiran.M','2','11','10/05/1988','33','bangalore','male','kanada','Hindu','A+','thumkur','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'3593ba3',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','','0'),(10001,13,'Amrin','3','15','10/08/2003','18','bangalore','female','kanada','chirstian','B-','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'f7fbc7c',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','0','0'),(10001,15,'poolu','','','11/02/2021','','','','','','','','','','','','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'2b4c193',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','','0'),(10001,16,'pAnu','3','','11/16/1977','44','bangalore','female','kanada','Hindu','B-','delhi','delhi','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'af79f1c',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','0','t-619cc21f725376.22995629'),(10001,17,'pdeepa','3','','11/16/2005','16','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','98709987','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'db0a5fb',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','0','t-619cc26d00f0a7.36956994'),(10001,18,'abcd','2','10','01/10/1979','43','bangalore','male','kanada','Hindu','A+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'7110eda4d09e062aa5e4a390b0a572ac0d2c0220',NULL,NULL,NULL,NULL,NULL,'7f7b4d9',NULL,NULL,NULL,NULL,NULL,'2021-2022',0,'0000-00-00','0000-00-00',0,'','','t-61efc86505e228.30317287');
/*!40000 ALTER TABLE `patient` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment`
--
DROP TABLE IF EXISTS `payment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payment` (
`school_id` int(11) NOT NULL,
`payment_id` int(11) NOT NULL AUTO_INCREMENT,
`expense_category_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`title` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`payment_type` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`invoice_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`student_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`method` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`amount` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`discount` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`timestamp` int(11) NOT NULL,
`year` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`payment_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment`
--
LOCK TABLES `payment` WRITE;
/*!40000 ALTER TABLE `payment` DISABLE KEYS */;
INSERT INTO `payment` VALUES (0,2,'5','Purchase of school reading','expense','','','2','This was purchase by the school administrator for the purpose of having reading books in the school.<br>','5000','',556644564,'2019-2020'),(0,5,'5','Purchase of school chalks','expense','','','1','Purchase of school chalks<br>','3000','',556644564,'2019-2020'),(0,6,'','Part payment for eLibrary','','2','45','1','income','5000','0',556644564,''),(0,7,'','Another payment for eLibrary','income','3','45','1','Another payment for eLibrary','2000','0',445667865,''),(0,8,'','Part payment for eLibrary','income','2','45','1','Part payment for eLibrary','1200','',556644564,''),(0,9,'5','New chalk purchased','expense','','','3','New chalk purchased<br>','1000','',556644564,'2019-2020'),(0,10,'','Another Part payment for eLibrary.','income','2','45','1','Another Part payment for eLibrary.','5000','',1576951200,'2019-2020');
/*!40000 ALTER TABLE `payment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payroll`
--
DROP TABLE IF EXISTS `payroll`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `payroll` (
`school_id` int(11) NOT NULL,
`payroll_id` int(11) NOT NULL AUTO_INCREMENT,
`payroll_code` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_id` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`allowances` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`deductions` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`date` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`payroll_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payroll`
--
LOCK TABLES `payroll` WRITE;
/*!40000 ALTER TABLE `payroll` DISABLE KEYS */;
INSERT INTO `payroll` VALUES (0,4,'c94d9d7','1','[{\"type\":\"A\",\"amount\":\"1000\"},{\"type\":\"B\",\"amount\":\"1000\"}]','[{\"type\":\"A\",\"amount\":\"200\"},{\"type\":\"B\",\"amount\":\"700\"}]','10,2019','0'),(0,3,'a8c4ae9','1','[{\"type\":\"Food\",\"amount\":\"5000\"},{\"type\":\"House\",\"amount\":\"2000\"}]','[{\"type\":\"Tax1\",\"amount\":\"1000\"},{\"type\":\"Tax2\",\"amount\":\"500\"}]','9,2019','1'),(0,5,'75c1f3d','1','[{\"type\":\"A\",\"amount\":\"2000\"},{\"type\":\"B\",\"amount\":\"1000\"}]','[{\"type\":\"A\",\"amount\":\"500\"},{\"type\":\"B\",\"amount\":\"500\"}]','12,2019','1');
/*!40000 ALTER TABLE `payroll` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `publisher`
--
DROP TABLE IF EXISTS `publisher`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `publisher` (
`school_id` int(11) NOT NULL,
`publisher_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`publisher_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `publisher`
--
LOCK TABLES `publisher` WRITE;
/*!40000 ALTER TABLE `publisher` DISABLE KEYS */;
INSERT INTO `publisher` VALUES (0,1,'Amazon.','The book is published by Amazon');
/*!40000 ALTER TABLE `publisher` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `school`
--
DROP TABLE IF EXISTS `school`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `school` (
`clinic_id` int(11) NOT NULL AUTO_INCREMENT,
`school_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`school_admin_email` varchar(200) NOT NULL,
`password` varchar(200) NOT NULL,
`location` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` varchar(200) NOT NULL,
`school_email` varchar(200) NOT NULL,
`language` varchar(100) NOT NULL,
`text_align` varchar(100) NOT NULL,
`session` varchar(200) NOT NULL,
PRIMARY KEY (`clinic_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10005 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `school`
--
LOCK TABLES `school` WRITE;
/*!40000 ALTER TABLE `school` DISABLE KEYS */;
INSERT INTO `school` VALUES (101,'GVS School','[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','Banglaore','9787377862','[email protected]','english','left-to-right','2019-2020'),(10001,'Exhibition','','','Bangalore','9875631200','','','',''),(10002,'Akshaya Vidhya Mandhir','','','Trichy','','','','',''),(10003,'Acts School','','','Andhra','','','','',''),(10004,'Chennai School','','','Vellore','','','','','');
/*!40000 ALTER TABLE `school` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `section`
--
DROP TABLE IF EXISTS `section`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `section` (
`school_id` int(11) NOT NULL,
`section_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`nick_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`class_id` int(11) NOT NULL,
`teacher_id` int(11) NOT NULL,
PRIMARY KEY (`section_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `section`
--
LOCK TABLES `section` WRITE;
/*!40000 ALTER TABLE `section` DISABLE KEYS */;
INSERT INTO `section` VALUES (0,3,'First Term','Term 1',2,1),(0,4,'Second Term','2nd',2,1),(0,5,'A Section','A Section',3,2),(0,6,'B Section','B Section',3,2),(0,7,'A Section','A Section',4,1),(0,8,'B Section','B Section',4,1),(0,9,'A Section','A Section',5,1),(0,10,'B Section','B Section',5,1),(0,11,'A Section','A',6,3),(0,12,'B Section','B',6,3),(0,13,'A Section','A',7,2),(0,14,'B Section','B',7,2),(0,15,'A Section','A',8,1),(0,16,'B Section','B',8,1);
/*!40000 ALTER TABLE `section` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `settings`
--
DROP TABLE IF EXISTS `settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `settings` (
`exhibition_id` int(11) NOT NULL,
`settings_id` int(11) NOT NULL,
`type` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`settings_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `settings`
--
LOCK TABLES `settings` WRITE;
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
INSERT INTO `settings` VALUES (20001,1,'system_name',''),(20001,2,'system_title',' Axis bank'),(20001,3,'address','546787, Kertz shopping complext, Silicon Valley, United State of America, New York city.'),(20001,4,'phone','981234111111'),(20001,6,'currency',''),(20001,7,'system_email','[email protected]'),(20001,8,'language',''),(20001,9,'text_align',''),(20001,10,'skin_colour','blue-dark'),(20001,11,'session',''),(20001,12,'footer',''),(20001,13,'paypal_email',''),(20001,14,'stripe_setting','[{\"stripe_active\":\"1\",\"testmode\":\"off\",\"secret_key\":\"test secret key\",\"public_key\":\"test public key\",\"secret_live_key\":\"live secret key\",\"public_live_key\":\"live public key\"}]'),(20001,15,'paypal_setting','[{\"paypal_active\":\"1\",\"paypal_mode\":\"sandbox\",\"sandbox_client_id\":\"client id sandbox\",\"production_client_id\":\"client - production\"}]'),(20001,16,'secondary_color','blue');
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `signup`
--
DROP TABLE IF EXISTS `signup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `signup` (
`exhibition_id` int(11) NOT NULL,
`signup_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`email` longtext NOT NULL,
`company` longtext NOT NULL,
`phone` int(11) NOT NULL,
`exhibitor_id` int(11) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`signup_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `signup`
--
LOCK TABLES `signup` WRITE;
/*!40000 ALTER TABLE `signup` DISABLE KEYS */;
INSERT INTO `signup` VALUES (0,1,'Artificial intelligence creates content for the site, no worse than a copywriter, you can also use it to write articles. 100% uniqueness :). Click Here:???? https://stanford.io/3FXszd0?h=2184489e99cbd48f726c64ca93cda4c0&','[email protected]','sxhsaiv',0,9,2000),(0,2,'Artificial intelligence creates content for the site, no worse than a copywriter, you can also use it to write articles. 100% uniqueness, scheduled posting to your Wordpress :). Click Here:???? https://stanford.io/3FXszd0?h=2184489e99cbd48f726c64ca93cda4c0&','[email protected]','o1w2vz',0,9,2000);
/*!40000 ALTER TABLE `signup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sms_settings`
--
DROP TABLE IF EXISTS `sms_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sms_settings` (
`school_id` int(11) NOT NULL,
`sms_setting_id` int(11) NOT NULL AUTO_INCREMENT,
`type` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`info` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`sms_setting_id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sms_settings`
--
LOCK TABLES `sms_settings` WRITE;
/*!40000 ALTER TABLE `sms_settings` DISABLE KEYS */;
INSERT INTO `sms_settings` VALUES (0,12,'msg91_sender_id','sender id'),(0,11,'msg91_authentication_key','msg91 auth key'),(0,10,'clickatell_apikey','clickattel api'),(0,9,'clickatell_password','clickattel paasword'),(0,8,'clickatell_username','clickattel username'),(0,13,'msg91_route','route'),(0,14,'msg91_country_code','country code'),(0,15,'active_sms_gateway','msg91');
/*!40000 ALTER TABLE `sms_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `social_category`
--
DROP TABLE IF EXISTS `social_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `social_category` (
`school_id` int(11) NOT NULL,
`social_category_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`colour` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`icon` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`social_category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `social_category`
--
LOCK TABLES `social_category` WRITE;
/*!40000 ALTER TABLE `social_category` DISABLE KEYS */;
INSERT INTO `social_category` VALUES (0,2,'Romance','danger','fa-male','This is for romance chat room'),(0,3,'Event','primary','fa-book','This is for event chat room');
/*!40000 ALTER TABLE `social_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `student`
--
DROP TABLE IF EXISTS `student`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `student` (
`clinic_id` int(11) DEFAULT NULL,
`student_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`birthday` longtext NOT NULL,
`age` longtext NOT NULL,
`place_birth` longtext NOT NULL,
`sex` longtext NOT NULL,
`m_tongue` longtext NOT NULL,
`religion` longtext NOT NULL,
`blood_group` longtext NOT NULL,
`address` longtext NOT NULL,
`city` longtext NOT NULL,
`state` longtext NOT NULL,
`nationality` longtext NOT NULL,
`phone` longtext NOT NULL,
`email` longtext NOT NULL,
`ps_attended` longtext NOT NULL,
`ps_address` longtext NOT NULL,
`ps_purpose` longtext NOT NULL,
`class_study` longtext NOT NULL,
`date_of_leaving` longtext NOT NULL,
`am_date` longtext NOT NULL,
`tran_cert` longtext NOT NULL,
`dob_cert` longtext NOT NULL,
`mark_join` longtext NOT NULL,
`physical_h` longtext NOT NULL,
`password` longtext NOT NULL,
`father_name` longtext NOT NULL,
`mother_name` longtext NOT NULL,
`class_id` longtext NOT NULL,
`section_id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL,
`roll` longtext NOT NULL,
`transport_id` int(11) NOT NULL,
`dormitory_id` int(11) NOT NULL,
`house_id` int(11) NOT NULL,
`student_category_id` int(11) NOT NULL,
`club_id` int(11) NOT NULL,
`session` longtext NOT NULL,
`card_number` longtext NOT NULL,
`issue_date` longtext NOT NULL,
`expire_date` longtext NOT NULL,
`dormitory_room_number` longtext NOT NULL,
`more_entries` longtext NOT NULL,
`login_status` longtext NOT NULL,
PRIMARY KEY (`student_id`)
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `student`
--
LOCK TABLES `student` WRITE;
/*!40000 ALTER TABLE `student` DISABLE KEYS */;
INSERT INTO `student` VALUES (0,45,'suresh','09/30/2003','16','Lagos','female','Mother Tongue','Muslim','B+','Address','City','Lagos','Canadian','+912345667','[email protected]','Previous school attended','Previous school address','Purpose Of Leaving','Class In Which Was Studying','2011-08-10','2011-08-19','Yes','Yes','Yes','No','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','2',3,4,'5bf8161',0,2,1,2,1,'2019-2020','','','','','','0'),(0,46,'Rithicka','07/29/2000','21','vellore','female','tamil','hindu','O+','HSR','Bangalore','Karnataka','India','1234567890','[email protected]','Bishop cotton','HSR','to study','1st','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','3',5,4,'d22faa3',0,2,1,2,1,'2021-2022','','','','','','0'),(0,47,'Sri','08/12/2004','17','vellore','female','tamil','hindu','O+','HSR','Bangalore','Karnataka','India','9787377862','[email protected]','Bishop cotton','HSR','to study','Nuresy','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','6',11,4,'7d8eb02',0,2,1,2,1,'2021-2022','','','','','','1'),(0,48,'archana','08/01/2008','13','vellore','female','tamil','hindu','O+','hsr layout','Bangalore','Karnataka','India','9787377861','[email protected]','Bishop cotton','hsr layout','to study','Nuresy','2011-08-19','2011-08-19','Yes','Yes','Yes','No','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','6',12,4,'3368993',0,2,1,2,1,'2021-2022','','','','','',''),(0,49,'uday','08/01/2009','12','vellore','male','tamil','hindu','O+','hsr layout','Bangalore','Karnataka','India','98123456745','[email protected]','Bishop cotton','hsr layout','to study','1st','2011-08-19','2011-08-19','Yes','Yes','Yes','No','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','7',13,4,'345c1d0',0,2,1,2,1,'2021-2022','','','','','','0'),(0,50,'vijay','08/01/2009','12','vellore','male','tamil','hindu','O+','hsr layout','Bangalore','Karnataka','India','9787377861','[email protected]','Bishop cotton','hsr layout','to study','1st','2011-08-19','2011-08-19','Yes','Yes','Yes','No','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','7',14,4,'e69d314',0,2,1,2,1,'2021-2022','','','','','','0'),(0,51,'bhavani','07/01/2010','11','vellore','female','tamil','hindu','O+','hsr layout','Bangalore','Karnataka','India','1234567890','[email protected]','Bishop cotton','hsr layout','to study','2nd','2011-08-19','2011-08-19','Yes','Yes','Yes','No','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',15,4,'e313266',0,2,1,2,1,'2021-2022','','','','','','0'),(0,52,'rekha','08/04/2006','15','vellore','female','tamil','hindu','O+','hsr layout','Bangalore','Karnataka','India','98123456745','[email protected]','Bishop cotton','hsr layout','to study','2nd','2011-08-19','2011-08-19','Yes','Yes','Yes','No','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',16,4,'2e54772',0,2,1,2,1,'2021-2022','','','','','',''),(10001,53,'Dinesh','09/17/1981','39','vellore','male','tamil','hindu','O+','Bangalore','Bangalore','Karnataka','India','9600401849','[email protected]','Bishop cotton','Bangalore','to study','2nd','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',15,6,'90fe183',0,2,1,2,1,'2021-2022','','','','','',''),(10001,54,'deepa','10/07/2021','','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]','av school','#01 5th cross, Vinayaka nagar','mmmm','4','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',16,4,'ffaa721',0,2,1,2,1,'2021-2022','','','','','','0'),(10001,55,'patient','10/07/2021','','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]','av school','#01 5th cross, Vinayaka nagar','mmmm','4','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',15,4,'8c18454',0,2,1,2,1,'2021-2022','','','','','',''),(10001,56,'patient','10/01/2021','0','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]','av school','#01 5th cross, Vinayaka nagar','mmmm','4','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',16,4,'566f426',0,2,1,2,1,'2021-2022','','','','','',''),(10001,57,'abcd','10/12/2021','0','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]','av school','#01 5th cross, Vinayaka nagar','mmmm','4','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',16,4,'03ac51a',0,2,1,2,1,'2021-2022','','','','','',''),(10001,58,'abcd','10/13/2021','0','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]','av school','#01 5th cross, Vinayaka nagar','mmmm','4','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','8',15,4,'509eda0',0,2,1,2,1,'2021-2022','','','','','',''),(10001,59,'abcd','10/04/2021','0','bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian','999878790','[email protected]','av school','#01 5th cross, Vinayaka nagar','mmmm','4','2011-08-19','2011-08-19','Yes','Yes','Yes','Yes','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','','','7',13,4,'f6842bf',0,2,1,2,1,'2021-2022','','','','','','0');
/*!40000 ALTER TABLE `student` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `student_category`
--
DROP TABLE IF EXISTS `student_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `student_category` (
`school_id` int(11) NOT NULL,
`student_category_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`description` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`student_category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `student_category`
--
LOCK TABLES `student_category` WRITE;
/*!40000 ALTER TABLE `student_category` DISABLE KEYS */;
INSERT INTO `student_category` VALUES (0,2,'Boarding Student','This is for the boarding student.');
/*!40000 ALTER TABLE `student_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sub_group`
--
DROP TABLE IF EXISTS `sub_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `sub_group` (
`clinic_id` int(11) NOT NULL,
`sub_group_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`group_id` int(11) NOT NULL,
`doctor_id` int(11) NOT NULL,
PRIMARY KEY (`sub_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sub_group`
--
LOCK TABLES `sub_group` WRITE;
/*!40000 ALTER TABLE `sub_group` DISABLE KEYS */;
INSERT INTO `sub_group` VALUES (10001,9,'common cold',2,4),(10001,10,'chicken pox',2,4),(10001,11,'coronaviruses',2,4),(10001,12,'HIV/AIDS',2,4),(10001,13,'strokes',3,5),(10001,14,'heart diseases',3,5),(10001,15,'cancer',3,5),(10001,16,'diabetes',3,5),(10001,17,'Anaemia',4,4),(10001,18,'hypothyroid(endemic goitre)',4,5),(10001,20,'abcdq',6,2);
/*!40000 ALTER TABLE `sub_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `subject`
--
DROP TABLE IF EXISTS `subject`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `subject` (
`school_id` int(11) NOT NULL,
`subject_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`class_id` int(11) NOT NULL,
`teacher_id` int(11) NOT NULL,
PRIMARY KEY (`subject_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `subject`
--
LOCK TABLES `subject` WRITE;
/*!40000 ALTER TABLE `subject` DISABLE KEYS */;
INSERT INTO `subject` VALUES (0,5,'Economics',2,1),(0,4,'Mathematics',2,1);
/*!40000 ALTER TABLE `subject` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `superadmin`
--
DROP TABLE IF EXISTS `superadmin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `superadmin` (
`superadmin_id` int(11) NOT NULL AUTO_INCREMENT,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`login_status` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`superadmin_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 `superadmin`
--
LOCK TABLES `superadmin` WRITE;
/*!40000 ALTER TABLE `superadmin` DISABLE KEYS */;
INSERT INTO `superadmin` VALUES (1,'[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220','0');
/*!40000 ALTER TABLE `superadmin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `teacher`
--
DROP TABLE IF EXISTS `teacher`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `teacher` (
`teacher_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext NOT NULL,
`role` longtext NOT NULL,
`teacher_number` longtext NOT NULL,
`birthday` longtext NOT NULL,
`sex` longtext NOT NULL,
`religion` longtext NOT NULL,
`blood_group` longtext NOT NULL,
`address` longtext NOT NULL,
`phone` longtext NOT NULL,
`email` longtext NOT NULL,
`facebook` longtext NOT NULL,
`twitter` longtext NOT NULL,
`googleplus` longtext NOT NULL,
`linkedin` longtext NOT NULL,
`qualification` longtext NOT NULL,
`marital_status` longtext NOT NULL,
`file_name` longtext NOT NULL,
`password` longtext NOT NULL,
`department_id` int(11) NOT NULL,
`designation_id` int(11) NOT NULL,
`date_of_joining` longtext NOT NULL,
`joining_salary` longtext NOT NULL,
`status` int(11) NOT NULL,
`date_of_leaving` longtext NOT NULL,
`bank_id` int(11) NOT NULL,
`login_status` longtext NOT NULL,
PRIMARY KEY (`teacher_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `teacher`
--
LOCK TABLES `teacher` WRITE;
/*!40000 ALTER TABLE `teacher` DISABLE KEYS */;
INSERT INTO `teacher` VALUES (2,'abcd','1','39a2eb0','2018-08-19','female','','','bangalore','999878790','[email protected]','','','','[email protected]','','Married','m1.png','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'0013-02-21','234000',1,'0230-03-12',5,''),(3,'hema','1','7b86806','2018-08-19','female','Hindu','o+','bangalore','999878790','[email protected]','','','','[email protected]','bcom','Married','m1.png','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'2020-03-06','120000',1,'2019-12-01',6,''),(4,'mouna','1','6824412','2018-08-19','female','Hindu','o+','bangalore','7878787','[email protected]','','','','[email protected]','bcom','Single','theme.txt','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,5,'2012-02-02','34000',1,'2021-04-12',8,''),(5,'kiran','1','b8d9cce','2018-08-19','male','Hindu','o+','bangalore','232109','[email protected]','','','','[email protected]','bcom','Single','theme.txt','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,5,'2012-02-12','290000',1,'2012-02-12',9,''),(6,'hema','1','0053bb4','2018-08-30','female','Hindu','o+','jaynagar','234543341','[email protected]','','','','[email protected]','bca','Single','m1.png','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',2,4,'2021-08-04','123000',1,'2021-08-04',10,'');
/*!40000 ALTER TABLE `teacher` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user` (
`id` int(11) NOT NULL,
`unique_id` int(11) NOT NULL,
`user_fname` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_lname` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`bio` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`created_at` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`dob` date NOT NULL,
`phone` int(11) NOT NULL,
`address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_pass` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_avtar` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`user_status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`last_logout` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES (1,12000,'hema','h','[email protected]','','','0000-00-00',908765679,'bangalore','','','',''),(1,923,'likitha','s','[email protected]','','','0000-00-00',0,'','','','','');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_message`
--
DROP TABLE IF EXISTS `user_message`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_message` (
`time` date NOT NULL,
`patient_id` int(11) NOT NULL,
`doctor_id` int(11) NOT NULL,
`message` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_message`
--
LOCK TABLES `user_message` WRITE;
/*!40000 ALTER TABLE `user_message` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_message` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vacancy`
--
DROP TABLE IF EXISTS `vacancy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `vacancy` (
`school_id` int(11) NOT NULL,
`vacancy_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`number_of_vacancies` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`last_date` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
PRIMARY KEY (`vacancy_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vacancy`
--
LOCK TABLES `vacancy` WRITE;
/*!40000 ALTER TABLE `vacancy` DISABLE KEYS */;
INSERT INTO `vacancy` VALUES (0,3,'Position for class teachers','4','2019-12-21');
/*!40000 ALTER TABLE `vacancy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `visitor`
--
DROP TABLE IF EXISTS `visitor`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `visitor` (
`exhibition_id` int(11) DEFAULT NULL,
`visitor_id` int(11) NOT NULL AUTO_INCREMENT,
`name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`group_id` int(11) DEFAULT NULL,
`sub_group_id` int(11) DEFAULT NULL,
`birthday` date NOT NULL,
`age` int(11) NOT NULL,
`place_birth` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`sex` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`m_tongue` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`religion` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`blood_group` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`address` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`city` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`state` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`nationality` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`phone` int(11) NOT NULL,
`email` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`password` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`roll` int(11) DEFAULT NULL,
`card_number` int(11) DEFAULT NULL,
`issue_date` date DEFAULT NULL,
`expire_date` date DEFAULT NULL,
`dormitory_name` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`more_entries` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL,
`login_status` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
`unique_id` int(11) NOT NULL,
PRIMARY KEY (`visitor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `visitor`
--
LOCK TABLES `visitor` WRITE;
/*!40000 ALTER TABLE `visitor` DISABLE KEYS */;
INSERT INTO `visitor` VALUES (NULL,1,'aa',3,0,'0000-00-00',0,'bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian',232109,'[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',0,0,'0000-00-00','0000-00-00','','','',0),(NULL,2,'Raju',2,10,'0000-00-00',19,'bangalore','male','kanada','Hindu','o+','#01 5th cross, Vinayaka nagar','Bangalore','karnataka','Indian',999878790,'[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',102,0,'0000-00-00','0000-00-00','','','0',0),(NULL,3,'visitor_vignesh',NULL,NULL,'0000-00-00',18,'bangalore','male','kanada','Hindu','o+','nagpur','Bangalore','karnataka','Indian',999878790,'[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',1,0,'0000-00-00','0000-00-00','','','1',0),(NULL,4,'visitor',NULL,NULL,'0000-00-00',24,'bangalore','male','kanada','Hindu','o+','Tumkur','Bangalore','Karnataka','Indian',999878790,'[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',0,0,'0000-00-00','0000-00-00','','','0',0),(20001,5,'Ax-visitor1',NULL,NULL,'0000-00-00',24,NULL,'male',NULL,NULL,'o+','Tumkur',NULL,NULL,'Indian',908765544,'[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',6,NULL,NULL,NULL,NULL,NULL,'1',0),(20002,6,'hdfc-visitor1',NULL,NULL,'0000-00-00',18,NULL,'male',NULL,NULL,'o+','kerela',NULL,NULL,'Indian',999878790,'[email protected]','7110eda4d09e062aa5e4a390b0a572ac0d2c0220',0,NULL,NULL,NULL,NULL,NULL,'1',0);
/*!40000 ALTER TABLE `visitor` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2026-07-25 19:32:25