-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jul 19, 2023 at 03:24 PM -- Server version: 10.4.25-MariaDB -- PHP Version: 7.4.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `best_ai` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `fcm_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'firebase token' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admins` -- INSERT INTO `admins` (`id`, `name`, `email`, `username`, `password`, `remember_token`, `created_at`, `updated_at`, `fcm_token`) VALUES (1, 'Admin', 'admin@gmail.com', 'admin', '$2y$10$H5oSxdIu6goOeGvtlVBJY.Uq4xNWrS0ZT/BET/94tpEtLIf1JyqUa', 'bD1xl2tYTBT04MLacBKuCNGcixfv7K3q0VtnzTJqFqtb4s0GGM2YAn2gbh5y', '2020-12-12 07:34:26', '2023-05-18 04:30:47', 'dX6Bg400esxrivQ_lVrXga:APA91bExroFwqSiD5CJFpvsWcVKzERQU3BzI5JAowqyaeB4bORnnfipD9ooWRZ0EoO-HZLS1GP0DeRl43OaD-AK6O6LtFNbqsYsgqp3SFeiL4ZWkuJRH48wkDqxYNaHMDcoP1jOliOXq'); -- -------------------------------------------------------- -- -- Table structure for table `admin_profiles` -- CREATE TABLE `admin_profiles` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) UNSIGNED DEFAULT NULL, `city` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `profile_picture` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_login_at` timestamp NULL DEFAULT NULL, `last_login_ip` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_profiles` -- INSERT INTO `admin_profiles` (`id`, `admin_id`, `city`, `state`, `phone`, `address`, `profile_picture`, `driver`, `last_login_at`, `last_login_ip`, `created_at`, `updated_at`) VALUES (1, 1, 'NY pd', 'NY pd', '123456789', 'R - 08, H - 41', 'adminProfile/admin.png', 'local', NULL, NULL, '2021-01-16 06:35:21', '2023-05-13 04:34:04'); -- -------------------------------------------------------- -- -- Table structure for table `basic_controls` -- CREATE TABLE `basic_controls` ( `id` bigint(20) UNSIGNED NOT NULL, `theme` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `site_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `primaryColor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `secondaryColor` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time_zone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `base_currency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_symbol` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paginate` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `strong_password` tinyint(1) NOT NULL, `force_ssl` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0=>inactive,1=>active', `registration` tinyint(1) NOT NULL, `fraction_number` int(11) DEFAULT NULL, `meta_keywords` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sender_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sender_email_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `push_notification` tinyint(1) NOT NULL DEFAULT 0, `email_notification` tinyint(1) NOT NULL DEFAULT 0, `email_verification` tinyint(1) NOT NULL DEFAULT 0, `sms_notification` tinyint(1) NOT NULL DEFAULT 0, `sms_verification` tinyint(1) NOT NULL DEFAULT 0, `tawk_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tawk_status` tinyint(1) NOT NULL DEFAULT 0, `fb_messenger_status` tinyint(1) NOT NULL DEFAULT 0, `fb_app_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fb_page_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reCaptcha_status_login` tinyint(1) NOT NULL DEFAULT 0, `reCaptcha_status_registration` tinyint(1) NOT NULL DEFAULT 0, `MEASUREMENT_ID` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `analytic_status` tinyint(1) NOT NULL, `error_log` tinyint(1) NOT NULL DEFAULT 0, `is_active_cron_notification` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `open_ai_key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `open_ai_model` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `max_token` int(11) DEFAULT 0, `storage_days` int(11) NOT NULL DEFAULT 365 COMMENT 'how many days document image storage', `azure_key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'for text to speech convert', `azure_region` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'for text to speech convert', `gcp_voice_file` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'GCP text to voice conveter json file name', `voiceover_active` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=>azure,1=>GCP', `azure_key_sentiment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'sentiment analaysis key for azure', `endpoint_sentiment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'sentiment analaysis endpoint for azure', `sentiment_gcp_file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sentiment_gcp_project_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sentiment_active` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=>azure, 1=> GCP', `is_template` tinyint(1) NOT NULL DEFAULT 1, `is_image` tinyint(1) NOT NULL DEFAULT 1, `is_speech_to_text` tinyint(1) NOT NULL DEFAULT 1, `is_text_to_speech` tinyint(1) NOT NULL DEFAULT 1, `is_code` tinyint(1) NOT NULL DEFAULT 1, `is_chat` tinyint(1) NOT NULL DEFAULT 1, `is_sentiment` int(11) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `basic_controls` -- INSERT INTO `basic_controls` (`id`, `theme`, `site_title`, `primaryColor`, `secondaryColor`, `time_zone`, `base_currency`, `currency_symbol`, `paginate`, `strong_password`, `force_ssl`, `registration`, `fraction_number`, `meta_keywords`, `meta_description`, `social_title`, `social_description`, `sender_email`, `sender_email_name`, `email_description`, `push_notification`, `email_notification`, `email_verification`, `sms_notification`, `sms_verification`, `tawk_id`, `tawk_status`, `fb_messenger_status`, `fb_app_id`, `fb_page_id`, `reCaptcha_status_login`, `reCaptcha_status_registration`, `MEASUREMENT_ID`, `analytic_status`, `error_log`, `is_active_cron_notification`, `created_at`, `updated_at`, `open_ai_key`, `open_ai_model`, `max_token`, `storage_days`, `azure_key`, `azure_region`, `gcp_voice_file`, `voiceover_active`, `azure_key_sentiment`, `endpoint_sentiment`, `sentiment_gcp_file_name`, `sentiment_gcp_project_id`, `sentiment_active`, `is_template`, `is_image`, `is_speech_to_text`, `is_text_to_speech`, `is_code`, `is_chat`, `is_sentiment`) VALUES (1, 'basic', 'Best Ai', '#f05822', '#f0aa22', 'UTC', 'USD', '$', '15', 0, 0, 1, 2, 'Wallet, Payment Gateway, Paypal, Stripe, Skrill, Codecannyon, Envato,Pay Secure', 'Pay Secure is a complete payment gateway solution', 'Pay Secure', 'Pay Secure is a complete payment gateway solution', 'support@example.com', 'Pay Secure', '\r\n\r\n\r\n\r\n\r\n
Hello [[name]],
\r\n[[message]]
\r\nSincerely,
Team Pay Secure
\r\n 2022 © All Right Reserved
\r\n\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. <\\/p>
Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n<\\/p>\"}', '2023-05-15 22:54:16', '2023-05-15 22:54:16'), (24, 87, 1, '{\"title\":\"Survival strategies to ensure business domination\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?<\\/p>
\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit.<\\/p>
Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n<\\/p>\"}', '2023-05-15 22:56:49', '2023-05-15 22:56:49'), (25, 88, 1, '{\"title\":\"Survival Strategies To Ensure Business Domination\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n<\\/p>
\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. <\\/p>
Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n<\\/p>\"}', '2023-05-15 22:57:37', '2023-05-15 22:57:37'), (26, 94, 1, '{\"title\":\"Terms & Conditions\",\"description\":\"
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use\\r\\n\\r\\nLorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. <\\/p>
Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose injected humour and the like.<\\/p>\"}', '2023-05-16 01:30:31', '2023-05-16 01:30:31'), (28, 96, 1, NULL, '2023-05-16 03:12:50', '2023-05-16 03:12:50'), (29, 97, 1, NULL, '2023-05-16 03:13:16', '2023-05-16 03:13:16'), (30, 98, 1, NULL, '2023-05-16 03:13:33', '2023-05-16 03:13:33'), (31, 99, 1, NULL, '2023-05-16 03:13:59', '2023-05-16 03:13:59'), (32, 100, 1, '{\"title\":\"Privacy Policy\",\"description\":\"
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). <\\/p>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\\r\\n\\r\\nThe point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose injected humour and the like.<\\/p>\"}', '2023-05-16 03:18:50', '2023-05-16 03:18:50'), (33, 64, 2, '{\"title\":\"Contenido del blog\",\"sub_title\":\"Escriba publicaciones de blog optimizadas en una fracci\\u00f3n del tiempo.\",\"button_name\":\"Pruebe el contenido del blog\"}', '2023-05-16 23:59:21', '2023-05-16 23:59:21'), (34, 65, 2, '{\"title\":\"Contenido SEO\",\"sub_title\":\"Escriba publicaciones de blog optimizadas en una fracci\\u00f3n del tiempo.\",\"button_name\":\"Prueba el contenido SEO\"}', '2023-05-16 23:59:59', '2023-05-16 23:59:59'), (35, 66, 2, '{\"title\":\"contenido de comercio electr\\u00f3nico\",\"sub_title\":\"Escriba publicaciones de blog optimizadas en una fracci\\u00f3n del tiempo\",\"button_name\":\"Pruebe el contenido de comercio electr\\u00f3nico\"}', '2023-05-17 00:00:32', '2023-05-17 00:00:32'), (36, 67, 2, '{\"title\":\"Contenido de redes sociales\",\"sub_title\":\"Escriba publicaciones de blog optimizadas en una fracci\\u00f3n del tiempo.\",\"button_name\":\"Pruebe el contenido de las redes sociales\"}', '2023-05-17 00:01:05', '2023-05-17 00:01:05'), (37, 68, 2, '{\"title\":\"Texto de anuncio digital\",\"sub_title\":\"Escriba publicaciones de blog optimizadas en una fracci\\u00f3n del tiempo.\",\"button_name\":\"Pruebe la copia del anuncio digital\"}', '2023-05-17 00:01:36', '2023-05-17 00:01:36'), (38, 69, 2, '{\"title\":\"Copia del sitio web\",\"sub_title\":\"Escriba publicaciones de blog optimizadas en una fracci\\u00f3n del tiempo.\",\"button_name\":\"Pruebe el contenido del blog\"}', '2023-05-17 00:02:13', '2023-05-17 00:02:13'), (39, 70, 2, '{\"title\":\"Introduce tu proyecto de redacci\\u00f3n\",\"sub_title\":\"Choose from emails, social posts, long-form blog posts, and more!\"}', '2023-05-17 00:03:18', '2023-05-17 00:03:18'), (40, 71, 2, '{\"title\":\"Dale a Copy.ai un poco de contexto\",\"sub_title\":\"Ingrese algunas oraciones sobre su marca y productos.\"}', '2023-05-17 00:03:45', '2023-05-17 00:03:45'), (41, 72, 2, '{\"title\":\"Examine los resultados\",\"sub_title\":\"Nuestro generador de contenido de IA le brinda m\\u00faltiples opciones para cada campa\\u00f1a en la que est\\u00e1 trabajando.\"}', '2023-05-17 00:04:07', '2023-05-17 00:04:07'), (42, 73, 2, '{\"title\":\"Editar, pulir y publicar\",\"sub_title\":\"Usa el editor de Copy.ai para reescribir p\\u00e1rrafos y pulir oraciones. Luego, simplemente copie y pegue el trabajo en su CMS para publicarlo.\"}', '2023-05-17 00:04:35', '2023-05-17 00:04:35'), (43, 74, 2, '{\"name\":\"Nepoli Dewan\",\"designation\":\"Gerente de SEO\",\"short_description\":\"Lorem ipsum dolor sit amet consecter tony adipiscing elitsed do eiusmodi tempor roar incididunt ut laboreet dolore magna como opuesto al uso. Tipo de asociaci\\u00f3n o Malta. La responsabilidad limitada de todo\"}', '2023-05-17 00:07:43', '2023-05-17 00:07:43'), (44, 75, 2, '{\"name\":\"Nepoli Dewan\",\"designation\":\"Gerente de SEO\",\"short_description\":\"Lorem ipsum dolor sit amet consecter tony adipiscing elitsed do eiusmodi tempor roar incididunt ut laboreet dolore magna como opuesto al uso. Tipo de asociaci\\u00f3n o Malta. La responsabilidad limitada de todo.\"}', '2023-05-17 00:08:34', '2023-05-17 00:08:34'), (45, 76, 2, '{\"name\":\"Nepoli Dewan\",\"designation\":\"Gerente de SEO\",\"short_description\":\"Lorem ipsum dolor sit amet consecter tony adipiscing elitsed do eiusmodi tempor roar incididunt ut laboreet dolore magna como opuesto al uso. Tipo de asociaci\\u00f3n o Malta. La responsabilidad limitada de todo.\"}', '2023-05-17 00:09:14', '2023-05-17 00:09:14'), (46, 77, 2, '{\"name\":\"Nepoli Dewan\",\"designation\":\"Gerente de SEO\",\"short_description\":\"Lorem ipsum dolor sit amet consecter tony adipiscing elitsed do eiusmodi tempor roar incididunt ut laboreet dolore magna as the opposed to using. Type of partnership or Malta. The limited todot liability.\"}', '2023-05-17 00:10:42', '2023-05-17 00:10:42'), (47, 78, 2, '{\"name\":\"Nepoli Dewan\",\"designation\":\"Gerente de SEO\",\"short_description\":\"Lorem ipsum dolor sit amet consecter tony adipiscing elitsed do eiusmodi tempor roar incididunt ut laboreet dolore magna como opuesto al uso. Tipo de asociaci\\u00f3n o Malta. La responsabilidad limitada de todo.\"}', '2023-05-17 00:13:54', '2023-05-17 00:13:54'), (49, 80, 2, '{\"title\":\"Cu\\u00e1nto cuesta este proyecto?\",\"short_description\":\"Lorem ipsum dolor, sit amet consectetur adipisicing elit. Autem beatae laudantium accusantium eius natus deleniti animi incidunt iure sit velit.\"}', '2023-05-17 00:15:05', '2023-05-17 00:15:05'), (50, 81, 2, '{\"title\":\"Tengo garant\\u00eda?\",\"short_description\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem, labore repudiandae. Quis ipsam distinctio necessitatibus, similique sit suscipit magni nobis. Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem, labore repudiandae. Quis ipsam distinctio necessitatibus, similique sit suscipit magni nobis.\"}', '2023-05-17 00:15:36', '2023-05-17 00:15:36'), (51, 82, 2, '{\"title\":\"Lo que ofrecemos?\",\"short_description\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Ut cupiditate aliquam corporis, delectus, quis molestias officiis culpa facere nulla fuga explicabo expedita.\"}', '2023-05-17 00:16:08', '2023-05-17 00:16:08'), (52, 83, 2, '{\"title\":\"Qu\\u00e9 es lo m\\u00e1s importante para ti?\",\"short_description\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum, omnis? Iure inventore architecto repudiandae sequi vitae, iste autem pariatur ducimus veritatis numquam error quo! Esse!\"}', '2023-05-17 00:16:33', '2023-05-17 00:16:33'), (53, 84, 2, '{\"title\":\"Servicios al cliente\",\"short_description\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic accusantium maiores dolorem cupiditate debitis facilis inventore cumque nisi non, minus error, sit asperiores, voluptates autem natus molestias aspernatur ut voluptate?\"}', '2023-05-17 00:16:55', '2023-05-17 00:16:55'), (54, 85, 2, '{\"title\":\"Esperar nada menos que perfecta\",\"short_description\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Earum obcaecati quis veritatis reiciendis voluptate harum.\"}', '2023-05-17 00:17:16', '2023-05-17 00:17:16'), (55, 86, 2, '{\"title\":\"Estrategias de supervivencia para asegurar el dominio empresarial\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. <\\/p>
Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum? Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti.\\r\\n\\r\\nFugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum? Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?<\\/p>\"}', '2023-05-17 00:18:07', '2023-05-17 00:18:07'), (56, 87, 2, '{\"title\":\"Estrategias de supervivencia para asegurar el dominio empresarial\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa.<\\/p>
Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum? Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum? Lorem ipsum dolor sit amet consectetur adipisicing elit.\\r\\n\\r\\nAliquid, soluta optio corporis ipsam doloremque deleniti.<\\/p>
Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?<\\/p>\"}', '2023-05-17 00:18:58', '2023-05-17 00:18:58'), (57, 88, 2, '{\"title\":\"Estrategias de supervivencia para asegurar el dominio empresarial\",\"description\":\"
Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. <\\/p>
Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum? Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid, soluta optio corporis ipsam doloremque deleniti. Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum? Lorem ipsum dolor sit amet consectetur adipisicing elit.\\r\\n\\r\\nAliquid, soluta optio corporis ipsam doloremque deleniti.<\\/p>
Fugit culpa pariatur aliquam ipsa. Soluta magni reiciendis sequi maxime ut sapiente officia incidunt accusantium quisquam blanditiis veniam, neque sed quia, laborum sit suscipit, dolorem voluptatibus? Dolorem minus amet atque incidunt autem ducimus excepturi nostrum?<\\/p>\"}', '2023-05-17 00:19:36', '2023-05-17 00:19:36'), (58, 94, 2, '{\"title\":\"T\\u00e9rminos y condiciones Condiciones\",\"description\":\"
Es un hecho establecido desde hace mucho tiempo que un lector se distraer\\u00e1 con el contenido legible de una p\\u00e1gina cuando mire su dise\\u00f1o. El punto de usar Lorem Ipsum es que tiene una distribuci\\u00f3n de letras m\\u00e1s o menos normal, a diferencia de usar \'Contenido aqu\\u00ed, contenido aqu\\u00ed\', lo que hace que parezca un ingl\\u00e9s legible. Muchos paquetes de autoedici\\u00f3n y editores de p\\u00e1ginas web ahora usan Lorem Ipsum como su modelo de texto predeterminado, y una b\\u00fasqueda de \'lorem ipsum\' descubrir\\u00e1 muchos sitios web que a\\u00fan est\\u00e1n en su infancia. Varias versiones han evolucionado a lo largo de los a\\u00f1os, a veces por accidente, a veces a prop\\u00f3sito (humor inyectado y cosas por el estilo). Es un hecho establecido desde hace mucho tiempo que un lector se distraer\\u00e1 con el contenido legible de una p\\u00e1gina cuando mire su dise\\u00f1o. El punto de usar Lorem Ipsum es que tiene una distribuci\\u00f3n de letras m\\u00e1s o menos normal, a diferencia de usar \'Contenido aqu\\u00ed, contenido aqu\\u00ed\', lo que hace que parezca un ingl\\u00e9s legible. Muchos paquetes de autoedici\\u00f3n y editores de p\\u00e1ginas web ahora usan Lorem Ipsum como su modelo de texto predeterminado, y una b\\u00fasqueda de \'lorem ipsum\' descubrir\\u00e1 muchos sitios web que a\\u00fan est\\u00e1n en su infancia.<\\/p>
\\r\\n\\r\\nVarias versiones han evolucionado a lo largo de los a\\u00f1os, a veces por accidente, a veces a prop\\u00f3sito (humor inyectado y cosas por el estilo). Es un hecho establecido desde hace mucho tiempo que un lector se distraer\\u00e1 con el contenido legible de una p\\u00e1gina cuando mire su dise\\u00f1o. El punto de usar Lorem Ipsum es que tiene una distribuci\\u00f3n de letras m\\u00e1s o menos normal, a diferencia de usar \'Contenido aqu\\u00ed, contenido aqu\\u00ed\', lo que hace que parezca un ingl\\u00e9s legible. Muchos paquetes de autoedici\\u00f3n y editores de p\\u00e1ginas web ahora usan Lorem Ipsum como su modelo de texto predeterminado, y una b\\u00fasqueda de \'lorem ipsum\' descubrir\\u00e1 muchos sitios web que a\\u00fan est\\u00e1n en su infancia. Varias versiones han evolucionado a lo largo de los a\\u00f1os, a veces por accidente, a veces a prop\\u00f3sito con humor inyectado y cosas por el estilo.<\\/p>\"}', '2023-05-17 00:20:33', '2023-05-17 00:20:33'), (59, 100, 2, '{\"title\":\"pol\\u00edtica de privacidad\",\"description\":\"
Es un hecho establecido desde hace mucho tiempo que un lector se distraer\\u00e1 con el contenido legible de una p\\u00e1gina cuando mire su dise\\u00f1o. El punto de usar Lorem Ipsum es que tiene una distribuci\\u00f3n de letras m\\u00e1s o menos normal, en lugar de usar \'Contenido aqu\\u00ed, contenido aqu\\u00ed\', lo que hace que parezca un ingl\\u00e9s legible. Muchos paquetes de autoedici\\u00f3n y editores de p\\u00e1ginas web ahora usan Lorem Ipsum como su modelo de texto predeterminado, y una b\\u00fasqueda de \'lorem ipsum\' descubrir\\u00e1 muchos sitios web que a\\u00fan est\\u00e1n en su infancia. Varias versiones han evolucionado a lo largo de los a\\u00f1os, a veces por accidente, a veces a prop\\u00f3sito (humor inyectado y cosas por el estilo).\\r\\n\\r\\nEs un hecho establecido desde hace mucho tiempo que un lector se distraer\\u00e1 con el contenido legible de una p\\u00e1gina cuando mire su dise\\u00f1o.<\\/p>
El punto de usar Lorem Ipsum es que tiene una distribuci\\u00f3n de letras m\\u00e1s o menos normal, en lugar de usar \'Contenido aqu\\u00ed, contenido aqu\\u00ed\', lo que hace que parezca un ingl\\u00e9s legible. Muchos paquetes de autoedici\\u00f3n y editores de p\\u00e1ginas web ahora usan Lorem Ipsum como su modelo de texto predeterminado, y una b\\u00fasqueda de \'lorem ipsum\' descubrir\\u00e1 muchos sitios web que a\\u00fan est\\u00e1n en su infancia. Varias versiones han evolucionado a lo largo de los a\\u00f1os, a veces por accidente, a veces a prop\\u00f3sito (humor inyectado y cosas por el estilo). Es un hecho establecido desde hace mucho tiempo que un lector se distraer\\u00e1 con el contenido legible de una p\\u00e1gina cuando mire su dise\\u00f1o. El punto de usar Lorem Ipsum es que tiene una distribuci\\u00f3n de letras m\\u00e1s o menos normal, en lugar de usar \'Contenido aqu\\u00ed, contenido aqu\\u00ed\', lo que hace que parezca un ingl\\u00e9s legible. Muchos paquetes de autoedici\\u00f3n y editores de p\\u00e1ginas web ahora usan Lorem Ipsum como su modelo de texto predeterminado, y una b\\u00fasqueda de \'lorem ipsum\' descubrir\\u00e1 muchos sitios web que a\\u00fan est\\u00e1n en su infancia. Varias versiones han evolucionado a lo largo de los a\\u00f1os, a veces por accidente, a veces a prop\\u00f3sito con humor inyectado y cosas por el estilo.<\\/p>\"}', '2023-05-17 00:21:18', '2023-05-17 00:21:18'), (60, 101, 1, '{\"name\":\"Nepoli Dewan\",\"designation\":\"SEO Manager\",\"short_description\":\"Lorem ipsum dolor sit amet consecter tony adipiscing elitsed do eiusmodi tempor roar incididunt ut laboreet dolore magna as the opposed to using. Type of partnership or Malta. The limited todot liability.\"}', '2023-05-17 06:59:15', '2023-05-17 06:59:15'), (61, 101, 2, '{\"name\":\"Nepoli Dewan\",\"designation\":\"Gerente de SEO\",\"short_description\":\"Lorem ipsum dolor sit amet consecter tony adipiscing elitsed do eiusmodi tempor roar incididunt ut laboreet dolore magna as the opposed to using. Type of partnership or Malta. The limited todot liability.\"}', '2023-05-17 06:59:47', '2023-05-17 06:59:47'); -- -------------------------------------------------------- -- -- Table structure for table `content_media` -- CREATE TABLE `content_media` ( `id` bigint(20) UNSIGNED NOT NULL, `content_id` bigint(20) UNSIGNED DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `content_media` -- INSERT INTO `content_media` (`id`, `content_id`, `description`, `driver`, `created_at`, `updated_at`) VALUES (1, 64, '{\"social_icon\":\"fas fa-money-bill-alt\",\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', NULL, '2023-05-15 00:51:08', '2023-05-15 00:51:08'), (2, 65, '{\"social_icon\":\"fas fa-money-check\",\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', NULL, '2023-05-15 00:53:13', '2023-05-15 00:53:13'), (3, 66, '{\"social_icon\":\"fas fa-cart-arrow-down\",\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', NULL, '2023-05-15 00:54:33', '2023-05-15 00:54:33'), (4, 67, '{\"social_icon\":\"fab fa-facebook-messenger\",\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', NULL, '2023-05-15 00:55:34', '2023-05-15 00:55:34'), (5, 68, '{\"social_icon\":\"fas fa-money-check-alt\",\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', NULL, '2023-05-15 00:56:33', '2023-05-15 00:56:33'), (6, 69, '{\"social_icon\":\"fas fa-money-bill\",\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', NULL, '2023-05-15 00:57:24', '2023-05-15 00:57:24'), (7, 70, '{\"image\":\"contents\\/HLh26e3Lp7yxKZrT3qwwfsnqf4q8TAX8heouQSz6.svg\"}', 'local', '2023-05-15 01:38:42', '2023-05-15 01:38:42'), (8, 71, '{\"image\":\"contents\\/pkiG1rxOxE72G0rpC6K5nA5jAl2J4eeZbuNAnglH.svg\"}', 'local', '2023-05-15 01:39:58', '2023-05-15 01:39:58'), (9, 72, '{\"image\":\"contents\\/Nos0DDyQPmSxJfcGKtOzldHg0qRZUwdQ6P8WLlRD.png\"}', 'local', '2023-05-15 01:40:23', '2023-05-15 01:40:23'), (10, 73, '{\"image\":\"contents\\/nWBjGpQbRsmUqiYHHABeeXGqq5HKAk7NhH4y48B4.svg\"}', 'local', '2023-05-15 06:02:37', '2023-05-15 06:02:37'), (11, 74, '{\"image\":\"contents\\/fbkoSxv9WbZmdltuMZHGR2RftBoxLV2vXiZjYI2U.png\"}', 'local', '2023-05-15 06:08:23', '2023-05-15 06:08:23'), (12, 75, '{\"image\":\"contents\\/1K9tQKI6tuNQmirQTRQNDgmkBcQhr7ZfgVnFH7z9.png\"}', 'local', '2023-05-15 06:12:15', '2023-05-15 06:12:15'), (13, 76, '{\"image\":\"contents\\/8jKySXlfzsF91FkVaF7JAZo6l06ux0XTJd3ep6T5.png\"}', 'local', '2023-05-15 06:12:53', '2023-05-15 06:12:53'), (14, 77, '{\"image\":\"contents\\/2GPvDe1EuUESDiaetG8aLOQXm7bVfrbdHnsCKVGS.png\"}', 'local', '2023-05-15 06:13:35', '2023-05-15 06:13:35'), (15, 78, '{\"image\":\"contents\\/U9AG5fOFwOloD8iQ3RCW29KevhyDxxgVuepKjb19.png\"}', 'local', '2023-05-15 06:14:15', '2023-05-15 06:14:15'), (17, 86, '{\"image\":\"contents\\/U2eMPF5xRU09LRUvCPywFw7J6SYczCvfd2FtIMyh.png\"}', 'local', '2023-05-15 22:54:16', '2023-05-15 22:54:16'), (18, 87, '{\"image\":\"contents\\/h2huS4uLNqoN1N68gXl6PAHyEkWz6ZIGtukjj5Wi.jpg\"}', 'local', '2023-05-15 22:56:49', '2023-05-15 22:56:49'), (19, 88, '{\"image\":\"contents\\/CxJK24XmjOnzGwlHceVd8PESHkb9iQ8Yri5VMnE4.png\"}', 'local', '2023-05-15 22:57:37', '2023-05-15 22:57:37'), (26, 96, '{\"social_icon\":\"fab fa-facebook\",\"social_link\":\"https:\\/\\/www.facebook.com\\/\"}', NULL, '2023-05-16 03:12:50', '2023-05-16 03:12:50'), (27, 97, '{\"social_icon\":\"fab fa-linkedin-in\",\"social_link\":\"https:\\/\\/www.linkedin.com\\/\"}', NULL, '2023-05-16 03:13:16', '2023-05-16 03:13:16'), (28, 98, '{\"social_icon\":\"fab fa-twitter\",\"social_link\":\"https:\\/\\/twitter.com\\/\"}', NULL, '2023-05-16 03:13:33', '2023-05-16 03:13:33'), (29, 99, '{\"social_icon\":\"fab fa-instagram\",\"social_link\":\"https:\\/\\/www.instagram.com\\/\"}', NULL, '2023-05-16 03:13:59', '2023-05-16 03:13:59'), (30, 101, '{\"image\":\"contents\\/8q6uMqUoF2CGrqMM4N8OPx9UwINuzWXwSilL5bjH.jpg\"}', 'local', '2023-05-17 06:59:15', '2023-05-17 06:59:15'); -- -------------------------------------------------------- -- -- Table structure for table `custom_templates` -- CREATE TABLE `custom_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `professional` tinyint(1) NOT NULL DEFAULT 0, `group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` enum('original','custom') COLLATE utf8mb4_unicode_ci NOT NULL, `prompt` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fields` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `custom_templates` -- INSERT INTO `custom_templates` (`id`, `name`, `icon`, `description`, `template_code`, `status`, `professional`, `group`, `slug`, `type`, `prompt`, `fields`, `created_at`, `updated_at`) VALUES (2, 'Ask any question', '', 'Ask AI any question you want and it will give an answer in seconds', 'XHFHR', 1, 0, 'other', 'custom-template', 'custom', 'Provide answer to this question: [[input_field_1]] [[input_field_1]] [[input_field_1]]', '{\"Enteryourquestion\":{\"field_name\":\"Enteryourquestion\",\"field_level\":\"Enter your question\",\"field_description\":\"Let me imagination to come up with anything you want\",\"code\":\"input_field_1\",\"type\":\"text\"}}', '2023-05-31 04:30:22', '2023-07-19 07:13:10'), (7, 'Ask any question 2', '', 'Ask AI any question you want and it will give an answer in seconds2', 'YKZTW', 1, 0, 'other', 'custom-template', 'custom', 'I am [[input_field_1]] and i am input [[input_field_2]]. then go.', '{\"Enteryourquestion1\":{\"field_name\":\"Enteryourquestion1\",\"field_level\":\"Enter your question1\",\"field_description\":\"Let me imagination to come up with anything you want1\",\"code\":\"input_field_1\",\"type\":\"text\"},\"Enteryourquestion2\":{\"field_name\":\"Enteryourquestion2\",\"field_level\":\"Enter your question2\",\"field_description\":\"Let me imagination to come up with anything you want2\",\"code\":\"input_field_2\",\"type\":\"textarea\"}}', '2023-05-31 05:12:58', '2023-07-19 07:16:35'); -- -------------------------------------------------------- -- -- Table structure for table `deposits` -- CREATE TABLE `deposits` ( `id` bigint(20) UNSIGNED NOT NULL, `depositable_id` int(11) DEFAULT NULL, `depositable_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_method_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_method_currency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(18,8) NOT NULL DEFAULT 0.00000000, `percentage` decimal(18,8) NOT NULL DEFAULT 0.00000000 COMMENT 'Percent of charge', `charge_percentage` decimal(18,8) NOT NULL DEFAULT 0.00000000 COMMENT 'After adding percent of charge', `charge_fixed` decimal(18,8) NOT NULL DEFAULT 0.00000000, `charge` decimal(18,8) NOT NULL DEFAULT 0.00000000 COMMENT 'Total charge', `payable_amount` decimal(18,8) NOT NULL DEFAULT 0.00000000 COMMENT 'Amount payed', `btc_amount` decimal(18,8) DEFAULT NULL, `btc_wallet` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utr` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Success,0=Pending,2=>requested,3=>rejected', `note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_id` varchar(61) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `detail` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `feedback` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `response` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referenceno` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deposits` -- INSERT INTO `deposits` (`id`, `depositable_id`, `depositable_type`, `user_id`, `payment_method_id`, `payment_method_currency`, `amount`, `percentage`, `charge_percentage`, `charge_fixed`, `charge`, `payable_amount`, `btc_amount`, `btc_wallet`, `utr`, `status`, `note`, `payment_id`, `email`, `detail`, `feedback`, `created_at`, `updated_at`, `response`, `referenceno`) VALUES (58, 4, 'App\\Models\\SubscriptionPurchase', 1, 2, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, 'IxSpDLUeOIOPs7yf', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-17 04:27:58', '2023-06-17 04:27:58', NULL, NULL), (59, 5, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, '7wTkjOIkKTlEUT4W', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 00:11:58', '2023-06-18 00:11:58', NULL, NULL), (60, 6, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, '6ufqULIz7xHlAQxg', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 01:34:29', '2023-06-18 01:34:29', NULL, NULL), (61, 7, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, '1Bd0Rhmj9g7GUnII', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 01:55:37', '2023-06-18 01:55:37', NULL, NULL), (62, 3, 'App\\Models\\PrepaidPlan', 1, 1, 'USD', '12.99000000', '1.00000000', '0.12990000', '0.52000000', '0.64990000', '13.63990000', NULL, NULL, '1Q61iCWdFI42gPYO', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 03:06:35', '2023-06-18 03:06:35', NULL, NULL), (63, 8, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'a24wyyh2HOb3U0EB', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 04:42:42', '2023-06-18 04:42:42', NULL, NULL), (64, 9, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'vIAADdvZw3uQ5qyQ', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 04:47:02', '2023-06-18 04:47:02', NULL, NULL), (65, 10, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'w48bY4bNKcA5QSCU', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 06:42:42', '2023-06-18 06:42:42', NULL, NULL), (66, 11, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'bbC8REzO3857exbh', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 06:44:17', '2023-06-18 06:44:17', NULL, NULL), (67, 12, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'KSbMq276oB2dLzgY', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 06:48:21', '2023-06-18 06:48:21', NULL, NULL), (68, 13, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'L3btTNF10u8oJujq', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 23:27:37', '2023-06-18 23:27:37', NULL, NULL), (69, 14, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'jjnyDV5JZRi0JGHs', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 23:29:09', '2023-06-18 23:29:09', NULL, NULL), (70, 15, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'vc1CBqClZZOJjiTv', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-18 23:56:16', '2023-06-18 23:56:16', NULL, NULL), (71, 16, 'App\\Models\\SubscriptionPurchase', 1, 2, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, 'pCOt8pxoCYFCzdwZ', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-19 00:57:49', '2023-06-19 00:57:49', NULL, NULL), (72, 17, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'ylJOc5qT4XOMiCVn', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-19 23:01:57', '2023-06-19 23:01:57', NULL, NULL), (73, 2, 'App\\Models\\PrepaidPlan', 1, 2, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, '1GcvAaZCe7DZElA8', 1, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-20 03:11:57', '2023-06-20 03:12:27', NULL, NULL), (74, 2, 'App\\Models\\PrepaidPlan', 1, 1000, 'BDT', '5.69000000', '0.00000000', '0.00000000', '2.00000000', '2.00000000', '645.96000000', NULL, NULL, 'YsGPEwLcdLjolsDH', 1, NULL, NULL, 'demo@gmail.com', '{\"AccountNumber\":{\"field_name\":\"645654\",\"type\":\"text\"},\"BeneficiaryName\":{\"field_name\":\"John Doe\",\"type\":\"text\"},\"Address\":{\"field_name\":\"df\",\"type\":\"textarea\"},\"NID\":{\"field_name\":{\"path\":\"deposit2023\\/06\\/20\\/7IDeExXQAnUAWwc5ftvCArMaYE2113I7PTDmJmjO.png\",\"driver\":\"local\"},\"type\":\"file\"}}', 'dfg', '2023-06-20 03:13:41', '2023-06-20 03:15:44', NULL, NULL), (75, 18, 'App\\Models\\SubscriptionPurchase', 1, 2, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, 's3gP39a83ApZfegH', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-20 03:16:49', '2023-06-20 03:16:49', NULL, NULL), (76, 19, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'vJD9uzeEbhOhLIBj', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-20 03:18:11', '2023-06-20 03:18:11', NULL, NULL), (77, 1, 'App\\Models\\PrepaidPlan', 1, 2, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, '5rssLkmrKIzC4UNL', 1, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-20 06:45:35', '2023-06-20 06:46:01', NULL, NULL), (78, 20, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, '5j6lxRIlG7iWWHUc', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:10:11', '2023-06-21 01:10:11', NULL, NULL), (79, 21, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'qspZOXMAROYwVQkl', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:10:19', '2023-06-21 01:10:19', NULL, NULL), (80, 22, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'nogwjVtnRr2BiTD0', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:10:27', '2023-06-21 01:10:27', NULL, NULL), (81, 23, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'b4DAVYPicT6gSFfU', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:12:55', '2023-06-21 01:12:55', NULL, NULL), (82, 24, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'ltnWE8KZJ6LPR0QV', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:13:07', '2023-06-21 01:13:07', NULL, NULL), (83, 25, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'NmpH1vhQLJI5oT5c', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:13:17', '2023-06-21 01:13:17', NULL, NULL), (84, 26, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'HxPpe8UzPTkkuITc', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:21:48', '2023-06-21 01:21:48', NULL, NULL), (85, 27, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, '0uzteWYip5htjxRD', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:21:52', '2023-06-21 01:21:52', NULL, NULL), (86, 28, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'zrXk9MZBfZCwy4L0', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:22:55', '2023-06-21 01:22:55', NULL, NULL), (87, 29, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'NMCAn3dCmAJAQRGK', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:23:09', '2023-06-21 01:23:09', NULL, NULL), (88, 30, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'KZyUYMaj90PAIPL8', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:24:34', '2023-06-21 01:24:34', NULL, NULL), (89, 31, 'App\\Models\\SubscriptionPurchase', 1, 1, 'USD', '10.00000000', '1.00000000', '0.10000000', '0.52000000', '0.62000000', '10.62000000', NULL, NULL, 'MUmwkfAzK5PeIjAZ', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 01:28:10', '2023-06-21 01:28:10', NULL, NULL), (90, 2, 'App\\Models\\PrepaidPlan', 1, 2, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'saf75Gf3h5bU2u5f', 1, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:12:02', '2023-06-21 03:12:23', NULL, NULL), (91, 2, 'App\\Models\\PrepaidPlan', 1, 2, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'wNtkn6yyIeTVpYFS', 1, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:15:39', '2023-06-21 03:18:21', NULL, NULL), (92, 2, 'App\\Models\\PrepaidPlan', 1, 1, 'USD', '5.69000000', '1.00000000', '0.05690000', '0.52000000', '0.57690000', '6.26690000', NULL, NULL, 'Mh95n4VZg3QmZQvE', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:50:51', '2023-06-21 03:50:51', NULL, NULL), (93, 2, 'App\\Models\\PrepaidPlan', 1, 26, 'IDR', '5.69000000', '0.00000000', '0.00000000', '0.05000000', '0.05000000', '85154.04800000', NULL, NULL, 'mzLDTSRyMjJjyPq4', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:51:10', '2023-06-21 03:51:10', NULL, NULL), (94, 2, 'App\\Models\\PrepaidPlan', 1, 26, 'IDR', '5.69000000', '0.00000000', '0.00000000', '0.05000000', '0.05000000', '85154.04800000', NULL, NULL, 'BiWGdXJxgxL31bak', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:56:45', '2023-06-21 03:56:45', NULL, NULL), (95, 2, 'App\\Models\\PrepaidPlan', 1, 3, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'xN277wCa6fEUsODz', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:57:28', '2023-06-21 03:57:28', NULL, NULL), (96, 2, 'App\\Models\\PrepaidPlan', 1, 14, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'A5Q3rIsJPPcCfTY3', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:57:34', '2023-06-21 03:57:34', NULL, NULL), (97, 2, 'App\\Models\\PrepaidPlan', 1, 35, 'NPR', '5.69000000', '1.50000000', '0.08535000', '0.00000000', '0.08535000', '5.77535000', NULL, '202306211543105151', 'qKtggoGo9yYFqwrz', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:57:42', '2023-06-21 03:57:43', NULL, NULL), (98, 2, 'App\\Models\\PrepaidPlan', 1, 13, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, '9JDqHWqIsPsKPH5e', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:57:52', '2023-06-21 03:57:52', NULL, NULL), (99, 2, 'App\\Models\\PrepaidPlan', 1, 38, 'USDT', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '5.69000000', NULL, NULL, 'OJWsHktz5WPIjTz0', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:58:00', '2023-06-21 03:58:00', NULL, NULL), (100, 2, 'App\\Models\\PrepaidPlan', 1, 38, 'USDT', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '5.69000000', NULL, NULL, 'Hy9cFKvCGybglssd', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 03:58:33', '2023-06-21 03:58:33', NULL, NULL), (101, 2, 'App\\Models\\PrepaidPlan', 1, 11, 'INR', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '455.02690000', NULL, NULL, '9Kh7qshDOQJjhxv4', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:00:37', '2023-06-21 04:00:37', NULL, NULL), (102, 2, 'App\\Models\\PrepaidPlan', 1, 36, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '5.69000000', NULL, NULL, '2zTdPwea0NIAI8go', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:01:23', '2023-06-21 04:01:23', NULL, NULL), (103, 2, 'App\\Models\\PrepaidPlan', 1, 37, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '5.69000000', NULL, NULL, '5N8Qd7TKw8ZFJbrq', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:01:50', '2023-06-21 04:01:50', NULL, NULL), (104, 2, 'App\\Models\\PrepaidPlan', 1, 21, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '0.00025998', NULL, NULL, 'fZH2hSgTnwJvVGlO', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:07:23', '2023-06-21 04:07:23', NULL, NULL), (105, 2, 'App\\Models\\PrepaidPlan', 1, 23, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'KiIl6JkPLXFn907S', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:07:51', '2023-06-21 04:07:51', NULL, NULL), (106, 2, 'App\\Models\\PrepaidPlan', 1, 25, 'PKR', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '5.69000000', NULL, NULL, 'ivW7mC6JpAIfengU', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:08:13', '2023-06-21 04:08:13', NULL, NULL), (107, 2, 'App\\Models\\PrepaidPlan', 1, 19, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'L8Jcd2imIegKfZOw', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:08:19', '2023-06-21 04:08:19', NULL, NULL), (108, 2, 'App\\Models\\PrepaidPlan', 1, 18, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, '7i49DbmHs8dS2pnE', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:08:26', '2023-06-21 04:08:26', NULL, NULL), (109, 2, 'App\\Models\\PrepaidPlan', 1, 32, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '5.69000000', NULL, NULL, 'i1q4Kw2bVi4dJYYx', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:09:35', '2023-06-21 04:09:35', NULL, NULL), (110, 2, 'App\\Models\\PrepaidPlan', 1, 22, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '0.00025998', NULL, NULL, 'cWFcPhO9m51EXa5d', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:09:56', '2023-06-21 04:09:56', NULL, NULL), (111, 2, 'App\\Models\\PrepaidPlan', 1, 9, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'ewNTww4fcTIUnHi7', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:10:19', '2023-06-21 04:10:19', NULL, NULL), (112, 2, 'App\\Models\\PrepaidPlan', 1, 31, 'RUB', '5.69000000', '0.10000000', '0.00569000', '0.00000000', '0.00569000', '5.69569000', NULL, NULL, 'xyMjHDG5AsRs1BU5', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:12:40', '2023-06-21 04:12:40', NULL, NULL), (113, 2, 'App\\Models\\PrepaidPlan', 1, 17, 'BRL', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '22996.59280000', NULL, NULL, 'XENE7YORMfW06MkK', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:12:56', '2023-06-21 04:12:56', NULL, NULL), (114, 2, 'App\\Models\\PrepaidPlan', 1, 12, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '455.02690000', NULL, NULL, '1YA86IuQIXsdlYog', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:13:23', '2023-06-21 04:13:23', NULL, NULL), (115, 2, 'App\\Models\\PrepaidPlan', 1, 20, 'NGN', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'IowAbQcx9RnzaATt', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:13:33', '2023-06-21 04:13:33', NULL, NULL), (116, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'NTrlpjqUsnT7WJXS', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:14:39', '2023-06-21 04:14:39', NULL, NULL), (117, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'WZ0QIaOzQdELNSvl', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:15:10', '2023-06-21 04:15:10', NULL, NULL), (118, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, '5AujJWXZhqFqrOi0', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:16:34', '2023-06-21 04:16:34', NULL, NULL), (119, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'gOdF3FHjzW9oJrSz', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:17:49', '2023-06-21 04:17:49', NULL, NULL), (120, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'FEAEtCrA8KoRZbTE', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:18:12', '2023-06-21 04:18:12', NULL, NULL), (121, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'XFZRtLu5uKen4aT3', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:19:17', '2023-06-21 04:19:17', NULL, NULL), (122, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'nM4Amrm4TDra60to', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:19:51', '2023-06-21 04:19:51', NULL, NULL), (123, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, '4iwIMn7K29Efd62z', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:20:08', '2023-06-21 04:20:08', NULL, NULL), (124, 2, 'App\\Models\\PrepaidPlan', 1, 28, 'BTC', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'YUBWHHoL9UCxcYSI', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:20:51', '2023-06-21 04:20:51', NULL, NULL), (125, 2, 'App\\Models\\PrepaidPlan', 1, 6, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, '0nYPmvEibK1T8rH8', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:21:45', '2023-06-21 04:21:45', NULL, NULL), (126, 2, 'App\\Models\\PrepaidPlan', 1, 7, 'NGN', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, '5QGHvS7rf7Nl9EYY', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:21:53', '2023-06-21 04:21:53', NULL, NULL), (127, 2, 'App\\Models\\PrepaidPlan', 1, 7, 'NGN', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'vA0KdNjLtax6LRVP', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:22:25', '2023-06-21 04:22:25', NULL, NULL), (128, 2, 'App\\Models\\PrepaidPlan', 1, 30, 'EUR', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '5.69000000', NULL, NULL, 'yN2FyugisXeEm2Ex', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:23:01', '2023-06-21 04:23:01', NULL, NULL), (129, 2, 'App\\Models\\PrepaidPlan', 1, 5, 'INR', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'edSrDCutF3mURw1x', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:23:25', '2023-06-21 04:23:25', NULL, NULL), (130, 2, 'App\\Models\\PrepaidPlan', 1, 16, 'INR', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '455.02690000', NULL, NULL, 'P4NvIb0IdKWtZT3h', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:23:33', '2023-06-21 04:23:33', NULL, NULL), (131, 2, 'App\\Models\\PrepaidPlan', 1, 16, 'INR', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '455.02690000', NULL, NULL, 'uYz69Mx3XJS8rjkU', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:23:45', '2023-06-21 04:23:45', NULL, NULL), (132, 2, 'App\\Models\\PrepaidPlan', 1, 29, 'NPR', '5.69000000', '0.00000000', '0.00000000', '0.00000000', '0.00000000', '751.30760000', NULL, NULL, '2h01JJn07HvqiOlJ', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:24:11', '2023-06-21 04:24:11', NULL, NULL), (133, 2, 'App\\Models\\PrepaidPlan', 1, 4, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'aivxeSIYj8RaWQqy', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:26:19', '2023-06-21 04:26:19', NULL, NULL), (134, 2, 'App\\Models\\PrepaidPlan', 1, 10, 'INR', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'ljV8nm4NdUCF8w8p', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:26:29', '2023-06-21 04:26:29', NULL, NULL), (135, 2, 'App\\Models\\PrepaidPlan', 1, 33, 'NPR', '5.69000000', '1.50000000', '0.08535000', '0.00000000', '0.08535000', '5.77535000', NULL, NULL, 'xwciuwrSOZuI6nGm', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:26:45', '2023-06-21 04:26:45', NULL, NULL), (136, 2, 'App\\Models\\PrepaidPlan', 1, 33, 'NPR', '5.69000000', '1.50000000', '0.08535000', '0.00000000', '0.08535000', '5.77535000', NULL, NULL, 'sTpXM0e5Iw5iDv1n', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:29:07', '2023-06-21 04:29:07', NULL, NULL), (137, 2, 'App\\Models\\PrepaidPlan', 1, 15, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'yQWI9v2zDZ3nBTVU', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:29:28', '2023-06-21 04:29:28', NULL, NULL), (138, 2, 'App\\Models\\PrepaidPlan', 1, 8, 'NGN', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '1584.64000000', NULL, NULL, 'Py3BIGAeXKa70VrG', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:29:38', '2023-06-21 04:29:38', NULL, NULL), (139, 2, 'App\\Models\\PrepaidPlan', 1, 27, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, '9AD8AD6E42B12BAD5A52B7349D265556.prod02-vm-tx17', '3jfPIkZcyuHPVlIX', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-21 04:30:59', '2023-06-21 04:32:39', NULL, NULL), (140, 2, 'App\\Models\\PrepaidPlan', 1, 7, 'NGN', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '1312.28000000', NULL, NULL, 'EHAsNPidKrOBap0M', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-24 00:05:53', '2023-06-24 00:05:53', NULL, NULL), (141, 32, 'App\\Models\\SubscriptionPurchase', 1, 7, 'NGN', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '2226.00000000', NULL, NULL, 'RJtikyLaVqLsIT61', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-24 00:18:30', '2023-06-24 00:18:30', NULL, NULL), (142, 33, 'App\\Models\\SubscriptionPurchase', 1, 7, 'NGN', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '2226.00000000', NULL, NULL, 'QYzysx92FSZAqcEt', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-24 01:06:41', '2023-06-24 01:06:41', NULL, NULL), (143, 1, 'App\\Models\\PrepaidPlan', 1, 10, 'INR', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '892.50000000', NULL, NULL, '3Kft5ncGNHKJGcoE', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-24 06:36:29', '2023-06-24 06:36:29', NULL, NULL), (144, 34, 'App\\Models\\SubscriptionPurchase', 1, 10, 'INR', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '892.50000000', NULL, NULL, 'BKOcFCUsIE41gLsQ', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-06-24 06:39:22', '2023-06-24 06:39:22', NULL, NULL), (145, 2, 'App\\Models\\PrepaidPlan', 1, 2, 'USD', '5.69000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '6.19000000', NULL, NULL, 'nxld3ehxkMt3UOwO', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-07-03 00:50:50', '2023-07-03 00:50:50', NULL, NULL), (146, 35, 'App\\Models\\SubscriptionPurchase', 1, 2, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, 'ieRntIiJSD8EasPy', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-07-03 00:51:06', '2023-07-03 00:51:06', NULL, NULL), (147, 36, 'App\\Models\\SubscriptionPurchase', 1, 5, 'INR', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, 'b7snlqow4Wbqn3Zn', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-07-03 00:51:53', '2023-07-03 00:51:53', NULL, NULL), (148, 37, 'App\\Models\\SubscriptionPurchase', 1, 1000, 'BDT', '10.00000000', '0.00000000', '0.00000000', '2.00000000', '2.00000000', '1008.00000000', NULL, NULL, 't5LImf6fTotvoWWG', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-07-03 00:52:16', '2023-07-03 00:52:16', NULL, NULL), (149, 38, 'App\\Models\\SubscriptionPurchase', 1, 3, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, 'Sln3jvFDB2EW5Yow', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-07-03 00:52:50', '2023-07-03 00:52:50', NULL, NULL), (150, 39, 'App\\Models\\SubscriptionPurchase', 1, 14, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, 'CMM9aZJrpxEQX6AF', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-07-03 00:52:55', '2023-07-03 00:52:55', NULL, NULL), (151, 39, 'App\\Models\\SubscriptionPurchase', 1, 14, 'USD', '10.00000000', '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.50000000', NULL, NULL, '1M60AsQFVY8uamct', 0, NULL, NULL, 'demo@gmail.com', NULL, NULL, '2023-07-03 03:17:05', '2023-07-03 03:17:05', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `language_id` bigint(20) UNSIGNED DEFAULT NULL, `template_key` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_from` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `template` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sms_body` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_keys` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mail_status` tinyint(1) NOT NULL DEFAULT 0, `sms_status` tinyint(1) NOT NULL DEFAULT 0, `lang_code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notify_for` tinyint(1) DEFAULT 0 COMMENT '0=>user, 1=>admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `email_templates` -- INSERT INTO `email_templates` (`id`, `language_id`, `template_key`, `email_from`, `name`, `subject`, `template`, `sms_body`, `short_keys`, `mail_status`, `sms_status`, `lang_code`, `notify_for`, `created_at`, `updated_at`) VALUES (30, 1, 'USER_BUY_PLAN', 'support@example.com', 'User Buy Plan', 'Buy Plan', '[[planName]] Plan buy for [[amount]] [[currency]]. Transaction [[transaction]]', '[[planName]] Plan buy for [[amount]] [[currency]]. Transaction [[transaction]]', '{\"amount\":\"Amount\",\"currency\":\"Currency\",\"planName\":\"Plan Name\",\"transaction\":\"Transaction Number\"}', 1, 1, 'en', 0, NULL, '2022-11-14 07:47:27'), (32, 1, 'ADD_BALANCE_USER', 'support@example.com', 'Add balance to user', 'Add balance', '[[amount]] [[type]] add your balance.', '[[amount]] [[type]] add your balance.', '{\"amount\":\"Amount\",\"type\":\"Balance Type\"}', 1, 1, 'en', 0, NULL, '2022-11-14 07:47:27'), (33, 1, 'ADD_BALANCE_ADMIN', 'support@example.com', 'Add Balance user admin', 'Add Balance by user', '[[amount]] [[type]] add your balance.', '[[amount]] [[type]] add your balance.', '{\"amount\":\"Amount\",\"type\":\"Balance Type\"}', 1, 1, 'en', 1, NULL, '2022-11-14 07:47:27'), (34, 1, 'VERIFICATION_CODE', 'support@example.com', 'Verification Code', 'verify your email', 'Your email verification code [[code]]', 'Your sms verification code [[code]]', '{\"code\":\"code\"}', 1, 1, 'en', 0, NULL, '2022-11-14 07:47:27'), (39, 1, 'PASSWORD_RESET', 'support@example.com', 'Reset Password Notification', 'Reset Password Notification', 'You are receiving this email because we received a password reset request for your account.[[message]]\r\n\r\n\r\nThis password reset link will expire in 60 minutes.\r\n\r\nIf you did not request a password reset, no further action is required.', 'You are receiving this email because we received a password reset request for your account. [[message]]', '{\"message\":\"message\"}', 1, 1, 'en', 0, '2021-10-31 05:27:16', '2022-11-14 07:47:27'), (43, 1, 'PAYMENT_REJECTED', 'support@example.com', 'Payment Rejected', 'Payment Rejected', 'Your payment [[amount]] [[currency]] by [[method]] has been rejected.\r\nTrasanction Id = [[transaction]]\r\nFeedback = [[feedback]] ', 'Your payment [[amount]] [[currency]] by [[method]] has been rejected.\r\nTrasanction Id = [[transaction]]\r\nFeedback = [[feedback]] ', '{\"amount\":\"amount\",\"currency\":\"currency\",\"method\":\"method\",\"transaction\":\"Transaction Number\",\"feedback\":\"feedback\"}', 1, 1, 'en', 0, NULL, '2022-11-14 07:47:27'), (44, 1, 'DEDUCTED_BALANCE', 'support@example.com', 'Deduct Balance', 'Deduct Balance', '[[amount]] [[type]] deduct from your balance.', '[[amount]] [[type]] add your balance.', '{\"amount\":\"Amount\",\"type\":\"Balance Type\"}', 1, 1, 'en', 0, NULL, '2022-11-14 07:47:27'), (45, 1, 'USER_BUY_PLAN_ADMIN', 'support@example.com', 'User Buy Plan Admin', 'Buy A Plan', '[[user]] [[planName]] Plan buy for [[amount]] [[currency]]. Transaction [[transaction]]', '[[user]] [[planName]] Plan buy for [[amount]] [[currency]]. Transaction [[transaction]]', '{\"user\":\"User\",\"amount\":\"Amount\",\"currency\":\"Currency\",\"planName\":\"Plan Name\",\"transaction\":\"Transaction Number\"}', 1, 1, 'en', 0, NULL, '2022-11-14 07:47:27'); -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `favourite_templates` -- CREATE TABLE `favourite_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `template_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `favourite_templates` -- INSERT INTO `favourite_templates` (`id`, `user_id`, `template_code`, `template_type`, `created_at`, `updated_at`) VALUES (3, 1, 'ABWGU', NULL, '2023-05-31 07:20:03', '2023-05-31 07:20:03'), (9, 1, 'XHFHR', NULL, '2023-05-31 07:41:42', '2023-05-31 07:41:42'), (11, 1, 'YKZTW', NULL, '2023-06-05 04:05:04', '2023-06-05 04:05:04'), (12, 1, 'RDJEZ', NULL, '2023-06-21 05:31:10', '2023-06-21 05:31:10'); -- -------------------------------------------------------- -- -- Table structure for table `firebase_notifies` -- CREATE TABLE `firebase_notifies` ( `id` bigint(20) UNSIGNED NOT NULL, `server_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vapid_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `api_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `project_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `storage_bucket` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `messaging_sender_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `measurement_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_foreground` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0=> off, 1=> on', `user_background` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0=> off, 1=> on', `admin_foreground` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0=> off, 1=> on', `admin_background` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0=> off, 1=> on', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `firebase_notifies` -- INSERT INTO `firebase_notifies` (`id`, `server_key`, `vapid_key`, `api_key`, `auth_domain`, `project_id`, `storage_bucket`, `messaging_sender_id`, `app_id`, `measurement_id`, `user_foreground`, `user_background`, `admin_foreground`, `admin_background`, `created_at`, `updated_at`) VALUES (1, 'AAAAWq_fWjY:APA91bEuwbxHUrkzaJbaCMlHBr5prXPkmbj24tCz0rkZKoztv5ZuQ700zBnszZM5WfHmzlij5CyIuhwHB9oXCEm-3WcDwGis_v_qpxw83Jn6ymaUrrUtKEL54rHNYSY6afAd8VFYHEJL', 'BBVgeZXmfpojPR8382TbWRBRn2ot2fayLGOwIvJmrh-SYdmsLZ9jAaWt0mre3lTjemReKNDVN_W4lgULqHjZzkk', 'AIzaSyDcoodTVLeJjpZKqzKDTn2TesCm-ygpH90', 'bug-test-f9efb.appspot.com', 'bug-test-f9efb', 'bug-test-f9efb.appspot.com', '389497707062', '1:389497707062:web:71d798c51ab8baaff31697', 'G-NE55VEBQST', 1, 1, 1, 1, '2023-02-16 09:48:01', '2023-03-13 06:14:10'); -- -------------------------------------------------------- -- -- Table structure for table `funds` -- CREATE TABLE `funds` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `admin_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'Deposit from admin', `percentage` decimal(18,8) NOT NULL DEFAULT 0.00000000 COMMENT 'Percent of charge', `charge_percentage` decimal(18,8) NOT NULL DEFAULT 0.00000000 COMMENT 'After adding percent of charge', `charge_fixed` decimal(18,8) NOT NULL DEFAULT 0.00000000, `charge` decimal(18,8) NOT NULL DEFAULT 0.00000000, `amount` decimal(18,8) NOT NULL DEFAULT 0.00000000, `received_amount` decimal(18,8) NOT NULL DEFAULT 0.00000000 COMMENT 'Amount add to receiver', `note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=Success,0=Pending', `utr` char(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_id` varchar(61) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `funds` -- INSERT INTO `funds` (`id`, `user_id`, `admin_id`, `percentage`, `charge_percentage`, `charge_fixed`, `charge`, `amount`, `received_amount`, `note`, `email`, `status`, `utr`, `payment_id`, `created_at`, `updated_at`) VALUES (12, 1, NULL, '0.00000000', '0.00000000', '0.50000000', '0.50000000', '5.69000000', '0.00000000', NULL, 'demo@gmail.com', 1, '1GcvAaZCe7DZElA8', NULL, '2023-06-20 03:12:27', '2023-06-20 03:12:27'), (13, 1, NULL, '0.00000000', '0.00000000', '2.00000000', '2.00000000', '5.69000000', '0.00000000', NULL, 'demo@gmail.com', 1, 'YsGPEwLcdLjolsDH', NULL, '2023-06-20 03:15:44', '2023-06-20 03:15:44'), (14, 1, NULL, '0.00000000', '0.00000000', '0.50000000', '0.50000000', '10.00000000', '0.00000000', NULL, 'demo@gmail.com', 1, '5rssLkmrKIzC4UNL', NULL, '2023-06-20 06:46:01', '2023-06-20 06:46:01'), (15, 1, NULL, '0.00000000', '0.00000000', '0.50000000', '0.50000000', '5.69000000', '0.00000000', NULL, 'demo@gmail.com', 1, 'saf75Gf3h5bU2u5f', NULL, '2023-06-21 03:12:23', '2023-06-21 03:12:23'), (16, 1, NULL, '0.00000000', '0.00000000', '0.50000000', '0.50000000', '5.69000000', '0.00000000', NULL, 'demo@gmail.com', 1, 'wNtkn6yyIeTVpYFS', NULL, '2023-06-21 03:18:21', '2023-06-21 03:18:21'); -- -------------------------------------------------------- -- -- Table structure for table `gateways` -- CREATE TABLE `gateways` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `sort_by` int(11) DEFAULT 1, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0: inactive, 1: active', `parameters` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currencies` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `extra_parameters` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `is_sandbox` tinyint(1) NOT NULL DEFAULT 0, `environment` enum('test','live') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `min_amount` decimal(18,8) NOT NULL, `max_amount` decimal(18,8) NOT NULL, `percentage_charge` decimal(18,8) NOT NULL DEFAULT 0.00000000, `fixed_charge` decimal(18,8) NOT NULL DEFAULT 0.00000000, `convention_rate` decimal(18,8) NOT NULL DEFAULT 1.00000000, `note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_subscription` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'subscription is allow this gateway', `subscription_status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=>inactive, 1=>active', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `gateways` -- INSERT INTO `gateways` (`id`, `code`, `name`, `sort_by`, `image`, `driver`, `status`, `parameters`, `currencies`, `extra_parameters`, `currency`, `symbol`, `is_sandbox`, `environment`, `min_amount`, `max_amount`, `percentage_charge`, `fixed_charge`, `convention_rate`, `note`, `is_subscription`, `subscription_status`, `created_at`, `updated_at`) VALUES (1, 'paypal', 'Paypal', 1, 'gateway/9U6nCLNphxxyj0JGe5TJpU6z8ZsWzKPsDIHRvI3h.jpg', 'local', 1, '{\"cleint_id\":\"AUrvcotEVWZkksiGir6Ih4PyalQcguQgGN-7We5O1wBny3tg1w6srbQzi6GQEO8lP3yJVha2C6lyivK9\",\"secret\":\"EPx-YEgvjKDRFFu3FAsMue_iUMbMH6jHu408rHdn4iGrUCM8M12t7mX8hghUBAWwvWErBOa4Uppfp0Eh\"}', '{\"0\":{\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"HKD\":\"HKD\",\"HUF\":\"HUF\",\"INR\":\"INR\",\"ILS\":\"ILS\",\"JPY\":\"JPY\",\"MYR\":\"MYR\",\"MXN\":\"MXN\",\"TWD\":\"TWD\",\"NZD\":\"NZD\",\"NOK\":\"NOK\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"GBP\":\"GBP\",\"RUB\":\"RUB\",\"SGD\":\"SGD\",\"SEK\":\"SEK\",\"CHF\":\"CHF\",\"THB\":\"THB\",\"USD\":\"USD\"}}', NULL, 'USD', 'USD', 1, 'test', '5.00000000', '500.00000000', '1.00000000', '0.52000000', '1.00000000', NULL, 1, 1, '2020-09-10 09:05:02', '2023-06-18 00:16:24'), (2, 'stripe', 'Stripe ', 2, 'gateway/8OKez4XVZnczItMlgr8lIApmka9lb1iR9tGJCPft.jpg', 'local', 1, '{\"secret_key\":\"sk_test_aat3tzBCCXXBkS4sxY3M8A1B\",\"publishable_key\":\"pk_test_AU3G7doZ1sbdpJLj0NaozPBu\"}', '{\"0\":{\"USD\":\"USD\",\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"INR\":\"INR\",\"JPY\":\"JPY\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PLN\":\"PLN\",\"SEK\":\"SEK\",\"SGD\":\"SGD\"}}', NULL, 'USD', 'USD', 1, 'test', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 1, 1, '2020-09-10 09:05:02', '2023-06-12 06:53:02'), (3, 'skrill', 'Skrill', 3, 'gateway/te5ihVdIMSfs2xM8EKmh6nDWqJVLLeOmzwMrG79E.jpg', 'local', 1, '{\"pay_to_email\":\"mig33@gmail.com\",\"secret_key\":\"SECRETKEY\"}', '{\"0\":{\"AED\":\"AED\",\"AUD\":\"AUD\",\"BGN\":\"BGN\",\"BHD\":\"BHD\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"HRK\":\"HRK\",\"HUF\":\"HUF\",\"ILS\":\"ILS\",\"INR\":\"INR\",\"ISK\":\"ISK\",\"JOD\":\"JOD\",\"JPY\":\"JPY\",\"KRW\":\"KRW\",\"KWD\":\"KWD\",\"MAD\":\"MAD\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"OMR\":\"OMR\",\"PLN\":\"PLN\",\"QAR\":\"QAR\",\"RON\":\"RON\",\"RSD\":\"RSD\",\"SAR\":\"SAR\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"THB\":\"THB\",\"TND\":\"TND\",\"TRY\":\"TRY\",\"TWD\":\"TWD\",\"USD\":\"USD\",\"ZAR\":\"ZAR\",\"COP\":\"COP\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:24:32'), (4, 'perfectmoney', 'Perfect Money', 21, 'gateway/WiYtdmCZTPPtHVQ35aapB9EwrhQ5gbrS8lw4n91s.jpg', 'local', 1, '{\"passphrase\":\"112233445566\",\"payee_account\":\"U26203997\"}', '{\"0\":{\"USD\":\"USD\",\"EUR\":\"EUR\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:30:06'), (5, 'paytm', 'PayTM', 19, 'gateway/u0FQQKV1RcoayftcSaAhvYyCs35UbFfjzYXSXtHx.jpg', 'local', 1, '{\"MID\":\"uAOkSk48844590235401\",\"merchant_key\":\"pcB_oEk_R@kbm1c1\",\"WEBSITE\":\"DIYtestingweb\",\"INDUSTRY_TYPE_ID\":\"Retail\",\"CHANNEL_ID\":\"WEB\"}', '{\"0\":{\"AUD\":\"AUD\",\"ARS\":\"ARS\",\"BDT\":\"BDT\",\"BRL\":\"BRL\",\"BGN\":\"BGN\",\"CAD\":\"CAD\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"COP\":\"COP\",\"HRK\":\"HRK\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EGP\":\"EGP\",\"EUR\":\"EUR\",\"GEL\":\"GEL\",\"GHS\":\"GHS\",\"HKD\":\"HKD\",\"HUF\":\"HUF\",\"INR\":\"INR\",\"IDR\":\"IDR\",\"ILS\":\"ILS\",\"JPY\":\"JPY\",\"KES\":\"KES\",\"MYR\":\"MYR\",\"MXN\":\"MXN\",\"MAD\":\"MAD\",\"NPR\":\"NPR\",\"NZD\":\"NZD\",\"NGN\":\"NGN\",\"NOK\":\"NOK\",\"PKR\":\"PKR\",\"PEN\":\"PEN\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"RON\":\"RON\",\"RUB\":\"RUB\",\"SGD\":\"SGD\",\"ZAR\":\"ZAR\",\"KRW\":\"KRW\",\"LKR\":\"LKR\",\"SEK\":\"SEK\",\"CHF\":\"CHF\",\"THB\":\"THB\",\"TRY\":\"TRY\",\"UGX\":\"UGX\",\"UAH\":\"UAH\",\"AED\":\"AED\",\"GBP\":\"GBP\",\"USD\":\"USD\",\"VND\":\"VND\",\"XOF\":\"XOF\"}}', NULL, 'INR', 'INR', 1, 'test', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:29:26'), (6, 'payeer', 'Payeer', 17, 'gateway/Bpdm5j8DbsXMEEa0DinJXVTbd6cOSV0CbGIpkYJb.jpg', 'local', 1, '{\"merchant_id\":\"1142293755\",\"secret_key\":\"1122334455\"}', '{\"0\":{\"USD\":\"USD\",\"EUR\":\"EUR\",\"RUB\":\"RUB\"}}', '{\"status\":\"ipn\"}', 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:28:56'), (7, 'paystack', 'PayStack', 18, 'gateway/xwa4bIMcJ55nrp34IQCpaarhrVqVekEM8wR7dPi7.jpg', 'local', 1, '{\"public_key\":\"pk_test_f922aa1a87101e3fd029e13024006862fdc0b8c7\",\"secret_key\":\"sk_test_b8d571f97c1b41d409ba339eb20b005377751dff\"}', '{\"0\":{\"USD\":\"USD\",\"NGN\":\"NGN\"}}', '{\"callback\":\"ipn\",\"webhook\":\"ipn\"}\r\n', 'NGN', 'NGN', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '212.00000000', NULL, 1, 1, '2020-09-10 09:05:02', '2023-06-23 23:50:18'), (8, 'voguepay', 'VoguePay', 24, 'gateway/MiibHBxNvd4SDtFv3o0NAOqhXJSWr6Wz65SzwgUd.jpg', 'local', 1, '{\"merchant_id\":\"3242-0112543\"}', '{\"0\":{\"NGN\":\"NGN\",\"USD\":\"USD\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"ZAR\":\"ZAR\",\"JPY\":\"JPY\",\"INR\":\"INR\",\"AUD\":\"AUD\",\"CAD\":\"CAD\",\"NZD\":\"NZD\",\"NOK\":\"NOK\",\"PLN\":\"PLN\"}}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n', NULL, 'NGN', 'NGN', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '256.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:31:31'), (9, 'flutterwave', 'Flutterwave', 13, 'gateway/EkOTCLAUblHymWSc80O14Dwe5K2vYcw882w1liry.jpg', 'local', 1, '{\"public_key\":\"FLWPUBK_TEST-5003321b93b251536fd2e7e05232004f-X\",\"secret_key\":\"FLWSECK_TEST-d604361e2d4962f4bb2a400c5afefab1-X\",\"encryption_key\":\"FLWSECK_TEST817a365e142b\"}\r\n\r\n', '{\"0\":{\"KES\":\"KES\",\"GHS\":\"GHS\",\"NGN\":\"NGN\",\"USD\":\"USD\",\"GBP\":\"GBP\",\"EUR\":\"EUR\",\"UGX\":\"UGX\",\"TZS\":\"TZS\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:27:57'), (10, 'razorpay', 'RazorPay', 22, 'gateway/LOWup5W2ZG7JSh5WQS6wcI5DLtzawAbTRfEIlocy.jpg', 'local', 1, '{\"key_id\":\"rzp_test_AeUmeHo5dloK0M\",\"key_secret\":\"nSZGWRlLTfdcMaZ2zJN7p26B\"}', '{\"0\":{\"INR\":\"INR\"}}', NULL, 'INR', 'INR', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '85.00000000', NULL, 1, 1, '2020-09-10 09:05:02', '2023-06-24 06:15:58'), (11, 'instamojo', 'instamojo', 6, 'gateway/KHWGC7l0vTZb5ggsBC67OdCqTUZpifOvw4N9msIs.jpg', 'local', 1, '{\"api_key\":\"test_2241633c3bc44a3de84a3b33969\",\"auth_token\":\"test_279f083f7bebefd35217feef22d\",\"salt\":\"19d38908eeff4f58b2ddda2c6d86ca25\"}', '{\"0\":{\"INR\":\"INR\"}}', NULL, 'INR', 'INR', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '73.51000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:25:26'), (12, 'mollie', 'Mollie', 15, 'gateway/U4rpGRIWSOfEFrWfrFsWeZzDZUWs4Eo4FfDqMK15.jpg', 'local', 1, '{\"api_key\":\"test_cucfwKTWfft9s337qsVfn5CC4vNkrn\"}', '{\"0\":{\"AED\":\"AED\",\"AUD\":\"AUD\",\"BGN\":\"BGN\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"HRK\":\"HRK\",\"HUF\":\"HUF\",\"ILS\":\"ILS\",\"ISK\":\"ISK\",\"JPY\":\"JPY\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"RON\":\"RON\",\"RUB\":\"RUB\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"THB\":\"THB\",\"TWD\":\"TWD\",\"USD\":\"USD\",\"ZAR\":\"ZAR\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '73.51000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:28:28'), (13, 'twocheckout', '2checkout', 5, 'gateway/kPRTkESd48HqtFaC9SLfTz124LamYavtfPJLvlGq.jpg', 'local', 1, '{\"merchant_code\":\"250507228545\",\"secret_key\":\"=+0CNzfvTItqp*ygwiQE\"}', '{\"0\":{\"AFN\":\"AFN\",\"ALL\":\"ALL\",\"DZD\":\"DZD\",\"ARS\":\"ARS\",\"AUD\":\"AUD\",\"AZN\":\"AZN\",\"BSD\":\"BSD\",\"BDT\":\"BDT\",\"BBD\":\"BBD\",\"BZD\":\"BZD\",\"BMD\":\"BMD\",\"BOB\":\"BOB\",\"BWP\":\"BWP\",\"BRL\":\"BRL\",\"GBP\":\"GBP\",\"BND\":\"BND\",\"BGN\":\"BGN\",\"CAD\":\"CAD\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"COP\":\"COP\",\"CRC\":\"CRC\",\"HRK\":\"HRK\",\"CZK\":\"CZK\",\"DKK\":\"DKK\",\"DOP\":\"DOP\",\"XCD\":\"XCD\",\"EGP\":\"EGP\",\"EUR\":\"EUR\",\"FJD\":\"FJD\",\"GTQ\":\"GTQ\",\"HKD\":\"HKD\",\"HNL\":\"HNL\",\"HUF\":\"HUF\",\"INR\":\"INR\",\"IDR\":\"IDR\",\"ILS\":\"ILS\",\"JMD\":\"JMD\",\"JPY\":\"JPY\",\"KZT\":\"KZT\",\"KES\":\"KES\",\"LAK\":\"LAK\",\"MMK\":\"MMK\",\"LBP\":\"LBP\",\"LRD\":\"LRD\",\"MOP\":\"MOP\",\"MYR\":\"MYR\",\"MVR\":\"MVR\",\"MRO\":\"MRO\",\"MUR\":\"MUR\",\"MXN\":\"MXN\",\"MAD\":\"MAD\",\"NPR\":\"NPR\",\"TWD\":\"TWD\",\"NZD\":\"NZD\",\"NIO\":\"NIO\",\"NOK\":\"NOK\",\"PKR\":\"PKR\",\"PGK\":\"PGK\",\"PEN\":\"PEN\",\"PHP\":\"PHP\",\"PLN\":\"PLN\",\"QAR\":\"QAR\",\"RON\":\"RON\",\"RUB\":\"RUB\",\"WST\":\"WST\",\"SAR\":\"SAR\",\"SCR\":\"SCR\",\"SGD\":\"SGD\",\"SBD\":\"SBD\",\"ZAR\":\"ZAR\",\"KRW\":\"KRW\",\"LKR\":\"LKR\",\"SEK\":\"SEK\",\"CHF\":\"CHF\",\"SYP\":\"SYP\",\"THB\":\"THB\",\"TOP\":\"TOP\",\"TTD\":\"TTD\",\"TRY\":\"TRY\",\"UAH\":\"UAH\",\"AED\":\"AED\",\"USD\":\"USD\",\"VUV\":\"VUV\",\"VND\":\"VND\",\"XOF\":\"XOF\",\"YER\":\"YER\"}}', '{\"approved_url\":\"ipn\"}', 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:25:05'), (14, 'authorizenet', 'Authorize.Net', 4, 'gateway/m2w61mLOtmvF7BqH5BCvoEhRscd3FV5LezwWC1Zm.jpg', 'local', 1, '{\"login_id\":\"35s2ZJWTh2\",\"current_transaction_key\":\"3P425sHVwE8t2CzX\"}', '{\"0\":{\"AUD\":\"AUD\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"NOK\":\"NOK\",\"NZD\":\"NZD\",\"PLN\":\"PLN\",\"SEK\":\"SEK\",\"USD\":\"USD\"}}', NULL, 'USD', 'USD', 1, 'test', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:24:42'), (15, 'securionpay', 'SecurionPay', 23, 'gateway/s5ochBkg5Fu4gbw6RXUsDxTPu5M4yXCSHJAHA1Be.jpg', 'local', 1, '{\"public_key\":\"pk_test_VZEUdaL8fYjBVbDOSkPFcgE0\",\"secret_key\":\"sk_test_yd5JJnYpsEoKtlaXDBkAFpse\"}', '{\"0\":{\"AFN\":\"AFN\", \"DZD\":\"DZD\", \"ARS\":\"ARS\", \"AUD\":\"AUD\", \"BHD\":\"BHD\", \"BDT\":\"BDT\", \"BYR\":\"BYR\", \"BAM\":\"BAM\", \"BWP\":\"BWP\", \"BRL\":\"BRL\", \"BND\":\"BND\", \"BGN\":\"BGN\", \"CAD\":\"CAD\", \"CLP\":\"CLP\", \"CNY\":\"CNY\", \"COP\":\"COP\", \"KMF\":\"KMF\", \"HRK\":\"HRK\", \"CZK\":\"CZK\", \"DKK\":\"DKK\", \"DJF\":\"DJF\", \"DOP\":\"DOP\", \"EGP\":\"EGP\", \"ETB\":\"ETB\", \"ERN\":\"ERN\", \"EUR\":\"EUR\", \"GEL\":\"GEL\", \"HKD\":\"HKD\", \"HUF\":\"HUF\", \"ISK\":\"ISK\", \"INR\":\"INR\", \"IDR\":\"IDR\", \"IRR\":\"IRR\", \"IQD\":\"IQD\", \"ILS\":\"ILS\", \"JMD\":\"JMD\", \"JPY\":\"JPY\", \"JOD\":\"JOD\", \"KZT\":\"KZT\", \"KES\":\"KES\", \"KWD\":\"KWD\", \"KGS\":\"KGS\", \"LVL\":\"LVL\", \"LBP\":\"LBP\", \"LTL\":\"LTL\", \"MOP\":\"MOP\", \"MKD\":\"MKD\", \"MGA\":\"MGA\", \"MWK\":\"MWK\", \"MYR\":\"MYR\", \"MUR\":\"MUR\", \"MXN\":\"MXN\", \"MDL\":\"MDL\", \"MAD\":\"MAD\", \"MZN\":\"MZN\", \"NAD\":\"NAD\", \"NPR\":\"NPR\", \"ANG\":\"ANG\", \"NZD\":\"NZD\", \"NOK\":\"NOK\", \"OMR\":\"OMR\", \"PKR\":\"PKR\", \"PEN\":\"PEN\", \"PHP\":\"PHP\", \"PLN\":\"PLN\", \"QAR\":\"QAR\", \"RON\":\"RON\", \"RUB\":\"RUB\", \"SAR\":\"SAR\", \"RSD\":\"RSD\", \"SGD\":\"SGD\", \"ZAR\":\"ZAR\", \"KRW\":\"KRW\", \"IKR\":\"IKR\", \"LKR\":\"LKR\", \"SEK\":\"SEK\", \"CHF\":\"CHF\", \"SYP\":\"SYP\", \"TWD\":\"TWD\", \"TZS\":\"TZS\", \"THB\":\"THB\", \"TND\":\"TND\", \"TRY\":\"TRY\", \"UAH\":\"UAH\", \"AED\":\"AED\", \"GBP\":\"GBP\", \"USD\":\"USD\", \"VEB\":\"VEB\", \"VEF\":\"VEF\", \"VND\":\"VND\", \"XOF\":\"XOF\", \"YER\":\"YER\", \"ZMK\":\"ZMK\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:30:57'), (16, 'payumoney', 'PayUmoney', 20, 'gateway/8i9L1sQBVFeOWHP0YlJIdKHEM2jEjZsxP3TmkQ3r.jpg', 'local', 1, '{\"merchant_key\":\"gtKFFx\",\"salt\":\"eCwWELxi\"}', '{\"0\":{\"INR\":\"INR\"}}', NULL, 'INR', 'INR', 1, 'test', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '73.51000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:29:42'), (17, 'mercadopago', 'Mercado Pago', 14, 'gateway/txJpZJjadTzUqGmzCmAtGU5KRalELLmvDpYx7aUU.jpg', 'local', 1, '{\"access_token\":\"TEST-705032440135962-041006-ad2e021853f22338fe1a4db9f64d1491-421886156\"}', '{\"0\":{\"ARS\":\"ARS\",\"BOB\":\"BOB\",\"BRL\":\"BRL\",\"CLF\":\"CLF\",\"CLP\":\"CLP\",\"COP\":\"COP\",\"CRC\":\"CRC\",\"CUC\":\"CUC\",\"CUP\":\"CUP\",\"DOP\":\"DOP\",\"EUR\":\"EUR\",\"GTQ\":\"GTQ\",\"HNL\":\"HNL\",\"MXN\":\"MXN\",\"NIO\":\"NIO\",\"PAB\":\"PAB\",\"PEN\":\"PEN\",\"PYG\":\"PYG\",\"USD\":\"USD\",\"UYU\":\"UYU\",\"VEF\":\"VEF\",\"VES\":\"VES\"}}', NULL, 'BRL', 'BRL', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '3715.12000000', NULL, 0, 0, '2020-09-10 09:05:02', '2023-06-14 01:01:08'), (18, 'coingate', 'Coingate', 11, 'gateway/0DkRUvP0E0mJsgrasnyEdm1HYWxNkZZ6V83mFDKh.jpg', 'local', 1, '{\"api_key\":\"Ba1VgPx6d437xLXGKCBkmwVCEw5kHzRJ6thbGo-N\"}', '{\"0\":{\"USD\":\"USD\",\"EUR\":\"EUR\"}}', NULL, 'USD', 'USD', 1, 'test', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:27:25'), (19, 'coinbasecommerce', 'Coinbase Commerce', 10, 'gateway/2KykVCl41Uz4Rnbj5NGlzUBGAtbY3VvrTrANiXCC.jpg', 'local', 1, '{\"api_key\":\"c71152b8-ab4e-4712-a421-c5c7ea5165a2\",\"secret\":\"a709d081-e693-46e0-8a34-61fd785b20b3\"}', '{\"0\":{\"AED\":\"AED\",\"AFN\":\"AFN\",\"ALL\":\"ALL\",\"AMD\":\"AMD\",\"ANG\":\"ANG\",\"AOA\":\"AOA\",\"ARS\":\"ARS\",\"AUD\":\"AUD\",\"AWG\":\"AWG\",\"AZN\":\"AZN\",\"BAM\":\"BAM\",\"BBD\":\"BBD\",\"BDT\":\"BDT\",\"BGN\":\"BGN\",\"BHD\":\"BHD\",\"BIF\":\"BIF\",\"BMD\":\"BMD\",\"BND\":\"BND\",\"BOB\":\"BOB\",\"BRL\":\"BRL\",\"BSD\":\"BSD\",\"BTN\":\"BTN\",\"BWP\":\"BWP\",\"BYN\":\"BYN\",\"BZD\":\"BZD\",\"CAD\":\"CAD\",\"CDF\":\"CDF\",\"CHF\":\"CHF\",\"CLF\":\"CLF\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"COP\":\"COP\",\"CRC\":\"CRC\",\"CUC\":\"CUC\",\"CUP\":\"CUP\",\"CVE\":\"CVE\",\"CZK\":\"CZK\",\"DJF\":\"DJF\",\"DKK\":\"DKK\",\"DOP\":\"DOP\",\"DZD\":\"DZD\",\"EGP\":\"EGP\",\"ERN\":\"ERN\",\"ETB\":\"ETB\",\"EUR\":\"EUR\",\"FJD\":\"FJD\",\"FKP\":\"FKP\",\"GBP\":\"GBP\",\"GEL\":\"GEL\",\"GGP\":\"GGP\",\"GHS\":\"GHS\",\"GIP\":\"GIP\",\"GMD\":\"GMD\",\"GNF\":\"GNF\",\"GTQ\":\"GTQ\",\"GYD\":\"GYD\",\"HKD\":\"HKD\",\"HNL\":\"HNL\",\"HRK\":\"HRK\",\"HTG\":\"HTG\",\"HUF\":\"HUF\",\"IDR\":\"IDR\",\"ILS\":\"ILS\",\"IMP\":\"IMP\",\"INR\":\"INR\",\"IQD\":\"IQD\",\"IRR\":\"IRR\",\"ISK\":\"ISK\",\"JEP\":\"JEP\",\"JMD\":\"JMD\",\"JOD\":\"JOD\",\"JPY\":\"JPY\",\"KES\":\"KES\",\"KGS\":\"KGS\",\"KHR\":\"KHR\",\"KMF\":\"KMF\",\"KPW\":\"KPW\",\"KRW\":\"KRW\",\"KWD\":\"KWD\",\"KYD\":\"KYD\",\"KZT\":\"KZT\",\"LAK\":\"LAK\",\"LBP\":\"LBP\",\"LKR\":\"LKR\",\"LRD\":\"LRD\",\"LSL\":\"LSL\",\"LYD\":\"LYD\",\"MAD\":\"MAD\",\"MDL\":\"MDL\",\"MGA\":\"MGA\",\"MKD\":\"MKD\",\"MMK\":\"MMK\",\"MNT\":\"MNT\",\"MOP\":\"MOP\",\"MRO\":\"MRO\",\"MUR\":\"MUR\",\"MVR\":\"MVR\",\"MWK\":\"MWK\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"MZN\":\"MZN\",\"NAD\":\"NAD\",\"NGN\":\"NGN\",\"NIO\":\"NIO\",\"NOK\":\"NOK\",\"NPR\":\"NPR\",\"NZD\":\"NZD\",\"OMR\":\"OMR\",\"PAB\":\"PAB\",\"PEN\":\"PEN\",\"PGK\":\"PGK\",\"PHP\":\"PHP\",\"PKR\":\"PKR\",\"PLN\":\"PLN\",\"PYG\":\"PYG\",\"QAR\":\"QAR\",\"RON\":\"RON\",\"RSD\":\"RSD\",\"RUB\":\"RUB\",\"RWF\":\"RWF\",\"SAR\":\"SAR\",\"SBD\":\"SBD\",\"SCR\":\"SCR\",\"SDG\":\"SDG\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"SHP\":\"SHP\",\"SLL\":\"SLL\",\"SOS\":\"SOS\",\"SRD\":\"SRD\",\"SSP\":\"SSP\",\"STD\":\"STD\",\"SVC\":\"SVC\",\"SYP\":\"SYP\",\"SZL\":\"SZL\",\"THB\":\"THB\",\"TJS\":\"TJS\",\"TMT\":\"TMT\",\"TND\":\"TND\",\"TOP\":\"TOP\",\"TRY\":\"TRY\",\"TTD\":\"TTD\",\"TWD\":\"TWD\",\"TZS\":\"TZS\",\"UAH\":\"UAH\",\"UGX\":\"UGX\",\"USD\":\"USD\",\"UYU\":\"UYU\",\"UZS\":\"UZS\",\"VEF\":\"VEF\",\"VND\":\"VND\",\"VUV\":\"VUV\",\"WST\":\"WST\",\"XAF\":\"XAF\",\"XAG\":\"XAG\",\"XAU\":\"XAU\",\"XCD\":\"XCD\",\"XDR\":\"XDR\",\"XOF\":\"XOF\",\"XPD\":\"XPD\",\"XPF\":\"XPF\",\"XPT\":\"XPT\",\"YER\":\"YER\",\"ZAR\":\"ZAR\",\"ZMW\":\"ZMW\",\"ZWL\":\"ZWL\"}}', '{\"webhook\":\"ipn\"}', 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:27:12'), (20, 'monnify', 'Monnify', 16, 'gateway/E3Rq7SylmFib8GR0R1Ljd1YaK7kuAinaoJ9wi2QC.jpg', 'local', 1, '{\"api_key\":\"MK_TEST_LB5KJDYD65\",\"secret_key\":\"WM9B4GSW826XRCNABM3NF92K9957CVMU\", \"contract_code\":\"5566252118\"}', '{\"0\":{\"NGN\":\"NGN\"}}', NULL, 'NGN', 'NGN', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:28:41'), (21, 'blockio', 'Block.io', 7, 'gateway/lkPBVm5JSyv57Rs07HSe5mW83uERfgN6Buw5aeaG.jpg', 'local', 1, '{\"api_key\":\"1d97-a9af-6521-a330\",\"api_pin\":\"654abc654opp\"}', '{\"1\":{\"BTC\":\"BTC\",\"LTC\":\"LTC\",\"DOGE\":\"DOGE\"}}', '{\"cron\":\"ipn\"}', 'BTC', 'BTC', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '0.00004200', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:25:49'), (22, 'coinpayments', 'CoinPayments', 12, 'gateway/Y8Iumg9DlLacvt21dHr02nOwQhpwwBxummL09LfN.jpg', 'local', 1, '{\"merchant_id\":\"93a1e014c4ad60a7980b4a7239673cb4\",\"private_key\":\"Cb6dee7af8Eb9E0D4123543E690dA3673294147A5Dc8e7a621B5d484a3803207\",\"public_key\":\"7638eebaf4061b7f7cdfceb14046318bbdabf7e2f64944773d6550bd59f70274\"}', '{\"0\":{\"USD\":\"USD\",\"AUD\":\"AUD\",\"BRL\":\"BRL\",\"CAD\":\"CAD\",\"CHF\":\"CHF\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"DKK\":\"DKK\",\"EUR\":\"EUR\",\"GBP\":\"GBP\",\"HKD\":\"HKD\",\"INR\":\"INR\",\"ISK\":\"ISK\",\"JPY\":\"JPY\",\"KRW\":\"KRW\",\"NZD\":\"NZD\",\"PLN\":\"PLN\",\"RUB\":\"RUB\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"THB\":\"THB\",\"TWD\":\"TWD\"},\"1\":{\"BTC\":\"Bitcoin\",\"BTC.LN\":\"Bitcoin (Lightning Network)\",\"LTC\":\"Litecoin\",\"CPS\":\"CPS Coin\",\"VLX\":\"Velas\",\"APL\":\"Apollo\",\"AYA\":\"Aryacoin\",\"BAD\":\"Badcoin\",\"BCD\":\"Bitcoin Diamond\",\"BCH\":\"Bitcoin Cash\",\"BCN\":\"Bytecoin\",\"BEAM\":\"BEAM\",\"BITB\":\"Bean Cash\",\"BLK\":\"BlackCoin\",\"BSV\":\"Bitcoin SV\",\"BTAD\":\"Bitcoin Adult\",\"BTG\":\"Bitcoin Gold\",\"BTT\":\"BitTorrent\",\"CLOAK\":\"CloakCoin\",\"CLUB\":\"ClubCoin\",\"CRW\":\"Crown\",\"CRYP\":\"CrypticCoin\",\"CRYT\":\"CryTrExCoin\",\"CURE\":\"CureCoin\",\"DASH\":\"DASH\",\"DCR\":\"Decred\",\"DEV\":\"DeviantCoin\",\"DGB\":\"DigiByte\",\"DOGE\":\"Dogecoin\",\"EBST\":\"eBoost\",\"EOS\":\"EOS\",\"ETC\":\"Ether Classic\",\"ETH\":\"Ethereum\",\"ETN\":\"Electroneum\",\"EUNO\":\"EUNO\",\"EXP\":\"EXP\",\"Expanse\":\"Expanse\",\"FLASH\":\"FLASH\",\"GAME\":\"GameCredits\",\"GLC\":\"Goldcoin\",\"GRS\":\"Groestlcoin\",\"KMD\":\"Komodo\",\"LOKI\":\"LOKI\",\"LSK\":\"LSK\",\"MAID\":\"MaidSafeCoin\",\"MUE\":\"MonetaryUnit\",\"NAV\":\"NAV Coin\",\"NEO\":\"NEO\",\"NMC\":\"Namecoin\",\"NVST\":\"NVO Token\",\"NXT\":\"NXT\",\"OMNI\":\"OMNI\",\"PINK\":\"PinkCoin\",\"PIVX\":\"PIVX\",\"POT\":\"PotCoin\",\"PPC\":\"Peercoin\",\"PROC\":\"ProCurrency\",\"PURA\":\"PURA\",\"QTUM\":\"QTUM\",\"RES\":\"Resistance\",\"RVN\":\"Ravencoin\",\"RVR\":\"RevolutionVR\",\"SBD\":\"Steem Dollars\",\"SMART\":\"SmartCash\",\"SOXAX\":\"SOXAX\",\"STEEM\":\"STEEM\",\"STRAT\":\"STRAT\",\"SYS\":\"Syscoin\",\"TPAY\":\"TokenPay\",\"TRIGGERS\":\"Triggers\",\"TRX\":\" TRON\",\"UBQ\":\"Ubiq\",\"UNIT\":\"UniversalCurrency\",\"USDT\":\"Tether USD (Omni Layer)\",\"VTC\":\"Vertcoin\",\"WAVES\":\"Waves\",\"XCP\":\"Counterparty\",\"XEM\":\"NEM\",\"XMR\":\"Monero\",\"XSN\":\"Stakenet\",\"XSR\":\"SucreCoin\",\"XVG\":\"VERGE\",\"XZC\":\"ZCoin\",\"ZEC\":\"ZCash\",\"ZEN\":\"Horizen\"}}', '{\"callback\":\"ipn\"}', 'BTC', 'BTC', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '0.00004200', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:27:41'), (23, 'blockchain', 'Blockchain', 8, 'gateway/9utHxPrXJaeordFyWMM32kEpxaDgcacy3vJRaiQ1.jpg', 'local', 1, '{\"api_key\":\"8df2e5a0-3798-4b74-871d-973615b57e7b\",\"xpub_code\":\"xpub6CXLqfWXj1xgXe79nEQb3pv2E7TGD13pZgHceZKrQAxqXdrC2FaKuQhm5CYVGyNcHLhSdWau4eQvq3EDCyayvbKJvXa11MX9i2cHPugpt3G\"}', '{\"1\":{\"BTC\":\"BTC\"}}', NULL, 'BTC', 'BTC', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', NULL, 0, 1, '2020-09-10 09:05:02', '2023-05-13 05:26:17'), (25, 'cashmaal', 'cashmaal', 9, 'gateway/CbqGQHAPzJl9BW3OVhbuBRY5zEqj66tYxjZB66yS.jpg', 'local', 1, '{\"web_id\": \"3748\",\"ipn_key\": \"546254628759524554647987\"}', '{\"0\":{\"PKR\":\"PKR\",\"USD\":\"USD\"}}', '{\"ipn_url\":\"ipn\"}', 'PKR', 'PKR', 0, '', '1.00000000', '100.00000000', '0.00000000', '0.00000000', '1.00000000', NULL, 0, 1, NULL, '2023-05-13 05:26:57'), (26, 'midtrans', 'Midtrans', 1, 'gateway/vrsVshqZhh5t6HCEt8Hue3ZmAdWSl0d3PpXUu7hs.png', 'local', 1, '{\"client_key\":\"SB-Mid-client-jsBzAGzoAL0sml3M\",\"server_key\":\"SB-Mid-server-b4bO6W6a8GP9rqrEFKVzUn5G\"}', '{\"0\":{\"IDR\":\"IDR\"}}', '{\"payment_notification_url\":\"ipn\", \"finish redirect_url\":\"ipn\", \"unfinish redirect_url\":\"failed\",\"error redirect_url\":\"failed\"}', 'IDR', 'IDR', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.05000000', '14835.20000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 03:28:06'), (27, 'peachpayments', 'peachpayments', 24, 'gateway/uMWIu5jX2VP8wigMiMPFbPG68j5S8sluRLx1oC6x.png', 'local', 1, '{\"Authorization_Bearer\":\"OGE4Mjk0MTc0ZTczNWQwYzAxNGU3OGNmMjY2YjE3OTR8cXl5ZkhDTjgzZQ==\",\"Entity_ID\":\"8a8294174e735d0c014e78cf26461790\",\"Recur_Channel\":\"8ac7a4c77accc72d017ace4729440fd9\"}', '{\"0\":{\"AED\":\"AED\",\"AFA\":\"AFA\",\"AMD\":\"AMD\",\"ANG\":\"ANG\",\"AOA\":\"AOA\",\"ARS\":\"ARS\",\"AUD\":\"AUD\",\"AWG\":\"AWG\",\"AZM\":\"AZM\",\"BAM\":\"BAM\",\"BBD\":\"BBD\",\"BDT\":\"BDT\",\"BGN\":\"BGN\",\"BHD\":\"BHD\",\"BIF\":\"BIF\",\"BMD\":\"BMD\",\"BND\":\"BND\",\"BOB\":\"BOB\",\"BRL\":\"BRL\",\"BSD\":\"BSD\",\"BTN\":\"BTN\",\"BWP\":\"BWP\",\"BYR\":\"BYR\",\"BZD\":\"BZD\",\"CAD\":\"CAD\",\"CDF\":\"CDF\",\"CHF\":\"CHF\",\"CLP\":\"CLP\",\"CNY\":\"CNY\",\"COP\":\"COP\",\"CRC\":\"CRC\",\"CUP\":\"CUP\",\"CVE\":\"CVE\",\"CYP\":\"CYP\",\"CZK\":\"CZK\",\"DJF\":\"DJF\",\"DKK\":\"DKK\",\"DOP\":\"DOP\",\"DZD\":\"DZD\",\"EEK\":\"EEK\",\"EGP\":\"EGP\",\"ERN\":\"ERN\",\"ETB\":\"ETB\",\"EUR\":\"EUR\",\"FJD\":\"FJD\",\"FKP\":\"FKP\",\"GBP\":\"GBP\",\"GEL\":\"GEL\",\"GGP\":\"GGP\",\"GHC\":\"GHC\",\"GIP\":\"GIP\",\"GMD\":\"GMD\",\"GNF\":\"GNF\",\"GTQ\":\"GTQ\",\"GYD\":\"GYD\",\"HKD\":\"HKD\",\"HNL\":\"HNL\",\"HRK\":\"HRK\",\"HTG\":\"HTG\",\"HUF\":\"HUF\",\"IDR\":\"IDR\",\"ILS\":\"ILS\",\"IMP\":\"IMP\",\"INR\":\"INR\",\"IQD\":\"IQD\",\"IRR\":\"IRR\",\"ISK\":\"ISK\",\"JEP\":\"JEP\",\"JMD\":\"JMD\",\"JOD\":\"JOD\",\"JPY\":\"JPY\",\"KES\":\"KES\",\"KGS\":\"KGS\",\"KHR\":\"KHR\",\"KMF\":\"KMF\",\"KPW\":\"KPW\",\"KRW\":\"KRW\",\"KWD\":\"KWD\",\"KYD\":\"KYD\",\"KZT\":\"KZT\",\"LAK\":\"LAK\",\"LBP\":\"LBP\",\"LKR\":\"LKR\",\"LRD\":\"LRD\",\"LSL\":\"LSL\",\"LTL\":\"LTL\",\"LVL\":\"LVL\",\"LYD\":\"LYD\",\"MAD\":\"MAD\",\"MDL\":\"MDL\",\"MGA\":\"MGA\",\"MKD\":\"MKD\",\"MMK\":\"MMK\",\"MNT\":\"MNT\",\"MOP\":\"MOP\",\"MRO\":\"MRO\",\"MTL\":\"MTL\",\"MUR\":\"MUR\",\"MVR\":\"MVR\",\"MWK\":\"MWK\",\"MXN\":\"MXN\",\"MYR\":\"MYR\",\"MZM\":\"MZM\",\"NAD\":\"NAD\",\"NGN\":\"NGN\",\"NIO\":\"NIO\",\"NOK\":\"NOK\",\"NPR\":\"NPR\",\"NZD\":\"NZD\",\"OMR\":\"OMR\",\"PAB\":\"PAB\",\"PEN\":\"PEN\",\"PGK\":\"PGK\",\"PHP\":\"PHP\",\"PKR\":\"PKR\",\"PLN\":\"PLN\",\"PTS\":\"PTS\",\"PYG\":\"PYG\",\"QAR\":\"QAR\",\"RON\":\"RON\",\"RUB\":\"RUB\",\"RWF\":\"RWF\",\"SAR\":\"SAR\",\"SBD\":\"SBD\",\"SCR\":\"SCR\",\"SDD\":\"SDD\",\"SEK\":\"SEK\",\"SGD\":\"SGD\",\"SHP\":\"SHP\",\"SIT\":\"SIT\",\"SKK\":\"SKK\",\"SLL\":\"SLL\",\"SOS\":\"SOS\",\"SPL\":\"SPL\",\"SRD\":\"SRD\",\"STD\":\"STD\",\"SVC\":\"SVC\",\"SYP\":\"SYP\",\"SZL\":\"SZL\",\"THB\":\"THB\",\"TJS\":\"TJS\",\"TMM\":\"TMM\",\"TND\":\"TND\",\"TOP\":\"TOP\",\"TRL\":\"TRL\",\"TRY\":\"TRY\",\"TTD\":\"TTD\",\"TVD\":\"TVD\",\"TWD\":\"TWD\",\"TZS\":\"TZS\",\"UAH\":\"UAH\",\"UGX\":\"UGX\",\"USD\":\"USD\",\"UYU\":\"UYU\",\"UZS\":\"UZS\",\"VEF\":\"VEF\",\"VND\":\"VND\",\"VUV\":\"VUV\",\"WST\":\"WST\",\"XAF\":\"XAF\",\"XAG\":\"XAG\",\"XAU\":\"XAU\",\"XCD\":\"XCD\",\"XDR\":\"XDR\",\"XOF\":\"XOF\",\"XPD\":\"XPD\",\"XPF\":\"XPF\",\"XPT\":\"XPT\",\"YER\":\"YER\",\"ZAR\":\"ZAR\",\"ZMK\":\"ZMK\",\"ZWD\":\"ZWD\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', '', 0, 0, '2020-09-09 09:05:02', '2023-06-21 04:30:24'), (28, 'nowpayments', 'Nowpayments', 16, 'gateway/NdLEoHJQSc8p87huWI9LaCgkdPDUEMOJUL1mEOxn.jpg', 'local', 1, '{\"api_key\":\"7X96BPB-3JN4RWK-QXNEHFQ-AAJ61TY\"}', '{\"1\":{\"BTG\":\"BTG\",\"ETH\":\"ETH\",\"XMR\":\"XMR\",\"ZEC\":\"ZEC\",\"XVG\":\"XVG\",\"ADA\":\"ADA\",\"LTC\":\"LTC\",\"BCH\":\"BCH\",\"QTUM\":\"QTUM\",\"DASH\":\"DASH\",\"XLM\":\"XLM\",\"XRP\":\"XRP\",\"XEM\":\"XEM\",\"DGB\":\"DGB\",\"LSK\":\"LSK\",\"DOGE\":\"DOGE\",\"TRX\":\"TRX\",\"KMD\":\"KMD\",\"REP\":\"REP\",\"BAT\":\"BAT\",\"ARK\":\"ARK\",\"WAVES\":\"WAVES\",\"BNB\":\"BNB\",\"XZC\":\"XZC\",\"NANO\":\"NANO\",\"TUSD\":\"TUSD\",\"VET\":\"VET\",\"ZEN\":\"ZEN\",\"GRS\":\"GRS\",\"FUN\":\"FUN\",\"NEO\":\"NEO\",\"GAS\":\"GAS\",\"PAX\":\"PAX\",\"USDC\":\"USDC\",\"ONT\":\"ONT\",\"XTZ\":\"XTZ\",\"LINK\":\"LINK\",\"RVN\":\"RVN\",\"BNBMAINNET\":\"BNBMAINNET\",\"ZIL\":\"ZIL\",\"BCD\":\"BCD\",\"USDT\":\"USDT\",\"USDTERC20\":\"USDTERC20\",\"CRO\":\"CRO\",\"DAI\":\"DAI\",\"HT\":\"HT\",\"WABI\":\"WABI\",\"BUSD\":\"BUSD\",\"ALGO\":\"ALGO\",\"USDTTRC20\":\"USDTTRC20\",\"GT\":\"GT\",\"STPT\":\"STPT\",\"AVA\":\"AVA\",\"SXP\":\"SXP\",\"UNI\":\"UNI\",\"OKB\":\"OKB\",\"BTC\":\"BTC\"}}', '{\"cron\":\"ipn\"}', 'BTC', 'BTC', 1, 'test', '1.00000000', '10000.00000000', '0.00000000', '0.50000000', '1.00000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 04:18:22'), (29, 'khalti', 'Khalti Payment', 20, 'gateway/3EAXFwhephfbz1UOlBuGInlpmIZdlJFxvWZV8AKP.webp', 'local', 1, '{\"secret_key\":\"test_secret_key_e241fa0cf56e44b3a5e55a20f6a45e84\",\"public_key\":\"test_public_key_d4d1c327935749508ee25b52e22ebabb\"}', '{\"0\":{\"NPR\":\"NPR\"}}', NULL, 'NPR', 'NPR', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.00000000', '132.04000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 04:24:07'), (30, 'swagger', 'MAGUA PAY', 18, 'gateway/FIPUGELdm1tlQCJdN01hoRgyiyNsKTdntUyhZ7bL.png', 'local', 1, '{\"MAGUA_PAY_ACCOUNT\":\"EUR-sandbox\",\"MerchantKey\":\"Turbogames\",\"Secret\":\"m3X4SrY2404HN8bm01eTG82M7R8oEtF4\"}', '{\"0\":{\"EUR\":\"EUR\"}}', NULL, 'EUR', 'EUR', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.00000000', '1.00000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 04:22:56'), (31, 'freekassa', 'Free kassa', 13, 'gateway/rKOJgV9TzsvLDTVRibs8cVzUBszQY2s7fzFHLVlP.jpg', 'local', 1, '{\"merchant_id\":\"8896\",\"merchant_key\":\"21b1f9f32162cdd5e59df622d0c28db5\",\"secret_word\":\"lGkk+6464848\",\"secret_word2\":\"lGkk6464848\"}', '{\"0\":{\"RUB\":\"RUB\",\"USD\":\"USD\",\"EUR\":\"EUR\",\"UAH\":\"UAH\",\"KZT\":\"KZT\"}}', '{\"ipn_url\":\"ipn\"}', 'RUB', 'RUB', 0, '', '1.00000000', '10000.00000000', '0.10000000', '0.00000000', '1.00000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 04:12:33'), (32, 'konnect', 'Konnect', 11, 'gateway/BU8wsEJ1r518zrUB1ysoKOtCLhn3p2oKCJSt108E.jpg', 'local', 1, '{\"api_key\":\"6399ed9208ec811bcda4af6d:9WNA3dfjmDq6ynKb5RsRTYM7dIpq9\",\"receiver_wallet_Id\":\"6399ed9208ec811bcda4af6e\"}', '{\"0\":{\"TND\":\"TND\",\"EUR\":\"EUR\",\"USD\":\"USD\"}}', '{\"webhook\":\"ipn\"}', 'USD', 'USD', 0, '', '1.00000000', '10000.00000000', '0.00000000', '0.00000000', '1.00000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 03:33:11'), (33, 'mypay', 'Mypay Np', 22, 'gateway/WMIQiIXrOJ2EyoyM1HuttbKHeavVC2KXiaQW0JKy.png', 'local', 1, '{\"merchant_username\":\"mjthapa\",\"merchant_api_password\":\"A3T3VHDDFLLJRHN\",\"merchant_id\":\"MER26879689\",\"api_key\":\"tE8clmiMy1z35XAiU\\/w1byEAjikHR\\/1muYa4PmxyfssZcu6UO3yPo+DyEKWxFYQb\"}', '{\"0\":{\"NPR\":\"NPR\"}}', NULL, 'NPR', 'NPR', 0, '', '1.00000000', '100000.00000000', '1.50000000', '0.00000000', '1.00000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 03:35:05'), (35, 'imepay', 'IME PAY', 4, 'gateway/pBUiCvJ89sNcNV8ZwZjD3FscaWMIs5bKbrSbw2JD.png', 'local', 1, '{\"MerchantModule\":\"GAMINGCEN\",\"MerchantCode\":\"GAMINGCEN\",\"username\":\"gamingcenter\",\"password\":\"ime@1234\"}', '{\"0\":{\"NPR\":\"NPR\"}}', NULL, 'NPR', 'NPR', 0, '', '1.00000000', '100000.00000000', '1.50000000', '0.00000000', '1.00000000', '', 0, 0, '2020-09-09 03:05:02', '2023-06-21 03:32:10'), (36, 'cashonexHosted', 'Cashonex Hosted', 6, 'gateway/ykaf5WuooW5cg2AuWZBG82fIKcC8eVeKfCXJ3XHp.jpg', 'local', 1, '{\"idempotency_key\":\"727649-0h76ac-467573-fxoxli-141433-c5ugg1\",\"salt\":\"67a8d2c1548c1ddb616bdc27e31fbd5e385f7872204043df7219498f08e4dcda\"}', '{\"0\":{\"USD\":\"USD\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '1000.00000000', '0.00000000', '0.00000000', '1.00000000', NULL, 0, 0, '2023-04-03 00:31:33', '2023-06-21 03:32:39'), (37, 'cashonex', 'cashonex', 7, 'gateway/BvQHElyOUyaKg89EhI2zTBOTiCzij7Yiv4Vfkhag.jpg', 'local', 1, '{\"idempotency_key\":\"155228-ck-651971-ody-329243-h6i\",\"salt\":\"5a05d0f7336738460c4d098785cd0f2785bd60631bec019ea2ca61ed195ea8b5\"}', '{\"0\":{\"USD\":\"USD\"}}', NULL, 'USD', 'USD', 0, '', '1.00000000', '1000.00000000', '0.00000000', '0.00000000', '1.00000000', NULL, 0, 0, '2023-04-03 00:34:54', '2023-06-21 03:32:52'), (38, 'binance', 'Binance', 5, 'gateway/ExiCDiobOsjxZ25DrSlXh8xe0O5AGJ8hYLFLUN98.png', 'local', 1, '{\"mercent_api_key\":\"li4shwwt5ugfbboiq1q75dstbmwrgoaetylc7cmulmahh6qxs3clmbytrb7gk2ky\",\"mercent_secret\":\"5elpmjmwvjjsee7kwqqwzcabhtznl0ja8o3pvfsavqrobclsjxamq5kf93uhwcqm\"}', '{\"1\":{\"ADA\":\"ADA\",\"ATOM\":\"ATOM\",\"AVA\":\"AVA\",\"BCH\":\"BCH\",\"BNB\":\"BNB\",\"BTC\":\"BTC\",\"BUSD\":\"BUSD\",\"CTSI\":\"CTSI\",\"DASH\":\"DASH\",\"DOGE\":\"DOGE\",\"DOT\":\"DOT\",\"EGLD\":\"EGLD\",\"EOS\":\"EOS\",\"ETC\":\"ETC\",\"ETH\":\"ETH\",\"FIL\":\"FIL\",\"FRONT\":\"FRONT\",\"FTM\":\"FTM\",\"GRS\":\"GRS\",\"HBAR\":\"HBAR\",\"IOTX\":\"IOTX\",\"LINK\":\"LINK\",\"LTC\":\"LTC\",\"MANA\":\"MANA\",\"MATIC\":\"MATIC\",\"NEO\":\"NEO\",\"OM\":\"OM\",\"ONE\":\"ONE\",\"PAX\":\"PAX\",\"QTUM\":\"QTUM\",\"STRAX\":\"STRAX\",\"SXP\":\"SXP\",\"TRX\":\"TRX\",\"TUSD\":\"TUSD\",\"UNI\":\"UNI\",\"USDC\":\"USDC\",\"USDT\":\"USDT\",\"WRX\":\"WRX\",\"XLM\":\"XLM\",\"XMR\":\"XMR\",\"XRP\":\"XRP\",\"XTZ\":\"XTZ\",\"XVS\":\"XVS\",\"ZEC\":\"ZEC\",\"ZIL\":\"ZIL\"}}', NULL, 'USDT', 'USDT', 0, '', '1.00000000', '1000.00000000', '0.00000000', '0.00000000', '1.00000000', NULL, 0, 0, '2023-04-03 01:36:14', '2023-06-21 03:32:21'), (1000, 'Bank Transfer', 'Bank-transfer', 1, 'gateway/T4q53JMNQKO0QlXK8oAD40FAmYysHs8fwRpj9iBL.png', 'local', 1, '{\"AccountNumber\":{\"field_name\":\"AccountNumber\",\"field_level\":\"Account Number\",\"type\":\"text\",\"validation\":\"required\"},\"BeneficiaryName\":{\"field_name\":\"BeneficiaryName\",\"field_level\":\"Beneficiary Name\",\"type\":\"text\",\"validation\":\"required\"},\"NID\":{\"field_name\":\"NID\",\"field_level\":\"NID\",\"type\":\"file\",\"validation\":\"nullable\"},\"Address\":{\"field_name\":\"Address\",\"field_level\":\"Address\",\"type\":\"textarea\",\"validation\":\"nullable\"}}', NULL, NULL, 'BDT', 'BDT', 0, 'live', '1.00000000', '10000.00000000', '0.00000000', '2.00000000', '84.00000000', '', 0, 1, NULL, '2023-06-14 06:42:13'); -- -------------------------------------------------------- -- -- Table structure for table `images` -- CREATE TABLE `images` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resolution` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `picture` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `images` -- INSERT INTO `images` (`id`, `user_id`, `name`, `description`, `resolution`, `picture`, `driver`, `created_at`, `updated_at`) VALUES (4, 1, 'New Image', 'A cute boy sea water', '256x256', 'aiImage/J45Hxdm3Gw.png', 'local', '2023-05-24 05:59:16', '2023-05-24 05:59:16'), (5, 1, 'Girl Fighting', 'Two girl fight each other', '256x256', 'aiImage/UMIX9qhEGZ.png', 'local', '2023-05-24 06:16:08', '2023-05-24 06:16:08'), (6, 1, 'Girl Fighting', 'Two girl fight each other', '256x256', 'aiImage/5QcSw85apf.png', 'local', '2023-05-24 06:16:10', '2023-05-24 06:16:10'), (7, 1, 'New Image', NULL, '256x256', 'aiImage/El90814sPk.png', 'local', '2023-05-25 01:50:14', '2023-05-25 01:50:14'), (8, 1, 'New Image', NULL, '256x256', 'aiImage/q4Ajupa7qK.png', 'local', '2023-05-25 01:52:32', '2023-05-25 01:52:32'), (9, 1, 'Jubayer', 'A hot boy dancing with girl', '256x256', 'aiImage/1J033PlDOL.png', 'local', '2023-05-25 05:38:46', '2023-05-25 05:38:46'); -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `kycs` -- CREATE TABLE `kycs` ( `id` bigint(20) UNSIGNED NOT NULL, `input_form` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `kycs` -- INSERT INTO `kycs` (`id`, `input_form`, `status`, `created_at`, `updated_at`) VALUES (2, '{\"DrivingLiences\":{\"field_name\":\"DrivingLiences\",\"field_level\":\"Driving Liences\",\"type\":\"text\",\"validation\":\"required\"},\"Address\":{\"field_name\":\"Address\",\"field_level\":\"Address\",\"type\":\"textarea\",\"validation\":\"required\"},\"PassportDocument\":{\"field_name\":\"PassportDocument\",\"field_level\":\"Passport Document\",\"type\":\"file\",\"validation\":\"required\"}}', 1, '2022-12-10 02:25:32', '2022-12-10 02:25:35'); -- -------------------------------------------------------- -- -- Table structure for table `languages` -- CREATE TABLE `languages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_name` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flag` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1 = active, 0 = inactive', `rtl` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 = active, 0 = inactive ', `default_status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `languages` -- INSERT INTO `languages` (`id`, `name`, `short_name`, `flag`, `driver`, `is_active`, `rtl`, `default_status`, `created_at`, `updated_at`) VALUES (1, 'English', 'us', 'languages/W7yr9z9hIjh98rmdg7QQc7xvpnFmjQyXaKSZl7Rx.png', 'local', 1, 0, 1, '2021-01-20 04:49:29', '2023-05-16 07:02:52'), (2, 'Spanish', 'es', 'languages/7tkp4upfE0CXM7ZgPFMwOhl2gm8nPt9fOL1DTfhC.jpg', 'local', 1, 0, 0, '2021-01-21 05:33:06', '2023-05-16 07:02:31'), (16, 'Bangla', 'bn', 'languages/rWFJfMVdSZglcraylusuJnJzFkvMJ5a3LRIarJan.jpg', 'local', 1, 0, 0, '2023-07-18 06:50:37', '2023-07-18 06:50:37'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_10_19_061600_create_basic_controls_table', 1), (5, '2020_10_20_100935_create_email_controls_table', 1), (6, '2020_10_24_072526_create_email_templates_table', 1), (7, '2020_11_07_085217_create_currencies_table', 2), (8, '2020_11_08_075435_create_charges_limits_table', 3), (9, '2020_11_09_112425_create_transfers_table', 4), (10, '2020_11_11_103026_create_wallets_table', 5), (11, '2020_11_14_065358_create_security_questions_table', 6), (12, '2020_11_14_085811_create_two_factor_settings_table', 7), (13, '2020_11_16_074706_create_transactions_table', 8), (14, '2020_11_16_132223_create_jobs_table', 9), (15, '2020_11_18_063222_create_exchanges_table', 10), (16, '2020_11_19_072459_create_request_money_table', 11), (17, '2020_11_25_060330_create_user_profiles_table', 12), (18, '2020_11_30_095703_create_redeem_codes_table', 13), (19, '2020_12_03_103512_create_admins_table', 14), (20, '2020_12_06_100331_create_escrows_table', 15), (21, '2020_12_09_064344_create_vouchers_table', 16), (22, '2020_12_12_112328_create_sms_controls_table', 17), (23, '2020_12_20_090105_create_sms_templates_table', 18), (25, '2020_12_24_051324_create_payout_methods_table', 19), (26, '2020_12_24_081403_create_payouts_table', 20), (27, '2020_12_31_063516_create_site_notifications_table', 21), (56, '2021_01_10_080449_create_deposits_table', 22), (57, '2021_01_12_071930_create_funds_table', 23), (58, '2021_01_16_121411_create_admin_profiles_table', 24), (72, '2021_01_16_131037_create_disputes_table', 25), (73, '2021_01_16_132315_create_dispute_details_table', 25), (74, '2021_01_20_095223_create_languages_table', 26), (75, '2021_01_21_101929_create_templates_table', 27), (76, '2021_01_24_063900_create_template_media_table', 28), (80, '2021_01_26_122022_create_contents_table', 29), (81, '2021_01_26_122211_create_content_details_table', 29), (82, '2021_01_26_122228_create_content_media_table', 29), (84, '2021_01_31_060855_create_contacts_table', 30), (85, '2021_01_31_074126_create_subscribes_table', 31), (86, '2021_03_08_060607_create_referral_bonuses_table', 32), (87, '2021_03_08_072720_create_commission_entries_table', 33), (89, '2021_03_15_042634_create_basic_controls_table', 34), (90, '2023_05_22_141300_create_images_table', 35), (91, '2023_05_25_090950_create_variant_images_table', 36), (92, '2023_05_25_120554_create_prepaid_plans_table', 37), (93, '2023_05_27_090450_create_workbooks_table', 38), (94, '2023_05_27_131746_create_speech_to_texts_table', 39), (95, '2023_05_28_092927_create_codes_table', 40), (96, '2023_05_29_051120_create_template_categories_table', 41), (97, '2023_05_29_070750_create_original_templates_table', 42), (98, '2023_05_30_052324_create_custom_templates_table', 43), (99, '2023_05_31_121144_create_favourite_templates_table', 44), (100, '2023_06_04_103518_create_template_responses_table', 45), (101, '2023_06_04_105439_create_template_response_texts_table', 46), (102, '2023_06_06_050316_create_chats_table', 47), (103, '2023_06_07_110341_create_chat_tittles_table', 48), (104, '2023_06_11_120329_create_voice_responses_table', 49), (105, '2023_06_12_105325_create_subscription_plans_table', 50), (106, '2023_06_17_090432_create_subscription_purchases_table', 51), (107, '2023_07_04_121407_create_sentiments_table', 52); -- -------------------------------------------------------- -- -- Table structure for table `notify_templates` -- CREATE TABLE `notify_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `language_id` bigint(20) UNSIGNED DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `body` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `short_keys` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `firebase_notify_status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0=>inactive, 1=>active', `notify_for` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1=> Admin, 0=> User', `lang_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notify_templates` -- INSERT INTO `notify_templates` (`id`, `language_id`, `name`, `template_key`, `body`, `short_keys`, `status`, `firebase_notify_status`, `notify_for`, `lang_code`, `created_at`, `updated_at`) VALUES (30, 1, 'User Buy Plan', 'USER_BUY_PLAN', '[[planName]] Plan buy for [[amount]] [[currency]]. Transaction [[transaction]]', '{\"amount\":\"Amount\",\"currency\":\"Currency\",\"planName\":\"Plan Name\",\"transaction\":\"Transaction Number\"}', 1, 1, 0, 'en', NULL, NULL), (36, 1, 'SUPPORT TICKET CREATE', 'SUPPORT_TICKET_CREATE', '[[username]] create a ticket\r\nTicket : [[ticket_id]]', '{\"ticket_id\":\"Support Ticket ID\",\"username\":\"username\"}', 1, 1, 1, 'en', '2021-12-05 04:58:45', '2021-12-05 04:58:45'), (37, 1, 'SUPPORT TICKET REPLIED', 'SUPPORT_TICKET_REPLIED', '[[username]] replied ticket\r\nTicket : [[ticket_id]]', '{\"ticket_id\":\"Support Ticket ID\",\"username\":\"username\"}', 1, 1, 1, 'en', '2021-12-05 04:58:45', '2021-12-05 04:58:45'), (38, 1, 'ADMIN REPLIED SUPPORT TICKET ', 'ADMIN_REPLIED_TICKET', 'Admin replied \r\nTicket : [[ticket_id]]', '{\"ticket_id\":\"Support Ticket ID\"}', 1, 1, 0, 'en', '2021-12-05 05:00:17', '2023-05-17 07:58:00'), (40, 1, 'DEDUCTED BALANCE', 'DEDUCTED_BALANCE', '[[amount]] [[type]] deduct from your balance.', '{\"amount\":\"Amount\",\"type\":\"Balance Type\"}', 1, 1, 0, 'en', NULL, NULL), (41, 1, 'ADD BALANCE', 'ADD_BALANCE', '[[amount]] [[type]] add your balance.', '{\"amount\":\"Amount\",\"type\":\"Balance Type\"}', 1, 1, 0, 'en', NULL, NULL), (42, 2, 'DEDUCTED BALANCE', 'DEDUCTED_BALANCE', '[[amount]] [[type]] deduct from your balance.', '{\"amount\":\"Amount\",\"type\":\"Balance Type\"}', 1, 1, 0, 'es', '2023-02-23 06:38:14', '2023-02-23 06:38:14'), (43, 2, 'ADD BALANCE', 'ADD_BALANCE', '[[amount]] [[type]] add your balance.', '{\"amount\":\"Amount\",\"type\":\"Balance Type\"}', 1, 1, 0, 'es', '2023-05-17 01:34:01', '2023-05-17 01:34:01'), (44, 2, 'ADMIN REPLIED SUPPORT TICKET ', 'ADMIN_REPLIED_TICKET', 'Admin replied \r\nTicket : [[ticket_id]]', '{\"ticket_id\":\"Support Ticket ID\"}', 1, 1, 0, 'es', '2023-05-17 07:48:46', '2023-05-17 07:58:00'), (48, 1, 'User Buy Plan Admin', 'USER_BUY_PLAN_ADMIN', '[[user]] [[planName]] Plan buy for [[amount]] [[currency]]. Transaction [[transaction]]', '{\"user\":\"User\",\"amount\":\"Amount\",\"currency\":\"Currency\",\"planName\":\"Plan Name\",\"transaction\":\"Transaction Number\"}', 1, 1, 1, 'en', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `original_templates` -- CREATE TABLE `original_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `professional` tinyint(1) NOT NULL DEFAULT 0, `type` enum('original','custom') COLLATE utf8mb4_unicode_ci NOT NULL, `group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `package` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `input_form` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `original_templates` -- INSERT INTO `original_templates` (`id`, `name`, `icon`, `description`, `template_code`, `status`, `professional`, `type`, `group`, `slug`, `package`, `input_form`, `created_at`, `updated_at`) VALUES (1, 'Article Generator', '', 'Turn a title and outline text into a fully complete high quality article within seconds', 'KPAQQ', 1, 0, 'original', 'text', 'article-generator', 'all', '{\"ArticleTitle\":{\"field_name\":\"ArticleTitle\",\"field_level\":\"Article Title\",\"field_place\":\"10 best visit place in Europe\",\"type\":\"text\",\"validation\":\"required\"},\"FocusKeywords\":{\"field_name\":\"FocusKeywords\",\"field_level\":\"Focus Keywords (comma separated)\",\"field_place\":\"eg. spain, portugal, germany\",\"type\":\"text\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (2, 'Content Rewriter', '', 'Take a piece of content and rewrite it to make it more interesting, creative, and engaging', 'WCZGL', 1, 0, 'original', 'text', 'content-rewriter', 'all', '{\"WhatWouldYouLikeToRewrite\":{\"field_name\":\"WhatWouldYouLikeToRewrite\",\"field_level\":\"What would you like to rewrite?\",\"field_place\":\"Enter your text to reerite\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (3, 'Paragraph Generator', '', 'Generate paragraphs about any topic including a keyword and in a specific tone of voice', 'JXRZB', 1, 0, 'original', 'text', 'paragraph-generator', 'all', '{\"ParagraphDescription\":{\"field_name\":\"ParagraphDescription\",\"field_level\":\"Paragraph Description\",\"field_place\":\"eg. Football or cricket what is good for helath\",\"type\":\"textarea\",\"validation\":\"required\"},\"FocusKeywords\":{\"field_name\":\"FocusKeywords\",\"field_level\":\"Focus Keywords (comma seperate)\",\"field_place\":\"eg. football, cricket\",\"type\":\"text\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (4, 'Talking Points', '', 'Write short, simple and informative points for the subheadings of your article', 'VFWSQ', 1, 0, 'original', 'text', 'talking-points', 'all', '{\"ArticleTitle\":{\"field_name\":\"ArticleTitle\",\"field_level\":\"Article Title\",\"field_place\":\"Best way to create website\",\"type\":\"textarea\",\"validation\":\"required\"},\"SubheadingDescription\":{\"field_name\":\"SubheadingDescription\",\"field_level\":\"Subheading Description\",\"field_place\":\"eg. Why you should create website\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (5, 'Pros & Cons', '', 'Write the pros and cons of a product, service or website for your blog article', 'OPYAB', 1, 0, 'original', 'text', 'pros-and-cons', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. Android, Iphone\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. What you think wha is better between twi\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (6, 'Blog Titles', '', 'Create welcome emails for your customers sfg', 'WGKYP', 1, 0, 'original', 'blog', 'blog-titles', 'all', '{\"WhatIsYourBlogPostIsAbout\":{\"field_name\":\"WhatIsYourBlogPostIsAbout\",\"field_level\":\"What is your blog post is about?\",\"field_place\":\"Describe your blog post\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-29 04:10:57'), (7, 'Blog Section', '', 'Write a full blog section (few paragraphs) about a subheading of your article', 'EEKZF', 1, 0, 'original', 'blog', 'blog-section', 'all', '{\"TitleOfYourBlogArticle\":{\"field_name\":\"TitleOfYourBlogArticle\",\"field_level\":\"Title of your blog article\",\"field_place\":\"10 best visit place in Europe\",\"type\":\"text\",\"validation\":\"required\"},\"Subheadings\":{\"field_name\":\"Subheadings\",\"field_level\":\"Subheadings\",\"field_place\":\"eg. Spain, Portugal\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (8, 'Blog Ideas', '', 'The perfect tool to start writing great articles. Generate creative ideas for your next post', 'KDGOX', 1, 0, 'original', 'blog', 'blog-ideas', 'all', '{\"WhatIsYourBlogPostIsAbout\":{\"field_name\":\"WhatIsYourBlogPostIsAbout\",\"field_level\":\"What is your blog post is about?\",\"field_place\":\"10 best visit place in Europe\",\"type\":\"text\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-29 03:38:04'), (9, 'Blog Intros', '', 'Write an intro that will entice your visitors to read more about your article', 'TZTYR', 1, 0, 'original', 'blog', 'blog-intros', 'all', '{\"BlogPostTitle\":{\"field_name\":\"BlogPostTitle\",\"field_level\":\"Blog Post Title\",\"field_place\":\"10 best visit place in Europe\",\"type\":\"text\",\"validation\":\"required\"},\"WhatIsYourBlogPostIsAbout\":{\"field_name\":\"WhatIsYourBlogPostIsAbout\",\"field_level\":\"What is your blog post is about?\",\"field_place\":\"eg. Describe your blog article\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-29 03:38:06'), (10, 'Blog Conclusion', '', 'End your blog articles with an engaging conclusion paragraph', 'ZGUKM', 1, 0, 'original', 'blog', 'blog-conclusion', 'all', '{\"BlogPostTitle\":{\"field_name\":\"BlogPostTitle\",\"field_level\":\"Blog Post Title\",\"field_place\":\"10 best visit place in Europe\",\"type\":\"text\",\"validation\":\"required\"},\"WhatIsYourBlogPostIsAbout\":{\"field_name\":\"WhatIsYourBlogPostIsAbout\",\"field_level\":\"What is your blog post is about?\",\"field_place\":\"eg. Describe your blog article\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-29 03:35:56'), (11, 'Summarize Text', '', 'Summmarize any text in a short and easy to understand concise way', 'OMMEI', 1, 0, 'original', 'text', 'summarize-text', 'all', '{\"WhatWouldYouLikeToSummarize\":{\"field_name\":\"WhatWouldYouLikeToSummarize\",\"field_level\":\"What would you like to summarize?\",\"field_place\":\"Enter your text to summarize\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (12, 'Product Description', '', 'Write the description about your product and why it worth it', 'HXLNA', 1, 0, 'original', 'text', 'product-description', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. BMW, Honda\",\"type\":\"text\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. Men, Women\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. Honda is a multinational car manufacturing company\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (13, 'Startup Name Generator', '', 'Generate cool, creative, and catchy names for your startup in seconds', 'DJSVM', 1, 0, 'original', 'text', 'startup-name-generator', 'all', '{\"SeedWords\":{\"field_name\":\"SeedWords\",\"field_level\":\"Seed words\",\"field_place\":\"eg. flow, app, tech\",\"type\":\"text\",\"validation\":\"required\"},\"StartupDescription\":{\"field_name\":\"StartupDescription\",\"field_level\":\"Startup Description\",\"field_place\":\"Explain what you startup idea is about\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (14, 'Product Name Generator', '', 'Create creative product names from examples words', 'IXKBE', 1, 0, 'original', 'text', 'product-name-generator', 'all', '{\"SeedWords\":{\"field_name\":\"SeedWords\",\"field_level\":\"Seed Words\",\"field_place\":\"eg. fast, healthy\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"Provide product details\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (15, 'Meta Description', '', 'Write SEO-optimized meta description based on a description', 'JCDIK', 1, 0, 'original', 'web', 'meta-description', 'all', '{\"WebsiteName\":{\"field_name\":\"WebsiteName\",\"field_level\":\"Website Name\",\"field_place\":\"eg. Google, Amazon\",\"type\":\"text\",\"validation\":\"required\"},\"Keywords\":{\"field_name\":\"Keywords (comma separate)\",\"field_level\":\"Keywords\",\"field_place\":\"Your keywords\",\"type\":\"text\",\"validation\":\"required\"},\"WebsiteDescription\":{\"field_name\":\"WebsiteDescription\",\"field_level\":\"Website Description\",\"field_place\":\"eg. Describe what your business do\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (16, 'FAQs', '', 'Generate frequently asked questions based on your product description', 'SZAUF', 1, 0, 'original', 'web', 'faqs', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. Google, Amazon\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"Describe what your website do\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (17, 'FAQ Answers', '', 'Generate creative answers to questions (FAQs) about your business or website', 'BFENK', 1, 0, 'original', 'web', 'faq-answers', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. Amazon, Google\",\"type\":\"text\",\"validation\":\"required\"},\"Question\":{\"field_name\":\"Question\",\"field_level\":\"What is the question you are generating answers for?\",\"field_place\":\"eg. DHow to use this product\",\"type\":\"textarea\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"Describe what your website do\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (18, 'Testimonials / Reviews', '', 'Add social proof to your website by generating user testimonials', 'XLGPP', 1, 0, 'original', 'web', 'testimonials', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. Amazon. Google\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. Describe your what your website do\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (19, 'Facebook Ads', '', 'Write Facebook ads that engage your audience and deliver a high conversion rate', 'CTMNI', 1, 0, 'original', 'social', 'facebook-ads', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. BMW, Honda\",\"type\":\"text\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. Men, Women\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. Honda is a multinational car manufacturing company\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (20, 'Video Descriptions', '', 'Write compelling YouTube descriptions to get people interested in your video', 'ZLKSP', 1, 0, 'original', 'video', 'video-descriptions', 'all', '{\"TitleOfYourVideo\":{\"field_name\":\"TitleOfYourVideo\",\"field_level\":\"What is the title of your video?\",\"field_place\":\"eg. Start a new business\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (21, 'Video Titles', '', 'Write a compelling YouTube video title to catch everyones attention', 'OJIOV', 1, 0, 'original', 'video', 'video-titles', 'all', '{\"VideoAbout\":{\"field_name\":\"VideoAbout\",\"field_level\":\"What is your video about?\",\"field_place\":\"Provides descriotion on your video as much as possible\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (22, 'Youtube Tags Generator', '', 'Generate SEO-optimized YouTube tags / keywords for your video', 'ECNVU', 1, 0, 'original', 'video', 'youtube-tags-generator', 'all', '{\"Keyword\":{\"field_name\":\"Keyword\",\"field_level\":\"Enter your video title or keyword\",\"field_place\":\"eg. cloud\",\"type\":\"text\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-29 03:37:58'), (23, 'Instagram Captions', '', 'Grab attention with catchy captions for your Instagram posts', 'EOASR', 1, 0, 'original', 'social', 'instagram-captions', 'all', '{\"Caption \":{\"field_name\":\"Caption\",\"field_level\":\"What is your instragram post about?\",\"field_place\":\"eg. start earning money in online\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (24, 'Instagram Hashtags Generator', '', 'Find the best hashtags to use for your Instagram posts', 'IEMBM', 1, 0, 'original', 'social', 'instagram-hashtags', 'all', '{\"EnterKeyword\":{\"field_name\":\"EnterKeyword\",\"field_level\":\"Enter Keyword\",\"field_place\":\"eg. makeup\",\"type\":\"text\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (25, 'Social Media Post (Personal)', '', 'Write a social media post for yourself to be published on any platform', 'CKOHL', 1, 0, 'original', 'social', 'social-post-personal', 'all', '{\"PostAbout\":{\"field_name\":\"PostAbout\",\"field_level\":\"What is this post about?\",\"field_place\":\"eg. I would be doctor in 1 month\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (26, 'Social Media Post (Business)', '', 'Write a post for your business to be published on any social media platform', 'ABWGU', 1, 0, 'original', 'social', 'social-post-business', 'all', '{\"CompanyName\":{\"field_name\":\"CompanyName\",\"field_level\":\"Company Name\",\"field_place\":\"eg. Google\",\"type\":\"text\",\"validation\":\"required\"},\"Description\":{\"field_name\":\"Description\",\"field_level\":\"Provide company description\",\"field_place\":\"eg. Google is a leading compnay\",\"type\":\"textarea\",\"validation\":\"required\"},\"About\":{\"field_name\":\"About\",\"field_level\":\"What is the post about?\",\"field_place\":\"eg. we released a new version of google app\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (27, 'Facebook Headlines', '', 'Write catchy and convincing headlines to make your Facebook Ads stand out', 'HJYJZ', 1, 0, 'original', 'social', 'facebook-headlines', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. BMW, Honda\",\"type\":\"text\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. Men, Women\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. Honda is a multinational car manufacturing company\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (28, 'Google Ads Headlines', '', 'Write catchy 30-character headlines to promote your product with Google Ads', 'SGZTW', 1, 0, 'original', 'social', 'google-headlines', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. BMW, Honda\",\"type\":\"text\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. Men, Women\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. Honda is a multinational car manufacturing company\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (29, 'Google Ads Description', '', 'Write a Google Ads description that makes your ad stand out and generates leads', 'YQAFG', 1, 0, 'original', 'social', 'google-ads', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. BMW, Honda\",\"type\":\"text\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. Men, Women\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. Honda is a multinational car manufacturing company\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (30, 'Problem-Agitate-Solution', '', 'Generate one of most effective copywriting formula for your business', 'BGXJE', 1, 0, 'original', 'web', 'problem-agitate-solution', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. BMW, Honda\",\"type\":\"text\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. Men, Women\",\"type\":\"text\",\"validation\":\"required\"},\"ProductDescription\":{\"field_name\":\"ProductDescription\",\"field_level\":\"Product Description\",\"field_place\":\"eg. Honda is a multinational car manufacturing company\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (31, 'Academic Essay', '', 'Create creative academic essays for various subjects just in a second', 'SXQBT', 1, 0, 'original', 'text', 'academic-essay', 'all', '{\"EssayTitle\":{\"field_name\":\"Essay Title\",\"field_level\":\"EssayTitle\",\"field_place\":\"eg. Amazing cuising culture of mexico\",\"type\":\"text\",\"validation\":\"required\"},\"FocusKeywords\":{\"field_name\":\"FocusKeywords\",\"field_level\":\"Focus Keywords (comma separated)\",\"field_place\":\"eg. taco, sangria\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (32, 'Welcome Email', '', 'Create unique welcome emails for your customers', 'RLXGB', 1, 0, 'original', 'email', 'email-welcome', 'all', '{\"YourCompany\":{\"field_name\":\"YourCompany\",\"field_level\":\"Your Company/Product Name\",\"field_place\":\"Creative Minds\",\"type\":\"text\",\"validation\":\"required\"},\"DescribeCompany\":{\"field_name\":\"DescribeCompany\",\"field_level\":\"Describe your product or company\",\"field_place\":\"eg. Describe your company\",\"type\":\"textarea\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. men. women\",\"type\":\"text\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-29 04:23:02'), (33, 'Cold Email', '', 'Create professional cold emails with the help of AI', 'RDJEZ', 1, 0, 'original', 'email', 'email-cold', 'all', '{\"YourCompany\":{\"field_name\":\"YourCompany\",\"field_level\":\"Your Company/Product Name\",\"field_place\":\"Creative Minds\",\"type\":\"text\",\"validation\":\"required\"},\"DescribeCompany\":{\"field_name\":\"DescribeCompany\",\"field_level\":\"Describe your product or company\",\"field_place\":\"eg. Describe your company\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (34, 'Follow-Up Email', '', 'Create professional email follow up with just few clicks', 'XVNNQ', 1, 0, 'original', 'email', 'email-follow-up', 'all', '{\"YourCompany\":{\"field_name\":\"YourCompany\",\"field_level\":\"Your Company/Product Name\",\"field_place\":\"Creative Minds\",\"type\":\"text\",\"validation\":\"required\"},\"DescribeCompany\":{\"field_name\":\"DescribeCompany\",\"field_level\":\"Describe your product or company\",\"field_place\":\"eg. Describe your company\",\"type\":\"textarea\",\"validation\":\"required\"},\"Following\":{\"field_name\":\"Following\",\"field_level\":\"Following up after\",\"field_place\":\"write following\",\"type\":\"text\",\"validation\":\"required\"},\"Audience\":{\"field_name\":\"Audience\",\"field_level\":\"Audience\",\"field_place\":\"eg. men. women\",\"type\":\"text\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (35, 'Creative Stories', '', 'Allow AI to generate creative stories for you based on input text', 'PAKMF', 1, 0, 'original', 'text', 'creative-stories', 'all', '{\"AboutStory\":{\"field_name\":\"AboutStory\",\"field_level\":\"What is your story is about?\",\"field_place\":\"Provide as much details as possible for creating a story\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (36, 'Grammar Checker', '', 'Make sure that there are no errors in your content', 'OORHD', 1, 0, 'original', 'text', 'grammar-checker', 'all', '{\"Check\":{\"field_name\":\"Check\",\"field_level\":\"Your Company/Product Name\",\"field_place\":\"Include your text here to check\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (37, 'Summarize for 2nd Grader', '', 'Summarize any complex content for a 2nd grader child', 'SGJLU', 1, 0, 'original', 'text', '2nd-grader', 'all', '{\"Summarize\":{\"field_name\":\"Summarize\",\"field_level\":\"Your Company/Product Name\",\"field_place\":\"Include your text to summarize\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (38, 'Video Scripts', '', 'Quickly create scripts for your videos and start shooting', 'WISHV', 1, 0, 'original', 'video', 'video-scripts', 'all', '{\"VideoAbout\":{\"field_name\":\"VideoAbout\",\"field_level\":\"What is your video about?\",\"field_place\":\"Provide description of what your video is about\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (39, 'Amazon Product Description', '', 'Create attention grabbing amazon product description', 'WISTT', 1, 0, 'original', 'other', 'amazon-product', 'all', '{\"ProductName\":{\"field_name\":\"ProductName\",\"field_level\":\"Product Name\",\"field_place\":\"eg. Amazing cuisine culture of mexico\",\"type\":\"text\",\"validation\":\"required\"},\"FocusKeywords\":{\"field_name\":\"FocusKeywords\",\"field_level\":\"Focus Keywords (comma seperated)\",\"field_place\":\"eg. taco, sangria, paella\",\"type\":\"textarea\",\"validation\":\"required\"}}', '2023-05-21 14:25:20', '2023-05-21 14:25:20'); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `prepaid_plans` -- CREATE TABLE `prepaid_plans` ( `id` bigint(20) UNSIGNED NOT NULL, `plan_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `words` int(11) DEFAULT NULL, `images` int(11) DEFAULT NULL, `characters` int(11) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `sort_by` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `prepaid_plans` -- INSERT INTO `prepaid_plans` (`id`, `plan_name`, `price`, `words`, `images`, `characters`, `status`, `sort_by`, `created_at`, `updated_at`) VALUES (1, '5000x100', '10', 5000, 100, 5000, 1, 2, '2023-05-25 07:28:58', '2023-06-13 00:27:56'), (2, '500x10', '5.69', 500, 10, 500, 1, 1, '2023-06-12 22:58:38', '2023-06-13 00:27:56'), (3, '7000x200', '12.99', 7000, 200, 10000, 1, 3, '2023-06-12 22:59:32', '2023-06-13 00:27:56'), (4, '9000x300', '15.99', 9000, 300, 10000, 1, 4, '2023-06-12 23:00:05', '2023-06-13 00:27:56'); -- -------------------------------------------------------- -- -- Table structure for table `sentiments` -- CREATE TABLE `sentiments` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `phase` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `negative` double(8,2) NOT NULL DEFAULT 0.00, `positive` double(8,2) NOT NULL DEFAULT 0.00, `neural` double(8,2) NOT NULL DEFAULT 0.00, `total_tokens` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sentiments` -- INSERT INTO `sentiments` (`id`, `user_id`, `phase`, `title`, `negative`, `positive`, `neural`, `total_tokens`, `created_at`, `updated_at`) VALUES (1, 1, 'Raju is a bad boy', 'Boy Report', 0.54, 0.00, 0.46, 5, '2023-07-04 06:58:18', '2023-07-04 07:01:40'), (2, 1, 'The software is highly intuitive and user-friendly, allowing for seamless navigation and efficient task completion. Its robust features provide excellent functionality and meet diverse user needs. The interface design is visually appealing and enhances overall user experience. It\'s a top-notch software solution that maximizes productivity and user satisfaction.', 'Software Analysis', 0.00, 0.25, 0.75, 48, '2023-07-04 07:25:57', '2023-07-04 07:26:37'), (3, 1, 'The hotel offers exceptional service with attentive and friendly staff. The rooms are comfortable, clean, and well-equipped, ensuring a pleasant stay. The facilities, including the restaurant and amenities, are top-notch. The hotel provides a memorable experience with its excellent hospitality and attention to detail.', NULL, 0.00, 0.34, 0.66, 44, '2023-07-04 07:30:42', '2023-07-04 07:30:42'), (4, 1, 'হোটেলটি মনোযোগী এবং বন্ধুত্বপূর্ণ কর্মীদের সাথে ব্যতিক্রমী পরিষেবা সরবরাহ করে। কক্ষগুলি আরামদায়ক, পরিষ্কার এবং সুসজ্জিত, একটি আনন্দদায়ক থাকার ব্যবস্থা করে। রেস্তোরাঁ এবং সুযোগ-সুবিধা সহ সুবিধাগুলি শীর্ষস্থানীয়। হোটেলটি তার চমৎকার আতিথেয়তা এবং বিস্তারিত মনোযোগ সহ একটি স্মরণীয় অভিজ্ঞতা প্রদান করে।', NULL, 0.00, 0.00, 1.00, 260, '2023-07-04 07:31:27', '2023-07-04 07:31:27'), (5, 1, 'সাম্প্রতিক বছরগুলোতে বাংলাদেশ ক্রিকেট দল অসাধারণ উন্নতি দেখিয়েছে। তাদের পারফরম্যান্স একটি শক্তিশালী এবং দৃঢ়প্রতিজ্ঞ স্কোয়াডকে প্রতিফলিত করে। তারা দক্ষ ব্যাটিং, বোলিং এবং ফিল্ডিং প্রদর্শন করে, যা তাদেরকে আন্তর্জাতিক ক্রিকেটে একটি প্রতিযোগিতামূলক শক্তিতে পরিণত করে। ধারাবাহিক বৃদ্ধির সাথে, তারা তাদের জাতিকে গর্বিত করে চলেছে।', 'BD Team', 0.00, 0.00, 1.00, 283, '2023-07-04 07:32:31', '2023-07-04 07:32:55'), (6, 1, 'বাংলাদেশ দল খুবই দুর্বল দল। আমি এই দলটিকে ঘৃণা করি৷ কিন্তু কখনও কখনও আমি তাদের খেলার স্টাইল পছন্দ করি৷', NULL, 0.00, 0.00, 1.00, 84, '2023-07-04 07:33:55', '2023-07-04 07:33:55'), (7, 1, 'বাংলাদেশ দল খুবই দুর্বল দল।', NULL, 0.00, 0.00, 1.00, 23, '2023-07-04 07:34:12', '2023-07-04 07:34:12'), (8, 1, 'The bangladesh team is very poor team', NULL, 0.36, 0.00, 0.64, 7, '2023-07-04 07:34:31', '2023-07-04 07:34:31'), (9, 1, 'El equipo de bangladesh es un equipo muy pobre.', NULL, 0.00, 0.00, 1.00, 9, '2023-07-04 07:35:02', '2023-07-04 07:35:02'), (11, 1, 'I dont like bangladesh cricket team. but sometimes they play well.', NULL, 0.46, 0.35, 0.19, 11, '2023-07-04 23:40:34', '2023-07-04 23:40:34'), (12, 1, 'আমি বাংলাদেশ ক্রিকেট দল পছন্দ করি না। কিন্তু কখনও কখনও তারা ভাল খেলে।', 'Cricket Analysis', 0.50, 0.47, 0.03, 0, '2023-07-04 23:40:57', '2023-07-04 23:42:15'), (13, 1, 'সে ভালো ছেলে কিন্তু মাঝে মাঝে সে মিথ্যাবাদী বলে কথা বলে', NULL, 0.99, 0.01, 0.00, 45, '2023-07-04 23:46:12', '2023-07-04 23:46:12'), (14, 1, 'সে ভালো ছেলে কিন্তু মাঝে মাঝে সে মিথ্যাবাদী বলে কথা বলে', NULL, 0.99, 0.01, 0.00, 45, '2023-07-04 23:47:26', '2023-07-04 23:47:26'), (15, 1, 'He has a lot of money. But he is a bad boy.', NULL, 1.00, 0.00, 0.00, 12, '2023-07-05 01:04:16', '2023-07-05 01:04:16'), (16, 1, 'He is a good boy. he never miss a class.', NULL, 0.00, 0.50, 0.50, 10, '2023-07-06 07:15:10', '2023-07-06 07:15:10'), (17, 1, 'He is a good boy. he never miss a class.', NULL, 0.00, 1.00, 0.00, 10, '2023-07-06 07:17:19', '2023-07-06 07:17:19'); -- -------------------------------------------------------- -- -- Table structure for table `site_notifications` -- CREATE TABLE `site_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `site_notificational_id` int(11) NOT NULL, `site_notificational_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `sms_controls` -- CREATE TABLE `sms_controls` ( `id` bigint(20) UNSIGNED NOT NULL, `actionMethod` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `actionUrl` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `headerData` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paramData` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `formData` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `sms_controls` -- INSERT INTO `sms_controls` (`id`, `actionMethod`, `actionUrl`, `headerData`, `paramData`, `formData`, `created_at`, `updated_at`) VALUES (1, 'POST', 'https://rest.nexmo.com/sms/json', '{\"Content-Type\":\"application\\/x-www-form-urlencoded\"}', NULL, '{\"from\":\"Rownak\",\"text\":\"[[message]]\",\"to\":\"[[receiver]]\",\"api_key\":\"930cc608\",\"api_secret\":\"2pijsaMOUw5YKOK5\"}', '2020-12-13 01:45:29', '2022-06-29 00:34:54'); -- -------------------------------------------------------- -- -- Table structure for table `speech_to_texts` -- CREATE TABLE `speech_to_texts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `workbook_id` bigint(20) UNSIGNED DEFAULT NULL, `ai_text` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `task_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `language` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `words` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `speech_to_texts` -- INSERT INTO `speech_to_texts` (`id`, `user_id`, `workbook_id`, `ai_text`, `title`, `description`, `task_type`, `language`, `words`, `created_at`, `updated_at`) VALUES (1, 1, 2, 'Old town that felt so hollow Rounded circles everywhere Never had a place to call home Then you came and saved the day And yeah you know me The love I give is the love I got So don\'t walk away Don\'t just leave it all Just watch it fade away Old town that felt so hollow Rounded circles everywhere Never had a place to call home Then you came and saved the day The loving in my heart won\'t break in two I never wanna say that we are through I never wanna say that we are through', 'Song Text', 'Old town that felt so hollow Rounded circles everywhere Never had a place to call home Then you came and saved the day And yeah you know me', 'translate', 'en', 99, '2023-05-27 07:50:21', '2023-05-28 04:08:50'), (2, 1, NULL, 'Old town that felt so hollow Wonder circles everywhere Never had a place to call home Then you came and saved the day And yeah you know me The love I give is the love I got So don\'t walk away Don\'t just leave it all Just watch it fade away Old town that felt so hollow Wonder circles everywhere Never had a place to call home Then you came and saved the day The loving in my heart won\'t break in two I never wanna say that we are through', NULL, NULL, 'translate', 'en', 91, '2023-05-27 08:30:27', '2023-05-27 08:30:27'); -- -------------------------------------------------------- -- -- Table structure for table `storages` -- CREATE TABLE `storages` ( `id` bigint(20) UNSIGNED NOT NULL, `code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0=>inactive,1=>active', `parameters` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'storage credentials', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `storages` -- INSERT INTO `storages` (`id`, `code`, `name`, `logo`, `driver`, `status`, `parameters`, `created_at`, `updated_at`) VALUES (1, 's3', 'Amazon S3', 'driver/EFxmMGx4yzhFgEXsgDhwZwkR1WVqQF0hhgLSH8i3.png', 'local', 0, '{\"access_key_id\":\"xys6\",\"secret_access_key\":\"xys\",\"default_region\":\"xys5\",\"bucket\":\"xys6\",\"url\":\"xysds\"}', NULL, '2023-05-10 04:19:08'), (3, 'sftp', 'SFTP', 'driver/dmgfZuCpBvK1NZsBHAVWIRfHO3UdxPW6XQ4hhGrq.png', 'local', 0, '{\"sftp_username\":\"xys6\",\"sftp_password\":\"xys\"}', NULL, '2023-05-10 04:22:01'), (4, 'do', 'Digitalocean Spaces', 'driver/EXMkjY57uSHf4HW66gxmbcPWmOJBejW6qBWtItme.png', 'local', 0, '{\"spaces_key\":\"hj\",\"spaces_secret\":\"vh\",\"spaces_endpoint\":\"jk\",\"spaces_region\":\"sfo2\",\"spaces_bucket\":\"assets-coral\"}', NULL, '2023-05-10 04:21:28'), (5, 'ftp', 'FTP', 'driver/DBztVoKVYymWD773burMSGGzyGnaWMqd3pXepRC7.png', 'local', 0, '{\"ftp_host\":\"xys6\",\"ftp_username\":\"xys\",\"ftp_password\":\"xys6\"}', NULL, '2023-05-10 04:21:46'), (6, 'local', 'Local Storage', 'driver/local.png', 'local', 1, '', NULL, '2023-03-12 04:22:06'); -- -------------------------------------------------------- -- -- Table structure for table `subscribes` -- CREATE TABLE `subscribes` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `subscribes` -- INSERT INTO `subscribes` (`id`, `email`, `created_at`, `updated_at`) VALUES (1, 'aBc@gmail.com', '2023-05-15 23:47:10', '2023-05-15 23:47:10'); -- -------------------------------------------------------- -- -- Table structure for table `subscription_plans` -- CREATE TABLE `subscription_plans` ( `id` bigint(20) UNSIGNED NOT NULL, `plan_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double NOT NULL DEFAULT 0, `status` tinyint(1) NOT NULL DEFAULT 1, `featured` tinyint(4) NOT NULL DEFAULT 0, `words` int(11) DEFAULT NULL, `images` int(11) DEFAULT NULL, `characters` int(11) DEFAULT NULL, `allow_template` tinyint(1) NOT NULL DEFAULT 1, `allow_image` tinyint(1) NOT NULL DEFAULT 1, `allow_speech_to_text` tinyint(1) NOT NULL DEFAULT 1, `allow_text_to_speech` tinyint(1) NOT NULL DEFAULT 1, `allow_code` tinyint(1) NOT NULL DEFAULT 1, `allow_chat` tinyint(1) NOT NULL DEFAULT 1, `allow_sentimental` tinyint(11) NOT NULL DEFAULT 1, `max_tokens` int(11) DEFAULT NULL, `payment_frequency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'monthly, yearly, lifetime', `storage_days` int(11) DEFAULT NULL COMMENT 'after this day all image and voice will be auto deleted', `gateway_plan_id` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sort_by` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `subscription_plans` -- INSERT INTO `subscription_plans` (`id`, `plan_name`, `price`, `status`, `featured`, `words`, `images`, `characters`, `allow_template`, `allow_image`, `allow_speech_to_text`, `allow_text_to_speech`, `allow_code`, `allow_chat`, `allow_sentimental`, `max_tokens`, `payment_frequency`, `storage_days`, `gateway_plan_id`, `sort_by`, `created_at`, `updated_at`) VALUES (2, 'Premium', 10, 1, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '{\"stripe\":\"price_1NKxf2F7ea9ThD5qqrxmE16u\",\"paypal\":\"P-38K040064U626245YMSHNERQ\",\"paystack\":\"PLN_34rcthykrmsiibw\",\"razorpay\":\"plan_M5lZQT8soTQ0tA\"}', 2, '2023-06-12 07:52:45', '2023-06-23 23:49:32'), (3, 'Pro', 50, 1, 1, 1000, 500, 30, 1, 0, 1, 0, 1, 1, 1, 255, 'yearly', 360, '{\"stripe\":\"prod_O4YAZkeCE409wL\",\"paypal\":\"P-29B16394K5450410UZT3ECXI\"}', 1, '2023-06-12 22:42:13', '2023-06-19 05:40:32'); -- -------------------------------------------------------- -- -- Table structure for table `subscription_purchases` -- CREATE TABLE `subscription_purchases` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `subscription_id` bigint(20) UNSIGNED NOT NULL, `extra_api_response` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method_id` int(11) DEFAULT NULL, `api_subscription_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Api response id for subscription', `plan_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double NOT NULL DEFAULT 0, `payment_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0=>unpaid,1=>paid', `status` tinyint(1) DEFAULT 0 COMMENT '0=>canceled,1=>running', `words` int(11) DEFAULT NULL, `images` int(11) DEFAULT NULL, `characters` int(11) DEFAULT NULL, `allow_template` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=>no,1=>yes', `allow_image` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=>no,1=>yes', `allow_speech_to_text` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=>no,1=>yes', `allow_text_to_speech` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=>no,1=>yes', `allow_code` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=>no,1=>yes', `allow_chat` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0=>no,1=>yes', `allow_sentimental` tinyint(4) NOT NULL DEFAULT 1, `max_tokens` int(11) DEFAULT NULL, `payment_frequency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'monthly, yearly, lifetime', `storage_days` int(11) DEFAULT NULL COMMENT 'after this day all image and voice will be auto deleted', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `cancel_at` timestamp NULL DEFAULT NULL, `subs_expired_at` timestamp NOT NULL DEFAULT current_timestamp(), `api_res` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `subscription_purchases` -- INSERT INTO `subscription_purchases` (`id`, `user_id`, `subscription_id`, `extra_api_response`, `payment_method_id`, `api_subscription_id`, `plan_name`, `price`, `payment_status`, `status`, `words`, `images`, `characters`, `allow_template`, `allow_image`, `allow_speech_to_text`, `allow_text_to_speech`, `allow_code`, `allow_chat`, `allow_sentimental`, `max_tokens`, `payment_frequency`, `storage_days`, `created_at`, `updated_at`, `cancel_at`, `subs_expired_at`, `api_res`) VALUES (4, 1, 2, NULL, 2, 'sub_1NJwMfF7ea9ThD5qNxJQO3xE', 'Premium', 10, 1, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-17 04:27:58', '2023-06-18 23:07:56', '2023-06-18 23:07:56', '2023-07-04 10:18:08', NULL), (5, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 00:11:58', '2023-06-18 00:11:58', NULL, '2023-07-04 10:18:08', NULL), (6, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 01:34:29', '2023-06-18 01:34:29', NULL, '2023-07-04 10:18:08', NULL), (7, 1, 2, '', 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 01:55:37', '2023-06-24 00:39:58', NULL, '2023-07-04 10:18:08', NULL), (8, 1, 2, NULL, 1, 'I-9UFT32YRR7X3', 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 04:42:42', '2023-06-18 04:43:11', NULL, '2023-07-04 10:18:08', NULL), (9, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 04:47:02', '2023-06-18 04:47:02', NULL, '2023-07-04 10:18:08', NULL), (10, 1, 2, NULL, 1, 'I-EHDA9KJTPCPD', 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 06:42:42', '2023-06-18 06:43:21', NULL, '2023-07-04 10:18:08', NULL), (11, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 06:44:17', '2023-06-18 06:44:17', NULL, '2023-07-04 10:18:08', NULL), (12, 1, 2, NULL, 1, 'I-R50WYHCHWUCK', 'Premium', 10, 1, 1, 200, 500, 1000, 1, 1, 1, 1, 1, 1, 1, 250, 'monthly', 365, '2023-06-18 06:48:21', '2023-06-18 06:48:49', NULL, '2023-07-04 10:18:08', '{\"id\":\"WH-85X58677DS785211N-22X22019RD744025R\",\"event_version\":\"1.0\",\"create_time\":\"2023-06-18T12:48:25.696Z\",\"resource_type\":\"subscription\",\"resource_version\":\"2.0\",\"event_type\":\"BILLING.SUBSCRIPTION.CREATED\",\"summary\":\"Subscription created\",\"resource\":{\"start_time\":\"2023-06-18T12:48:25Z\",\"quantity\":\"1\",\"create_time\":\"2023-06-18T12:48:25Z\",\"links\":[{\"href\":\"https://www.sandbox.paypal.com/webapps/billing/subscriptions?ba_token=BA-1CT74004C6612131H\",\"rel\":\"approve\",\"method\":\"GET\"},{\"href\":\"https://api.sandbox.paypal.com/v1/billing/subscriptions/I-R50WYHCHWUCK\",\"rel\":\"edit\",\"method\":\"PATCH\"},{\"href\":\"https://api.sandbox.paypal.com/v1/billing/subscriptions/I-R50WYHCHWUCK\",\"rel\":\"self\",\"method\":\"GET\"}],\"id\":\"I-R50WYHCHWUCK\",\"plan_overridden\":false,\"plan_id\":\"P-38K040064U626245YMSHNERQ\",\"status\":\"APPROVAL_PENDING\"},\"links\":[{\"href\":\"https://api.sandbox.paypal.com/v1/notifications/webhooks-events/WH-85X58677DS785211N-22X22019RD744025R\",\"rel\":\"self\",\"method\":\"GET\"},{\"href\":\"https://api.sandbox.paypal.com/v1/notifications/webhooks-events/WH-85X58677DS785211N-22X22019RD744025R/resend\",\"rel\":\"resend\",\"method\":\"POST\"}]}'), (13, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 23:27:37', '2023-06-18 23:27:37', NULL, '2023-07-04 10:18:08', NULL), (14, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 23:29:09', '2023-06-18 23:29:09', NULL, '2023-07-04 10:18:08', NULL), (15, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-18 23:56:16', '2023-06-18 23:56:16', NULL, '2023-07-04 10:18:08', NULL), (16, 1, 2, NULL, 2, 'sub_1NKc2VF7ea9ThD5qRY7nCp3r', 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-19 00:57:49', '2023-06-19 00:58:16', NULL, '2023-07-04 10:18:08', '{\r\n \"id\": \"evt_3NKc2VF7ea9ThD5q1MT4sagd\",\r\n \"object\": \"event\",\r\n \"api_version\": \"2017-05-25\",\r\n \"created\": 1687157897,\r\n \"data\": {\r\n \"object\": {\r\n \"id\": \"pi_3NKc2VF7ea9ThD5q1YUhEPOn\",\r\n \"object\": \"payment_intent\",\r\n \"allowed_source_types\": [\r\n \"card\",\r\n \"cashapp\"\r\n ],\r\n \"amount\": 1050,\r\n \"amount_capturable\": 0,\r\n \"amount_details\": {\r\n \"tip\": {\r\n }\r\n },\r\n \"amount_received\": 1050,\r\n \"application\": null,\r\n \"application_fee_amount\": null,\r\n \"automatic_payment_methods\": null,\r\n \"canceled_at\": null,\r\n \"cancellation_reason\": null,\r\n \"capture_method\": \"automatic\",\r\n \"charges\": {\r\n \"object\": \"list\",\r\n \"data\": [\r\n {\r\n \"id\": \"ch_3NKc2VF7ea9ThD5q1PscmO0P\",\r\n \"object\": \"charge\",\r\n \"amount\": 1050,\r\n \"amount_captured\": 1050,\r\n \"amount_refunded\": 0,\r\n \"application\": null,\r\n \"application_fee\": null,\r\n \"application_fee_amount\": null,\r\n \"balance_transaction\": \"txn_3NKc2VF7ea9ThD5q1hXSYWtk\",\r\n \"billing_details\": {\r\n \"address\": {\r\n \"city\": null,\r\n \"country\": null,\r\n \"line1\": null,\r\n \"line2\": null,\r\n \"postal_code\": \"12345\",\r\n \"state\": null\r\n },\r\n \"email\": null,\r\n \"name\": null,\r\n \"phone\": null\r\n },\r\n \"calculated_statement_descriptor\": \"Stripe\",\r\n \"captured\": true,\r\n \"created\": 1687157896,\r\n \"currency\": \"usd\",\r\n \"customer\": \"cus_O6phd2Fs2XKKQo\",\r\n \"description\": \"Subscription creation\",\r\n \"destination\": null,\r\n \"dispute\": null,\r\n \"disputed\": false,\r\n \"failure_balance_transaction\": null,\r\n \"failure_code\": null,\r\n \"failure_message\": null,\r\n \"fraud_details\": {\r\n },\r\n \"invoice\": \"in_1NKc2VF7ea9ThD5qhgEJ1KYl\",\r\n \"livemode\": false,\r\n \"metadata\": {\r\n },\r\n \"on_behalf_of\": null,\r\n \"order\": null,\r\n \"outcome\": {\r\n \"network_status\": \"approved_by_network\",\r\n \"reason\": null,\r\n \"risk_level\": \"normal\",\r\n \"risk_score\": 12,\r\n \"seller_message\": \"Payment complete.\",\r\n \"type\": \"authorized\"\r\n },\r\n \"paid\": true,\r\n \"payment_intent\": \"pi_3NKc2VF7ea9ThD5q1YUhEPOn\",\r\n \"payment_method\": \"card_1NKc2RF7ea9ThD5qMT9aP5H6\",\r\n \"payment_method_details\": {\r\n \"card\": {\r\n \"brand\": \"visa\",\r\n \"checks\": {\r\n \"address_line1_check\": null,\r\n \"address_postal_code_check\": \"pass\",\r\n \"cvc_check\": \"pass\"\r\n },\r\n \"country\": \"US\",\r\n \"exp_month\": 10,\r\n \"exp_year\": 2023,\r\n \"fingerprint\": \"JRGy0l1YQlmF8Pcs\",\r\n \"funding\": \"credit\",\r\n \"installments\": null,\r\n \"last4\": \"4242\",\r\n \"mandate\": null,\r\n \"network\": \"visa\",\r\n \"network_token\": {\r\n \"used\": false\r\n },\r\n \"three_d_secure\": null,\r\n \"wallet\": null\r\n },\r\n \"type\": \"card\"\r\n },\r\n \"receipt_email\": null,\r\n \"receipt_number\": null,\r\n \"receipt_url\": \"https://pay.stripe.com/receipts/invoices/CAcaFwoVYWNjdF8xQVFlbWNGN2VhOVRoRDVxKIr5v6QGMgbr2xiY2IQ6LBbBiRvKcUlKfjNaDocpImM8g0Ftd6w_EOJ_kCGRl7pXw_T9NWsRb0SeLRb9?s=ap\",\r\n \"refunded\": false,\r\n \"refunds\": {\r\n \"object\": \"list\",\r\n \"data\": [\r\n\r\n ],\r\n \"has_more\": false,\r\n \"total_count\": 0,\r\n \"url\": \"/v1/charges/ch_3NKc2VF7ea9ThD5q1PscmO0P/refunds\"\r\n },\r\n \"review\": null,\r\n \"shipping\": null,\r\n \"source\": {\r\n \"id\": \"card_1NKc2RF7ea9ThD5qMT9aP5H6\",\r\n \"object\": \"card\",\r\n \"address_city\": null,\r\n \"address_country\": null,\r\n \"address_line1\": null,\r\n \"address_line1_check\": null,\r\n \"address_line2\": null,\r\n \"address_state\": null,\r\n \"address_zip\": \"12345\",\r\n \"address_zip_check\": \"pass\",\r\n \"brand\": \"Visa\",\r\n \"country\": \"US\",\r\n \"customer\": \"cus_O6phd2Fs2XKKQo\",\r\n \"cvc_check\": \"pass\",\r\n \"dynamic_last4\": null,\r\n \"exp_month\": 10,\r\n \"exp_year\": 2023,\r\n \"fingerprint\": \"JRGy0l1YQlmF8Pcs\",\r\n \"funding\": \"credit\",\r\n \"last4\": \"4242\",\r\n \"metadata\": {\r\n },\r\n \"name\": null,\r\n \"tokenization_method\": null,\r\n \"wallet\": null\r\n },\r\n \"source_transfer\": null,\r\n \"statement_descriptor\": null,\r\n \"statement_descriptor_suffix\": null,\r\n \"status\": \"succeeded\",\r\n \"transfer_data\": null,\r\n \"transfer_group\": null\r\n }\r\n ],\r\n \"has_more\": false,\r\n \"total_count\": 1,\r\n \"url\": \"/v1/charges?payment_intent=pi_3NKc2VF7ea9ThD5q1YUhEPOn\"\r\n },\r\n \"client_secret\": \"pi_3NKc2VF7ea9ThD5q1YUhEPOn_secret_ZzKPQlNSiIUoJV0zC5t498SAy\",\r\n \"confirmation_method\": \"automatic\",\r\n \"created\": 1687157895,\r\n \"currency\": \"usd\",\r\n \"customer\": \"cus_O6phd2Fs2XKKQo\",\r\n \"description\": \"Subscription creation\",\r\n \"invoice\": \"in_1NKc2VF7ea9ThD5qhgEJ1KYl\",\r\n \"last_payment_error\": null,\r\n \"latest_charge\": \"ch_3NKc2VF7ea9ThD5q1PscmO0P\",\r\n \"livemode\": false,\r\n \"metadata\": {\r\n },\r\n \"next_action\": null,\r\n \"next_source_action\": null,\r\n \"on_behalf_of\": null,\r\n \"payment_method\": null,\r\n \"payment_method_options\": {\r\n \"card\": {\r\n \"installments\": null,\r\n \"mandate_options\": null,\r\n \"network\": null,\r\n \"request_three_d_secure\": \"automatic\"\r\n },\r\n \"cashapp\": {\r\n }\r\n },\r\n \"payment_method_types\": [\r\n \"card\",\r\n \"cashapp\"\r\n ],\r\n \"processing\": null,\r\n \"receipt_email\": null,\r\n \"review\": null,\r\n \"setup_future_usage\": \"off_session\",\r\n \"shipping\": null,\r\n \"source\": \"card_1NKc2RF7ea9ThD5qMT9aP5H6\",\r\n \"statement_descriptor\": null,\r\n \"statement_descriptor_suffix\": null,\r\n \"status\": \"succeeded\",\r\n \"transfer_data\": null,\r\n \"transfer_group\": null\r\n }\r\n },\r\n \"livemode\": false,\r\n \"pending_webhooks\": 1,\r\n \"request\": {\r\n \"id\": \"req_7Jo8OFyTffEwhF\",\r\n \"idempotency_key\": \"0da25c72-2f12-4e4a-8a54-79dd4883befc\"\r\n },\r\n \"type\": \"payment_intent.succeeded\"\r\n}'), (17, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-19 23:01:57', '2023-06-19 23:01:57', NULL, '2023-07-04 10:18:08', NULL), (18, 1, 2, NULL, 2, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-20 03:16:49', '2023-06-20 03:16:49', NULL, '2023-07-04 10:18:08', NULL), (19, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-20 03:18:11', '2023-06-20 03:18:11', NULL, '2023-07-04 10:18:08', NULL), (20, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:10:11', '2023-06-21 01:10:11', NULL, '2023-07-04 10:18:08', NULL), (21, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:10:19', '2023-06-21 01:10:19', NULL, '2023-07-04 10:18:08', NULL), (22, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:10:27', '2023-06-21 01:10:27', NULL, '2023-07-04 10:18:08', NULL), (23, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:12:55', '2023-06-21 01:12:55', NULL, '2023-07-04 10:18:08', NULL), (24, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:13:07', '2023-06-21 01:13:07', NULL, '2023-07-04 10:18:08', NULL), (25, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:13:17', '2023-06-21 01:13:17', NULL, '2023-07-04 10:18:08', NULL), (26, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:21:48', '2023-06-21 01:21:48', NULL, '2023-07-04 10:18:08', NULL), (27, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:21:52', '2023-06-21 01:21:52', NULL, '2023-07-04 10:18:08', NULL), (28, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:22:55', '2023-06-21 01:22:55', NULL, '2023-07-04 10:18:08', NULL), (29, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:23:09', '2023-06-21 01:23:09', NULL, '2023-07-04 10:18:08', NULL), (30, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:24:34', '2023-06-21 01:24:34', NULL, '2023-07-04 10:18:08', NULL), (31, 1, 2, NULL, 1, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-21 01:28:10', '2023-06-21 01:28:10', NULL, '2023-07-04 10:18:08', NULL), (32, 1, 2, '{\"email_token\":\"d7gofp6yppn3qz7\"}', 7, 'SUB_vsyqdmlzble3uii', 'Premium', 10, 1, 1, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-24 00:18:30', '2023-06-24 00:41:05', NULL, '2023-07-04 10:18:08', '{\r\n \"event\": \"charge.success\",\r\n \"data\": {\r\n \"domain\": \"test\",\r\n \"invoice_code\": \"INV_thy2vkmirn2urwv\",\r\n \"amount\": 50000,\r\n \"period_start\": \"2018-12-20T15:00:00.000Z\",\r\n \"period_end\": \"2018-12-19T23:59:59.000Z\",\r\n \"status\": \"success\",\r\n \"paid\": true,\r\n \"paid_at\": \"2018-12-20T15:00:06.000Z\",\r\n \"description\": null,\r\n \"authorization\": {\r\n \"authorization_code\": \"AUTH_9246d0h9kl\",\r\n \"bin\": \"408408\",\r\n \"last4\": \"4081\",\r\n \"exp_month\": \"12\",\r\n \"exp_year\": \"2020\",\r\n \"channel\": \"card\",\r\n \"card_type\": \"visa DEBIT\",\r\n \"bank\": \"Test Bank\",\r\n \"country_code\": \"NG\",\r\n \"brand\": \"visa\",\r\n \"reusable\": true,\r\n \"signature\": \"SIG_iCw3p0rsG7LUiQwlsR3t\",\r\n \"account_name\": \"BoJack Horseman\"\r\n },\r\n \"subscription\": {\r\n \"status\": \"active\",\r\n \"subscription_code\": \"SUB_fq7dbe8tju0i1v8\",\r\n \"email_token\": \"3a1h7bcu8zxhm8k\",\r\n \"amount\": 50000,\r\n \"cron_expression\": \"0 * * * *\",\r\n \"next_payment_date\": \"2018-12-20T00:00:00.000Z\",\r\n \"open_invoice\": null\r\n },\r\n \"customer\": {\r\n \"id\": 46,\r\n \"first_name\": \"Asample\",\r\n \"last_name\": \"Personpaying\",\r\n \"email\": \"asam@ple.com\",\r\n \"customer_code\": \"CUS_00w4ath3e2ukno4\",\r\n \"phone\": \"\",\r\n \"metadata\": null,\r\n \"risk_action\": \"default\"\r\n },\r\n \"transaction\": {\r\n \"reference\": \"9cfbae6e-bbf3-5b41-8aef-d72c1a17650g\",\r\n \"status\": \"success\",\r\n \"amount\": 50000,\r\n \"currency\": \"NGN\"\r\n },\r\n \"created_at\": \"2018-12-20T15:00:02.000Z\"\r\n }\r\n}'), (33, 1, 2, NULL, 7, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-24 01:06:41', '2023-06-24 01:06:41', NULL, '2023-07-04 10:18:08', NULL), (34, 1, 2, '', 10, 'sub_M5mkgHoxYrHgr2', 'Premium', 10, 1, 1, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-06-24 06:39:22', '2023-06-24 07:34:54', NULL, '2023-07-04 10:18:08', '{\r\n \"entity\":\"event\",\r\n \"account_id\":\"acc_FzO2PyLE5ZYkW8\",\r\n \"event\":\"subscription.charged\",\r\n \"contains\":[\r\n \"subscription\",\r\n \"payment\"\r\n ],\r\n \"payload\":{\r\n \"subscription\":{\r\n \"entity\":{\r\n \"id\":\"sub_IilT1Ob70FQPp3\",\r\n \"entity\":\"subscription\",\r\n \"plan_id\":\"plan_IilSFBnjkbmBuP\",\r\n \"customer_id\":\"cust_IilSzuBJCNvrsu\",\r\n \"status\":\"active\",\r\n \"current_start\":1641976110,\r\n \"current_end\":1644949800,\r\n \"ended_at\":null,\r\n \"quantity\":1,\r\n \"notes\":{\r\n \"source\":\"magento-subscription\",\r\n \"magento_quote_id\":\"36\"\r\n },\r\n \"charge_at\":1644949800,\r\n \"start_at\":1641976110,\r\n \"end_at\":1657045800,\r\n \"auth_attempts\":0,\r\n \"total_count\":6,\r\n \"paid_count\":1,\r\n \"customer_notify\":false,\r\n \"created_at\":1641976086,\r\n \"expire_by\":null,\r\n \"short_url\":null,\r\n \"has_scheduled_changes\":false,\r\n \"change_scheduled_at\":null,\r\n \"source\":\"magento-subscription\",\r\n \"payment_method\":\"upi\",\r\n \"offer_id\":null,\r\n \"remaining_count\":5\r\n }\r\n },\r\n \"payment\":{\r\n \"entity\":{\r\n \"id\":\"pay_IilTQTf37sXXNX\",\r\n \"entity\":\"payment\",\r\n \"amount\":6000,\r\n \"currency\":\"INR\",\r\n \"status\":\"captured\",\r\n \"order_id\":\"order_IilT1yadIMdg9b\",\r\n \"invoice_id\":\"inv_IilT1w4sLgP3s2\",\r\n \"international\":false,\r\n \"method\":\"upi\",\r\n \"amount_refunded\":0,\r\n \"amount_transferred\":0,\r\n \"refund_status\":null,\r\n \"captured\":\"1\",\r\n \"description\":null,\r\n \"card_id\":null,\r\n \"bank\":null,\r\n \"wallet\":null,\r\n \"vpa\":\"123@upi\",\r\n \"email\":\"roni_cost@example.com\",\r\n \"contact\":\"+1234567890\",\r\n \"customer_id\":\"cust_IilSzuBJCNvrsu\",\r\n \"token_id\":\"token_IilTQiLc4NU0je\",\r\n \"notes\":{\r\n \"merchant_order_id\":\"\",\r\n \"merchant_quote_id\":\"36\"\r\n },\r\n \"fee\":142,\r\n \"tax\":22,\r\n \"error_code\":null,\r\n \"error_description\":null,\r\n \"acquirer_data\":{\r\n \"rrn\":\"001000100002\",\r\n \"upi_transaction_id\":\"npci_txn_id_for_IilTQTf37sXXNX\"\r\n },\r\n \"created_at\":1641976110\r\n }\r\n }\r\n },\r\n \"created_at\":1641976178\r\n}'), (35, 1, 2, NULL, 2, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-07-03 00:51:06', '2023-07-03 00:51:06', NULL, '2023-07-04 10:18:08', NULL), (36, 1, 2, NULL, 5, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-07-03 00:51:53', '2023-07-03 00:51:53', NULL, '2023-07-04 10:18:08', NULL), (37, 1, 2, NULL, 1000, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-07-03 00:52:16', '2023-07-03 00:52:16', NULL, '2023-07-04 10:18:08', NULL), (38, 1, 2, NULL, 3, NULL, 'Premium', 10, 0, 0, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-07-03 00:52:50', '2023-07-03 00:52:50', NULL, '2023-07-04 10:18:08', NULL), (39, 1, 2, NULL, 14, NULL, 'Premium', 10, 1, 1, 200, 500, 1000, 1, 0, 0, 0, 0, 0, 1, 250, 'monthly', 365, '2023-07-03 00:52:55', '2023-07-03 00:52:55', NULL, '2023-08-03 10:18:08', NULL); -- -------------------------------------------------------- -- -- Table structure for table `templates` -- CREATE TABLE `templates` ( `id` bigint(20) UNSIGNED NOT NULL, `language_id` bigint(20) UNSIGNED DEFAULT NULL, `section_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `templates` -- INSERT INTO `templates` (`id`, `language_id`, `section_name`, `description`, `created_at`, `updated_at`) VALUES (1, 1, 'hero', '{\"title\":\"AI Tools Ultimate Solution for Content Creation!\",\"short_description\":\"Generate Engaging and High-Quality Content in Minutes with the Help of AI. There are several AI-powered writing assistants.\",\"button_name\":\"More Features\"}', '2023-05-14 06:45:46', '2023-05-14 07:02:10'), (2, 1, 'feature', '{\"title\":\"Generate Content In Seconds\",\"sub_title\":\"Get better results in a fraction of the time. Finally, a writing tool you\\u2019ll actually use.\"}', '2023-05-15 00:47:10', '2023-05-15 00:47:10'), (3, 1, 'about-us', '{\"title\":\"Revolutionizing Content Creation With AI-Powered Tools\",\"description\":\"At AI Tools, we believe that creating high-quality content should be easy and accessible for everyone. That is why we will developed an AI-powered content creation tool that automates the content creation process and generates engaging content across various mediums, including articles, blogs, social media posts, and more.\\r\\n\\r\\n\\r\\nOur team consists of experts in machine learning, natural language processing, and content creation who work tirelessly to ensure that our product is user-friendly, effective, and reliable. We are committed to using AI technology to make content creation more efficient and effective for our users.\",\"button_name\":\"Learn More\"}', '2023-05-15 01:08:03', '2023-05-15 01:28:27'), (4, 1, 'qr', '{\"title\":\"Content Creation With Chat Bot In Easy Way\",\"short_description\":\"Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nihil perferendis culpa architecto corrupti, natus dicta.\"}', '2023-05-15 01:29:34', '2023-05-15 01:29:34'), (5, 1, 'how-it-work', '{\"title\":\"How It Works\",\"short_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus molestie, justo nec convallis sollicitudin.\"}', '2023-05-15 01:33:56', '2023-05-15 01:33:56'), (6, 1, 'pricing', '{\"title\":\"Perfect Plan For Everyone\",\"short_description\":\"Manage your projects and your talent in a single system, resulting in empowered teams.\"}', '2023-05-15 06:03:49', '2023-05-15 06:03:49'), (7, 1, 'testimonial', '{\"title\":\"We Serve Our Clients\",\"short_description\":\"As a Saas developer or web crawler expert, I help organizations adjust to the expanding significance.\"}', '2023-05-15 06:07:01', '2023-05-15 06:07:01'), (8, 1, 'faq', '{\"title\":\"Frequently Asked Questions\",\"short_description\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt possimus itaque earum dolor sit repudiandae impedit tempore accusantium quos in.\"}', '2023-05-15 07:33:53', '2023-05-15 07:33:53'), (9, 1, 'blog', '{\"title\":\"Our Recent Blog\",\"short_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"}', '2023-05-15 22:52:28', '2023-05-15 22:52:28'), (10, 1, 'contact', '{\"title\":\"Contact us\",\"sub_title\":\"Please indicade the nature of your inquiry and fill in the form bellow.\",\"phone\":\"+45345847431324\",\"email\":\"demo@example.com\",\"location\":\"22 Baker Street, London\",\"about_company\":\"Lorem ipsum dolor sit, amet consectetur adipisicing elit. Consequuntur fuga odit excepturi, natus voluptate commodi qui sunt quisquam cupiditate molestiae?\"}', '2023-05-16 01:03:55', '2023-05-16 01:03:55'), (11, 2, 'hero', '{\"title\":\"La soluci\\u00f3n definitiva de AI Tools para la creaci\\u00f3n de contenido!\",\"short_description\":\"Genere contenido atractivo y de alta calidad en minutos con la ayuda de la IA. Hay varios asistentes de escritura impulsados \\u200b\\u200b\\u200b\\u200bpor IA.\",\"button_name\":\"M\\u00e1s caracter\\u00edsticas\"}', '2023-05-16 07:55:58', '2023-05-16 07:55:58'), (12, 2, 'about-us', '{\"title\":\"Revolucionando la creaci\\u00f3n de contenido con herramientas impulsadas por IA\",\"description\":\"En AI Tools, creemos que la creaci\\u00f3n de contenido de alta calidad debe ser f\\u00e1cil y accesible para todos. Es por eso que desarrollaremos una herramienta de creaci\\u00f3n de contenido impulsada por IA que automatice el proceso de creaci\\u00f3n de contenido y genere contenido atractivo en varios medios, incluidos art\\u00edculos, blogs, publicaciones en redes sociales y m\\u00e1s. Nuestro equipo est\\u00e1 formado por expertos en aprendizaje autom\\u00e1tico, procesamiento de lenguaje natural y creaci\\u00f3n de contenido que trabajan incansablemente para garantizar que nuestro producto sea f\\u00e1cil de usar, efectivo y confiable. Estamos comprometidos con el uso de la tecnolog\\u00eda de inteligencia artificial para hacer que la creaci\\u00f3n de contenido sea m\\u00e1s eficiente y efectiva para nuestros usuarios.\",\"button_name\":\"Aprende m\\u00e1s\"}', '2023-05-16 07:59:03', '2023-05-16 07:59:03'), (13, 2, 'qr', '{\"title\":\"Creaci\\u00f3n de contenido con Chat Bot de manera f\\u00e1cil\",\"short_description\":\"Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nihil perferendis culpa arquitecto corrupti, natus dicta.\"}', '2023-05-16 07:59:30', '2023-05-16 07:59:30'), (14, 2, 'how-it-work', '{\"title\":\"C\\u00f3mo funciona\",\"short_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus molestie, justo nec convallis sollicitudin.\"}', '2023-05-16 07:59:57', '2023-05-16 07:59:57'), (15, 2, 'pricing', '{\"title\":\"Plan perfecto para todas\",\"short_description\":\"Gestiona tus proyectos y tu talento en un solo sistema, dando como resultado equipos empoderados.\"}', '2023-05-16 08:00:27', '2023-05-16 08:00:27'), (16, 2, 'testimonial', '{\"title\":\"Servimos a nuestras clientas\",\"short_description\":\"Como desarrollador de SaaS o experto en rastreadores web, ayudo a las organizaciones a adaptarse a la creciente importancia.\"}', '2023-05-16 23:49:21', '2023-05-16 23:49:21'), (17, 2, 'faq', '{\"title\":\"Frequently Asked Questions\",\"short_description\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt possimus itaque earum dolor sit repudiandae impedit tempore accusantium quos in.\"}', '2023-05-16 23:49:47', '2023-05-16 23:49:47'), (18, 2, 'blog', '{\"title\":\"Nuestro blog reciente\",\"short_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"}', '2023-05-16 23:50:59', '2023-05-16 23:50:59'), (19, 2, 'contact', '{\"title\":\"Contacta con nosotros\",\"sub_title\":\"Indique la naturaleza de su consulta y rellene el siguiente formulario.\",\"phone\":\"+45345847431324\",\"email\":\"demo@example.com\",\"location\":\"22 Baker Street, Londres\",\"about_company\":\"Lorem ipsum dolor sit, amet consectetur adipisicing elit. Consequuntur fuga odit excepturi, natus voluptate commodi qui sunt quisquam cupiditate molestiae?\"}', '2023-05-16 23:52:10', '2023-05-16 23:52:10'), (20, 2, 'feature', '{\"title\":\"Genere contenido en segundos\",\"sub_title\":\"Obtenga mejores resultados en una fracci\\u00f3n del tiempo. Finalmente, una herramienta de escritura que realmente usar\\u00e1s.\"}', '2023-06-20 06:54:19', '2023-06-20 06:56:09'); -- -------------------------------------------------------- -- -- Table structure for table `template_categories` -- CREATE TABLE `template_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` enum('original','custom') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'custom', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `template_categories` -- INSERT INTO `template_categories` (`id`, `name`, `code`, `type`, `created_at`, `updated_at`) VALUES (1, 'Blog', 'blog', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (2, 'Email', 'email', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (3, 'Other', 'other', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (4, 'Social Media', 'social', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (5, 'Content', 'text', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (6, 'Video', 'video', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (7, 'Website', 'web', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (8, 'Marketing', 'marketing', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (9, 'Ads', 'ad', 'original', '2023-05-21 14:25:20', '2023-05-29 04:20:46'), (10, 'SEO', 'seo', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (11, 'Framework', 'framework', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (12, 'Ecommerce', 'ecommerce', 'original', '2023-05-21 14:25:20', '2023-05-21 14:25:20'), (13, 'FAQ', 'faq', 'custom', '2023-05-29 00:35:52', '2023-05-29 04:20:57'); -- -------------------------------------------------------- -- -- Table structure for table `template_media` -- CREATE TABLE `template_media` ( `id` bigint(20) UNSIGNED NOT NULL, `section_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `template_media` -- INSERT INTO `template_media` (`id`, `section_name`, `description`, `driver`, `created_at`, `updated_at`) VALUES (2, 'hero', '{\"image\":\"templates\\/itxvyfCm0Un0ghPy1Md4Un2VA5XBz5U4NQwSNvj8.png\",\"video\":null,\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', 'local', '2023-05-14 06:47:41', '2023-05-14 07:02:10'), (3, 'about-us', '{\"image\":\"templates\\/y6KBiX103PqiqQM4Xwzhnl2KOtMGA8eqxQGFhIVi.png\",\"video\":null,\"button_link\":\"https:\\/\\/www.bugfinder.net\\/\"}', 'local', '2023-05-15 01:08:03', '2023-05-15 01:28:27'), (4, 'qr', '{\"image\":\"templates\\/fraltyWIcY64TmIMdppbK5QB4H9ewH9DqOJ9F0LK.png\",\"qr_image\":\"templates\\/L0FRmhtGM7F8F8BtfVyWsxrImSVexthgdQmEAgJ7.png\",\"video\":null}', 'local', '2023-05-15 01:29:34', '2023-07-04 03:57:21'); -- -------------------------------------------------------- -- -- Table structure for table `template_responses` -- CREATE TABLE `template_responses` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `workbook_id` int(11) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `model` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `language` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `prompt_tokens` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `completion_tokens` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `total_tokens` int(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `template_responses` -- INSERT INTO `template_responses` (`id`, `user_id`, `workbook_id`, `title`, `template_code`, `model`, `language`, `prompt_tokens`, `completion_tokens`, `total_tokens`, `created_at`, `updated_at`) VALUES (3, 1, NULL, NULL, 'RDJEZ', 'gpt-3.5-turbo', 'en', '51', '45', 96, '2023-06-04 05:28:47', '2023-06-04 05:28:47'), (4, 1, NULL, 'New Stories', 'PAKMF', 'gpt-3.5-turbo', 'en', '35', '150', 185, '2023-06-04 05:38:13', '2023-06-05 00:48:17'), (5, 1, NULL, 'Play Cricket', 'YKZTW', 'gpt-3.5-turbo', 'en', '53', '44', 97, '2023-06-05 02:56:59', '2023-06-05 03:00:41'), (6, 1, 3, NULL, 'KPAQQ', 'gpt-3.5-turbo', 'hi', '118', '50', 168, '2023-06-05 05:00:18', '2023-06-05 05:00:18'), (7, 1, 3, NULL, 'XHFHR', 'gpt-3.5-turbo', 'it', '35', '20', 55, '2023-06-05 05:01:35', '2023-06-05 05:01:35'), (8, 1, NULL, NULL, 'XHFHR', 'gpt-3.5-turbo', 'zh', '35', '50', 85, '2023-06-05 05:03:31', '2023-06-05 05:03:31'), (9, 1, NULL, NULL, 'XHFHR', 'gpt-3.5-turbo', 'zh', '35', '20', 55, '2023-06-05 05:07:53', '2023-06-05 05:07:53'), (10, 1, NULL, NULL, 'XHFHR', 'gpt-3.5-turbo', 'zh', '35', '87', 122, '2023-06-05 05:09:13', '2023-06-05 05:09:13'), (12, 1, NULL, NULL, 'XHFHR', 'gpt-3.5-turbo', 'hi', '42', '10', 52, '2023-06-05 05:14:29', '2023-06-05 05:14:29'), (13, 1, 0, NULL, 'WGKYP', 'gpt-3.5-turbo', 'en', '20', '10', 30, '2023-06-12 01:03:29', '2023-06-12 01:03:29'), (14, 1, 0, NULL, 'KPAQQ', 'gpt-3.5-turbo', 'en', '46', '10', 56, '2023-06-12 01:04:39', '2023-06-12 01:04:39'), (15, 1, 3, NULL, 'XHFHR', 'gpt-3.5-turbo', 'bg', '42', '191', 233, '2023-06-21 07:14:56', '2023-06-21 07:14:56'); -- -------------------------------------------------------- -- -- Table structure for table `template_response_texts` -- CREATE TABLE `template_response_texts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `template_response_id` bigint(20) UNSIGNED NOT NULL, `text` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `template_response_texts` -- INSERT INTO `template_response_texts` (`id`, `user_id`, `template_response_id`, `text`, `created_at`, `updated_at`) VALUES (1, 1, 3, 'Subject: Don\'t Let Bugs Bug You Anymore!\n\nHello there,\n\n', '2023-06-04 05:28:47', '2023-06-04 05:28:47'), (2, 1, 3, 'Subject: Don\'t Let Bugs Bug You Anymore!\n\nHello there,\n\n', '2023-06-04 05:28:47', '2023-06-04 05:28:47'), (3, 1, 3, 'Subject: Don\'t Let Bugs Bug You Anymore!\n\nHello there,\n\n', '2023-06-04 05:28:47', '2023-06-04 05:28:47'), (4, 1, 4, 'Once upon a time, there was a clumsy chicken named Chuck. Chuck was always getting into trouble because he couldn\'t seem to keep his feathers straight. One day, Chuck decided to try his hand at flying. He flapped his wings and jumped off', '2023-06-04 05:38:13', '2023-06-04 05:38:13'), (5, 1, 4, 'Once upon a time, in a far-off land, there lived a man named Jack. Jack was known for his funny antics and his infectious laughter. He was always up for some mischief and never missed a chance to make people laugh.\n\nOne day,', '2023-06-04 05:38:13', '2023-06-04 05:38:13'), (6, 1, 4, 'Once upon a time, there was a man named Jack who loved to play pranks on his friends. One day, he decided to play the ultimate prank on his best friend, Tom.\n\nJack spent weeks planning the prank, and finally, the day', '2023-06-04 05:38:13', '2023-06-04 05:38:13'), (7, 1, 5, 'Well, my dear friend, if you\'re asking me how to play cricket, then I suggest you start by', '2023-06-05 02:56:59', '2023-06-05 02:56:59'), (8, 1, 5, 'Well, my dear friend, if you\'re asking me how to play cricket, then I suggest you start by', '2023-06-05 02:56:59', '2023-06-05 02:56:59'), (9, 1, 6, 'अमेरिका - एक सुंदर देश\n\nअ', '2023-06-05 05:00:18', '2023-06-05 05:00:18'), (10, 1, 6, 'अमेरिका, एक देश है जो प्रत', '2023-06-05 05:00:18', '2023-06-05 05:00:18'), (11, 1, 7, 'Well, let me put it this way - football is like a box of chocolates, you never know', '2023-06-05 05:01:35', '2023-06-05 05:01:35'), (12, 1, 8, 'Well, let me put it this way - football is like a box of chocolates, you never know what you\'re gonna get. Sometimes it\'s a thrilling match with nail-biting moments, and other times it\'s just a bunch of guys running around', '2023-06-05 05:03:31', '2023-06-05 05:03:31'), (13, 1, 9, 'Well, let me put it this way - football is like a box of chocolates, you never know', '2023-06-05 05:07:53', '2023-06-05 05:07:53'), (14, 1, 10, 'Well, let me put it this way - football is like a box of chocolates, you never know what you\'re gonna get. Sometimes it\'s a thrilling match with nail-biting moments, and other times it\'s just a bunch of guys running around aimlessly. So, is it the most beautiful game in the world? I don\'t know, but it sure is entertaining to watch those players flop around like fish out of water.', '2023-06-05 05:09:13', '2023-06-05 05:09:13'), (16, 1, 12, 'फुटबॉल', '2023-06-05 05:14:29', '2023-06-05 05:14:29'), (17, 1, 13, '1. \"The Art of Batting: Master', '2023-06-12 01:03:29', '2023-06-12 01:03:29'), (18, 1, 14, 'Bangladesh, the land of the Royal Bengal Tiger', '2023-06-12 01:04:39', '2023-06-12 01:04:39'), (19, 1, 15, 'Как да направя чаша чай? Не знам, може би да сложа чай във вода и да я загрея? Или може би да поканя чайната кралица да го направи за мен? Хаха, ама сериозно, просто сложи чай във вода и го остави да кипне за няколко минути. Но ако искаш да бъдеш истински фен на чая, можеш да изследваш различните видове чай и да ги приготвиш по специален начин. А сега, кой иска чаша чай? :)', '2023-06-21 07:14:56', '2023-06-21 07:14:56'); -- -------------------------------------------------------- -- -- Table structure for table `tickets` -- CREATE TABLE `tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(91) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ticket` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0: Open, 1: Answered, 2: Replied, 3: Closed ', `last_reply` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `tickets` -- INSERT INTO `tickets` (`id`, `user_id`, `name`, `email`, `ticket`, `subject`, `status`, `last_reply`, `created_at`, `updated_at`) VALUES (1, 1, 'demouser', 'demo@gmail.com', '497492', 'test', 0, '2023-02-25 00:18:30', '2023-02-25 00:18:30', '2023-02-25 00:18:30'), (2, 1, 'demouser', 'demo@gmail.com', '611448', 'test', 0, '2023-05-14 00:12:30', '2023-05-14 00:12:30', '2023-05-14 00:12:30'), (3, 1, 'demouser', 'demo@gmail.com', '602300', 'Test Message', 2, '2023-05-20 05:53:54', '2023-05-20 04:56:45', '2023-05-20 05:53:54'); -- -------------------------------------------------------- -- -- Table structure for table `ticket_attachments` -- CREATE TABLE `ticket_attachments` ( `id` bigint(20) UNSIGNED NOT NULL, `ticket_message_id` bigint(20) UNSIGNED DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(51) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ticket_attachments` -- INSERT INTO `ticket_attachments` (`id`, `ticket_message_id`, `image`, `driver`, `created_at`, `updated_at`) VALUES (1, 1, '63f9a836025471677305910.png', NULL, '2023-02-25 00:18:30', '2023-02-25 00:18:30'), (2, 2, 'assets/upload/ticket//Ek7zU6uxQuQKotpVJHVX2JSxo4QmhzyOf3BuLWlj.png', 'local', '2023-05-14 00:12:30', '2023-05-14 00:12:30'), (3, 3, 'ticket/NoAvQKnwxGmNKSO0uxNwtOjnS1D8rjIPlv53cuFJ.png', 'local', '2023-05-20 04:56:45', '2023-05-20 04:56:45'), (4, 5, 'ticket/G9sO5FRGt0TCGc7tFrWUGzNSneMmaWgUe4cYXkfS.png', 'local', '2023-05-20 05:53:54', '2023-05-20 05:53:54'); -- -------------------------------------------------------- -- -- Table structure for table `ticket_messages` -- CREATE TABLE `ticket_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `ticket_id` bigint(20) UNSIGNED DEFAULT NULL, `admin_id` bigint(20) UNSIGNED DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ticket_messages` -- INSERT INTO `ticket_messages` (`id`, `ticket_id`, `admin_id`, `message`, `created_at`, `updated_at`) VALUES (1, 1, NULL, 'test message', '2023-02-25 00:18:30', '2023-02-25 00:18:30'), (2, 2, NULL, 'lo', '2023-05-14 00:12:30', '2023-05-14 00:12:30'), (3, 3, NULL, 'Message Test how its work', '2023-05-20 04:56:45', '2023-05-20 04:56:45'), (4, 3, 1, 'well, this is work fine now', '2023-05-20 05:50:30', '2023-05-20 05:50:30'), (5, 3, NULL, 'my favourite food this is', '2023-05-20 05:53:54', '2023-05-20 05:53:54'); -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `transactional_id` int(11) NOT NULL, `transactional_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` decimal(18,8) NOT NULL DEFAULT 0.00000000, `charge` decimal(18,8) NOT NULL DEFAULT 0.00000000, `currency_code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `transactions` -- INSERT INTO `transactions` (`id`, `transactional_id`, `transactional_type`, `amount`, `charge`, `currency_code`, `created_at`, `updated_at`) VALUES (16, 12, 'App\\Models\\Fund', '5.69000000', '0.50000000', NULL, '2023-06-20 03:12:27', '2023-06-20 03:12:27'), (17, 13, 'App\\Models\\Fund', '5.69000000', '2.00000000', NULL, '2023-06-20 03:15:44', '2023-06-20 03:15:44'), (18, 14, 'App\\Models\\Fund', '10.00000000', '0.50000000', NULL, '2023-06-20 06:46:01', '2023-06-20 06:46:01'), (19, 15, 'App\\Models\\Fund', '5.69000000', '0.50000000', NULL, '2023-06-21 03:12:23', '2023-06-21 03:12:23'), (20, 16, 'App\\Models\\Fund', '5.69000000', '0.50000000', NULL, '2023-06-21 03:18:21', '2023-06-21 03:18:21'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `ref_by` int(11) DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0 = inactive, 1 = active', `balance` decimal(18,8) DEFAULT NULL, `workbook` int(11) DEFAULT NULL COMMENT 'default workbook', `language_id` bigint(20) DEFAULT NULL, `email_verification` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 = inactive, 1 = active', `sms_verification` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0 = inactive, 1 = active', `verify_code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sent_at` datetime DEFAULT NULL, `two_fa` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0: two-FA off, 1: two-FA on ', `two_fa_verify` tinyint(1) NOT NULL DEFAULT 1 COMMENT ' 0: two-FA unverified, 1: two-FA verified ', `two_fa_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `kyc_verified` tinyint(4) DEFAULT NULL COMMENT '0=> not verified, 1=>pending , 2=> verified 3=>rejected ', `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_login` timestamp NULL DEFAULT NULL, `fcm_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'firebase token', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `email_key` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'email notification active template key', `sms_key` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'sms notification active template key', `push_key` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'push notification active template key', `in_app_key` text COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'in app notification active template key', `github_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'for socialite ', `google_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `facebook_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `prepaid_remaning_words` int(11) DEFAULT 0, `prepaid_remaning_images` int(11) DEFAULT 0, `prepaid_remaning_characters` int(11) DEFAULT 0, `subs_remaning_words` int(11) NOT NULL DEFAULT 0, `subs_remaning_images` int(11) NOT NULL DEFAULT 0, `subs_remaning_characters` int(11) NOT NULL DEFAULT 0, `subs_expired_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `ref_by`, `name`, `username`, `email`, `email_verified_at`, `status`, `balance`, `workbook`, `language_id`, `email_verification`, `sms_verification`, `verify_code`, `sent_at`, `two_fa`, `two_fa_verify`, `two_fa_code`, `kyc_verified`, `password`, `remember_token`, `last_login`, `fcm_token`, `created_at`, `updated_at`, `email_key`, `sms_key`, `push_key`, `in_app_key`, `github_id`, `google_id`, `facebook_id`, `prepaid_remaning_words`, `prepaid_remaning_images`, `prepaid_remaning_characters`, `subs_remaning_words`, `subs_remaning_images`, `subs_remaning_characters`, `subs_expired_at`) VALUES (1, NULL, 'Demouser', 'demouser', 'demo@gmail.com', NULL, 1, NULL, 3, 1, 1, 1, NULL, NULL, 0, 1, NULL, 0, '$2y$10$AS2MdGdFIsu8da5f4pXCcemESZha3xNOJ8aa2xHyxYfbRIpaklqCu', NULL, '2023-02-26 06:48:28', 'dX6Bg400esxrivQ_lVrXga:APA91bHfdkb9TsgTc-8liLWI5kRL9Z2TIykKX89LdWOPeJAL5tuFDW-xiQ7HV4Qi1eqVJRbNPdVP1OedBXR50e7CzUhI0OIG3BvYEWS6C4ZUronkEm_uH7DNT1HzmzwdkN0oP6fBatBW', '2023-02-22 23:28:18', '2023-07-06 07:17:19', '[\"ADD_BALANCE_USER\",\"DEDUCTED_BALANCE\",\"PASSWORD_RESET\",\"PAYMENT_REJECTED\",\"USER_BUY_PLAN\",\"VERIFICATION_CODE\"]', '[\"ADD_BALANCE_USER\",\"DEDUCTED_BALANCE\",\"PASSWORD_RESET\",\"PAYMENT_REJECTED\",\"USER_BUY_PLAN\",\"VERIFICATION_CODE\"]', '[\"DEDUCTED_BALANCE\",\"USER_BUY_PLAN\",\"ADD_BALANCE\",\"ADMIN_REPLIED_TICKET\",\"SUPPORT_TICKET_CREATE\",\"SUPPORT_TICKET_REPLIED\"]', '[\"DEDUCTED_BALANCE\",\"USER_BUY_PLAN\",\"ADD_BALANCE\",\"ADMIN_REPLIED_TICKET\",\"SUPPORT_TICKET_CREATE\",\"SUPPORT_TICKET_REPLIED\"]', NULL, NULL, NULL, 5717, 155, 7020, 5, 5, 10, '2023-06-21 18:00:00'), (5, NULL, 'John Doe', 'johndoe', 'john@gmail.com', NULL, 1, NULL, NULL, 1, 1, 1, NULL, '2023-05-16 13:32:26', 0, 1, NULL, NULL, '$2y$10$14b3GgoSu/.rnW3HID/O5e/4lC0zZlyQKHdYduxxlD6TeyLsLY.Me', NULL, NULL, NULL, '2023-05-16 07:32:25', '2023-05-16 07:32:26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, '2023-06-19 09:09:30'), (13, NULL, 'Anik Dey', 'anikdey141997@gmail.com', 'anikdey141997@gmail.com', NULL, 1, NULL, NULL, 1, 1, 1, NULL, NULL, 0, 1, NULL, NULL, '$2y$10$cp7r8IF/EpvGLlSb/r2siesg.qUcepJbLDi4zcntaUZEHOG5nN0rC', NULL, NULL, NULL, '2023-05-22 00:39:04', '2023-05-22 00:39:04', '[\"ADD_FUND_USER_ADMIN\",\"ADD_FUND_USER_USER\",\"DEPOSIT_BONUS\",\"PASSWORD_RESET\",\"PAYMENT_REJECTED\",\"PAYOUT_CANCEL\",\"PAYOUT_CONFIRM\",\"PAYOUT_REQUEST_FROM\",\"PAYOUT_REQUEST_TO_ADMIN\",\"TRANSFER_FROM\",\"TRANSFER_TO\",\"VERIFICATION_CODE\"]', '[\"ADD_FUND_USER_ADMIN\",\"ADD_FUND_USER_USER\",\"DEPOSIT_BONUS\",\"PASSWORD_RESET\",\"PAYMENT_REJECTED\",\"PAYOUT_CANCEL\",\"PAYOUT_CONFIRM\",\"PAYOUT_REQUEST_FROM\",\"PAYOUT_REQUEST_TO_ADMIN\",\"TRANSFER_FROM\",\"TRANSFER_TO\",\"VERIFICATION_CODE\"]', '[\"ADD_BALANCE\",\"ADD_FUND_USER_ADMIN\",\"ADD_FUND_USER_USER\",\"ADMIN_REPLIED_TICKET\",\"DEDUCTED_BALANCE\",\"LOGIN_BONUS\",\"PAYOUT_CANCEL\",\"PAYOUT_CONFIRM\",\"PAYOUT_REQUEST_FROM\",\"PAYOUT_REQUEST_TO_ADMIN\",\"SUPPORT_TICKET_CREATE\",\"SUPPORT_TICKET_REPLIED\",\"TRANSFER_TO\"]', '[\"ADD_BALANCE\",\"ADD_FUND_USER_ADMIN\",\"ADD_FUND_USER_USER\",\"ADMIN_REPLIED_TICKET\",\"DEDUCTED_BALANCE\",\"LOGIN_BONUS\",\"PAYOUT_CANCEL\",\"PAYOUT_CONFIRM\",\"PAYOUT_REQUEST_FROM\",\"PAYOUT_REQUEST_TO_ADMIN\",\"SUPPORT_TICKET_CREATE\",\"SUPPORT_TICKET_REPLIED\",\"TRANSFER_TO\"]', NULL, '102032526404925262321', NULL, NULL, NULL, NULL, 0, 0, 0, '2023-06-19 09:09:30'), (14, NULL, 'test', 'testuser', 'abc@gmail.com', NULL, 1, NULL, NULL, 1, 1, 1, NULL, NULL, 0, 1, NULL, NULL, '$2y$10$ERxl2cfDh8BqVegmIUwjL.00w0EafAz1sFLdpVUO9/kBGP1PJelxS', NULL, NULL, NULL, '2023-07-18 07:01:32', '2023-07-18 07:01:32', '[\"ADD_BALANCE_ADMIN\",\"ADD_BALANCE_USER\",\"DEDUCTED_BALANCE\",\"PASSWORD_RESET\",\"PAYMENT_REJECTED\",\"USER_BUY_PLAN\",\"USER_BUY_PLAN_ADMIN\",\"VERIFICATION_CODE\"]', '[\"ADD_BALANCE_ADMIN\",\"ADD_BALANCE_USER\",\"DEDUCTED_BALANCE\",\"PASSWORD_RESET\",\"PAYMENT_REJECTED\",\"USER_BUY_PLAN\",\"USER_BUY_PLAN_ADMIN\",\"VERIFICATION_CODE\"]', '[\"ADD_BALANCE\",\"ADMIN_REPLIED_TICKET\",\"DEDUCTED_BALANCE\",\"SUPPORT_TICKET_CREATE\",\"SUPPORT_TICKET_REPLIED\",\"USER_BUY_PLAN\",\"USER_BUY_PLAN_ADMIN\"]', '[\"ADD_BALANCE\",\"ADMIN_REPLIED_TICKET\",\"DEDUCTED_BALANCE\",\"SUPPORT_TICKET_CREATE\",\"SUPPORT_TICKET_REPLIED\",\"USER_BUY_PLAN\",\"USER_BUY_PLAN_ADMIN\"]', NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, '2023-07-18 13:01:32'); -- -------------------------------------------------------- -- -- Table structure for table `user_kycs` -- CREATE TABLE `user_kycs` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `kyc_info` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=>pending , 1=> verified, 2=>rejected', `reason` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'rejected reason', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `user_profiles` -- CREATE TABLE `user_profiles` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `city` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone_code` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `profile_picture` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_login_at` timestamp NULL DEFAULT NULL, `last_login_ip` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `user_profiles` -- INSERT INTO `user_profiles` (`id`, `user_id`, `city`, `state`, `phone`, `phone_code`, `address`, `profile_picture`, `driver`, `last_login_at`, `last_login_ip`, `created_at`, `updated_at`) VALUES (1, 1, 'Bran Street', 'New York', '02996666', '+375', '1 Library Rd, Kendal, Cumbria, United Kingdom', 'userProfile/demouser.jpg', 'local', '2023-07-19 06:45:31', '::1', '2023-02-22 23:28:18', '2023-07-19 06:45:31'), (5, 5, NULL, NULL, '96655886', '+375', NULL, NULL, NULL, '2023-05-17 05:50:04', '::1', '2023-05-16 07:32:25', '2023-05-17 05:50:04'), (10, 13, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-05 03:28:05', '2023-06-05 03:28:05'), (11, 14, NULL, NULL, '+99456998858', '+994', NULL, NULL, NULL, NULL, NULL, '2023-07-18 07:01:32', '2023-07-18 07:01:32'); -- -------------------------------------------------------- -- -- Table structure for table `variant_images` -- CREATE TABLE `variant_images` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resolution` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `picture` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `variant_images` -- INSERT INTO `variant_images` (`id`, `user_id`, `name`, `resolution`, `picture`, `driver`, `created_at`, `updated_at`) VALUES (1, 1, 'New Image', '256x256', 'variantImage/WMtxUmGtic.png', 'local', '2023-05-25 03:29:04', '2023-05-25 03:29:04'), (2, 1, 'New Image', '256x256', 'variantImage/u8PH2f7QUa.png', 'local', '2023-05-25 03:29:08', '2023-05-25 03:29:08'), (3, 1, 'New Image', '256x256', 'variantImage/RXtRSLJS7m.png', 'local', '2023-05-27 08:33:02', '2023-05-27 08:33:02'), (4, 1, 'New Image', '256x256', 'variantImage/XlVZy4CsEQ.png', 'local', '2023-06-11 03:22:24', '2023-06-11 03:22:24'); -- -------------------------------------------------------- -- -- Table structure for table `voice_responses` -- CREATE TABLE `voice_responses` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `voice_template_id` bigint(20) UNSIGNED NOT NULL, `language` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `characters` int(11) NOT NULL DEFAULT 0, `file` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `driver` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `voice_responses` -- INSERT INTO `voice_responses` (`id`, `user_id`, `voice_template_id`, `language`, `characters`, `file`, `driver`, `text`, `created_at`, `updated_at`) VALUES (2, 1, 236, 'Hindi', 0, 'textToSpeech/6TWDMFUTUO.mp3', 'local', 'A cute boy going to home.', '2023-06-11 06:37:59', '2023-06-11 06:37:59'), (4, 1, 235, 'Hindi', 0, 'textToSpeech/X9B7J769R1.mp3', 'local', 'I am going to home', '2023-06-11 07:00:50', '2023-06-11 07:00:50'), (5, 1, 208, 'Italian', 0, 'textToSpeech/8ZSCXUE7VO.mp3', 'local', 'Hi how was you old', '2023-06-11 07:19:30', '2023-06-11 07:19:30'), (6, 1, 235, 'Hindi', 0, 'textToSpeech/BS9W52G4UU.mp3', 'local', 'I am going to home with you', '2023-06-11 07:22:00', '2023-06-11 07:22:00'), (7, 1, 245, 'Italian', 0, 'textToSpeech/679ZD9CD9U.mp3', 'local', 'I am going to home with you', '2023-06-11 07:22:51', '2023-06-11 07:22:51'), (8, 1, 415, 'Bengali (India)', 0, 'textToSpeech/FP2PYGBJPU.mp3', 'local', 'I want to drink a cup of tea', '2023-06-11 07:30:56', '2023-06-11 07:30:56'), (9, 1, 415, 'Bengali (India)', 0, 'textToSpeech/D23DYJUEE2.mp3', 'local', 'A Tiger bit a men in the morning', '2023-06-12 01:05:41', '2023-06-12 01:05:41'), (10, 1, 165, 'Chinese (M. Simplified)', 0, 'textToSpeech/GK2WNKA12B.mp3', 'local', 'How was you day?', '2023-06-12 01:38:21', '2023-06-12 01:38:21'); -- -------------------------------------------------------- -- -- Table structure for table `voice_templates` -- CREATE TABLE `voice_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `voice` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `voice_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `gender` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `language_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'azure', `voice_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'standard' COMMENT 'standard|neural', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `voice_templates` -- INSERT INTO `voice_templates` (`id`, `voice`, `voice_id`, `gender`, `language_code`, `type`, `voice_type`, `created_at`, `updated_at`) VALUES (1, 'Amina', 'ar-XA-Wavenet-A', 'Female', 'ar-XA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (2, 'Ahmad', 'ar-XA-Wavenet-B', 'Male', 'ar-XA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (3, 'Abdulla', 'ar-XA-Wavenet-C', 'Male', 'ar-XA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (4, 'Saniya', 'ar-XA-Wavenet-D', 'Female', 'ar-XA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (5, 'Aarya', 'bn-IN-Wavenet-A', 'Female', 'bn-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (6, 'Achintya', 'bn-IN-Wavenet-B', 'Male', 'bn-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (7, 'Eliska', 'cs-CZ-Wavenet-A', 'Female', 'cs-CZ', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (8, 'Ida', 'da-DK-Wavenet-A', 'Female', 'da-DK', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (9, 'Morten', 'da-DK-Wavenet-C', 'Male', 'da-DK', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (10, 'Freja', 'da-DK-Wavenet-D', 'Female', 'da-DK', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (11, 'Josefine', 'da-DK-Wavenet-E', 'Female', 'da-DK', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (12, 'Mila', 'nl-NL-Wavenet-A', 'Female', 'nl-NL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (13, 'Arend', 'nl-NL-Wavenet-B', 'Male', 'nl-NL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (14, 'Christiaan', 'nl-NL-Wavenet-C', 'Male', 'nl-NL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (15, 'Lotte', 'nl-NL-Wavenet-D', 'Female', 'nl-NL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (16, 'Fenna', 'nl-NL-Wavenet-E', 'Female', 'nl-NL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (17, 'Charlotte', 'en-AU-Wavenet-A', 'Female', 'en-AU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (18, 'Noah', 'en-AU-Wavenet-B', 'Male', 'en-AU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (19, 'Amelia', 'en-AU-Wavenet-C', 'Female', 'en-AU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (20, 'Oliver', 'en-AU-Wavenet-D', 'Male', 'en-AU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (21, 'Saanvi', 'en-IN-Wavenet-A', 'Female', 'en-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (22, 'Sai', 'en-IN-Wavenet-B', 'Male', 'en-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (23, 'Veer', 'en-IN-Wavenet-C', 'Male', 'en-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (24, 'Prisha', 'en-IN-Wavenet-D', 'Female', 'en-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (25, 'Poppy', 'en-GB-Wavenet-A', 'Female', 'en-GB', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (26, 'Charles', 'en-GB-Wavenet-B', 'Male', 'en-GB', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (27, 'Elsie', 'en-GB-Wavenet-C', 'Female', 'en-GB', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (28, 'Harry', 'en-GB-Wavenet-D', 'Male', 'en-GB', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (29, 'Nancy', 'en-GB-Wavenet-F', 'Female', 'en-GB', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (30, 'Dick', 'en-US-Wavenet-A', 'Male', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (31, 'Bush', 'en-US-Wavenet-B', 'Male', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (32, 'Caroline', 'en-US-Wavenet-C', 'Female', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (33, 'Trump', 'en-US-Wavenet-D', 'Male', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (34, 'Susan', 'en-US-Wavenet-E', 'Female', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (35, 'Kimberly', 'en-US-Wavenet-F', 'Female', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (36, 'Ellen', 'en-US-Wavenet-G', 'Female', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (37, 'Teresa', 'en-US-Wavenet-H', 'Female', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (38, 'Oscar', 'en-US-Wavenet-I', 'Male', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (39, 'Obama', 'en-US-Wavenet-J', 'Male', 'en-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (40, 'Princess', 'fil-PH-Wavenet-A', 'Female', 'fil-PH', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (41, 'Andrea', 'fil-PH-Wavenet-B', 'Female', 'fil-PH', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (42, 'Angel', 'fil-PH-Wavenet-C', 'Male', 'fil-PH', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (43, 'Nathaniel', 'fil-PH-Wavenet-D', 'Male', 'fil-PH', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (44, 'Enni', 'fi-FI-Wavenet-A', 'Female', 'fi-FI', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (45, 'Emma', 'fr-CA-Wavenet-A', 'Female', 'fr-CA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (46, 'Thomas', 'fr-CA-Wavenet-B', 'Male', 'fr-CA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (47, 'Lea', 'fr-CA-Wavenet-C', 'Female', 'fr-CA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (48, 'William', 'fr-CA-Wavenet-D', 'Male', 'fr-CA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (49, 'Mathilde', 'fr-FR-Wavenet-A', 'Female', 'fr-FR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (50, 'Foucauld', 'fr-FR-Wavenet-B', 'Male', 'fr-FR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (51, 'Louise', 'fr-FR-Wavenet-C', 'Female', 'fr-FR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (52, 'Florent', 'fr-FR-Wavenet-D', 'Male', 'fr-FR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (53, 'Alice', 'fr-FR-Wavenet-E', 'Female', 'fr-FR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (54, 'Eva', 'de-DE-Wavenet-A', 'Female', 'de-DE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (55, 'Wilhelm', 'de-DE-Wavenet-B', 'Male', 'de-DE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (56, 'Hannah', 'de-DE-Wavenet-C', 'Female', 'de-DE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (57, 'Alfred', 'de-DE-Wavenet-D', 'Male', 'de-DE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (58, 'Werner', 'de-DE-Wavenet-E', 'Male', 'de-DE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (59, 'Merkel', 'de-DE-Wavenet-F', 'Female', 'de-DE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (60, 'Eleni', 'el-GR-Wavenet-A', 'Female', 'el-GR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (61, 'Inika', 'gu-IN-Wavenet-A', 'Female', 'gu-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (62, 'Jhinuk', 'gu-IN-Wavenet-B', 'Male', 'gu-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (63, 'Arunima', 'hi-IN-Wavenet-A', 'Female', 'hi-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (64, 'Ayaan', 'hi-IN-Wavenet-B', 'Male', 'hi-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (65, 'Keshav', 'hi-IN-Wavenet-C', 'Male', 'hi-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (66, 'Bhavna', 'hi-IN-Wavenet-D', 'Female', 'hi-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (67, 'Lena', 'hu-HU-Wavenet-A', 'Female', 'hu-HU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (68, 'Aulia', 'id-ID-Wavenet-A', 'Female', 'id-ID', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (69, 'Arief', 'id-ID-Wavenet-B', 'Male', 'id-ID', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (70, 'Fadhlan', 'id-ID-Wavenet-C', 'Male', 'id-ID', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (71, 'Dewi', 'id-ID-Wavenet-D', 'Female', 'id-ID', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (72, 'Federica', 'it-IT-Wavenet-A', 'Female', 'it-IT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (73, 'Bella', 'it-IT-Wavenet-B', 'Female', 'it-IT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (74, 'Luca', 'it-IT-Wavenet-C', 'Male', 'it-IT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (75, 'Matteo', 'it-IT-Wavenet-D', 'Male', 'it-IT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (76, 'Manami', 'ja-JP-Wavenet-A', 'Female', 'ja-JP', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (77, 'Mizuki', 'ja-JP-Wavenet-B', 'Female', 'ja-JP', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (78, 'Sensei', 'ja-JP-Wavenet-C', 'Male', 'ja-JP', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (79, 'Takuya', 'ja-JP-Wavenet-D', 'Male', 'ja-JP', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (80, 'Aarushi', 'kn-IN-Wavenet-A', 'Female', 'kn-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (81, 'Arjun', 'kn-IN-Wavenet-B', 'Male', 'kn-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (82, 'Yong', 'ko-KR-Wavenet-A', 'Female', 'ko-KR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (83, 'Eun-Kyung', 'ko-KR-Wavenet-B', 'Female', 'ko-KR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (84, 'Beom-Soo', 'ko-KR-Wavenet-C', 'Male', 'ko-KR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (85, 'Byung-joon', 'ko-KR-Wavenet-D', 'Male', 'ko-KR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (86, 'Abha', 'ml-IN-Wavenet-A', 'Female', 'ml-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (87, 'Akhil', 'ml-IN-Wavenet-B', 'Male', 'ml-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (88, 'Changying', 'cmn-CN-Wavenet-A', 'Female', 'cmn-CN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (89, 'Boqin', 'cmn-CN-Wavenet-B', 'Male', 'cmn-CN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (90, 'Delun', 'cmn-CN-Wavenet-C', 'Male', 'cmn-CN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (91, 'Tyantyan', 'cmn-CN-Wavenet-D', 'Female', 'cmn-CN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (92, 'Sunyo', 'cmn-TW-Wavenet-A', 'Female', 'cmn-TW', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (93, 'Chen', 'cmn-TW-Wavenet-B', 'Male', 'cmn-TW', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (94, 'Xianbao', 'cmn-TW-Wavenet-C', 'Male', 'cmn-TW', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (95, 'Chin', 'nb-NO-Wavenet-A', 'Female', 'nb-NO', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (96, 'Bjorn', 'nb-NO-Wavenet-B', 'Male', 'nb-NO', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (97, 'Inger', 'nb-NO-Wavenet-C', 'Female', 'nb-NO', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (98, 'Dag', 'nb-NO-Wavenet-D', 'Male', 'nb-NO', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (99, 'Janne', 'nb-NO-Wavenet-E', 'Female', 'nb-NO', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (100, 'Sara', 'pl-PL-Wavenet-A', 'Female', 'pl-PL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (101, 'Jan', 'pl-PL-Wavenet-B', 'Male', 'pl-PL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (102, 'Jacob', 'pl-PL-Wavenet-C', 'Male', 'pl-PL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (103, 'Lena', 'pl-PL-Wavenet-D', 'Female', 'pl-PL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (104, 'Zofia', 'pl-PL-Wavenet-E', 'Female', 'pl-PL', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (105, 'Francisca', 'pt-BR-Wavenet-A', 'Female', 'pt-BR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (106, 'Beatriz', 'pt-PT-Wavenet-A', 'Female', 'pt-PT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (107, 'Ronaldo', 'pt-PT-Wavenet-B', 'Male', 'pt-PT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (108, 'Lisboa', 'pt-PT-Wavenet-C', 'Male', 'pt-PT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (109, 'Mariana', 'pt-PT-Wavenet-D', 'Female', 'pt-PT', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (110, 'Mihaela', 'ro-RO-Wavenet-A', 'Female', 'ro-RO', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (111, 'Oksana', 'ru-RU-Wavenet-A', 'Female', 'ru-RU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (112, 'Vlad', 'ru-RU-Wavenet-B', 'Male', 'ru-RU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (113, 'Veronika', 'ru-RU-Wavenet-C', 'Female', 'ru-RU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (114, 'Dapohui', 'ru-RU-Wavenet-D', 'Male', 'ru-RU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (115, 'Svetlana', 'ru-RU-Wavenet-E', 'Female', 'ru-RU', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (116, 'Anna', 'sk-SK-Wavenet-A', 'Female', 'sk-SK', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (117, 'Hector', 'es-ES-Wavenet-B', 'Male', 'es-ES', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (118, 'Vanessa', 'es-ES-Wavenet-C', 'Female', 'es-ES', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (119, 'Laura', 'es-ES-Wavenet-D', 'Female', 'es-ES', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (120, 'Isabella', 'es-US-Wavenet-A', 'Female', 'es-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (121, 'Pedro', 'es-US-Wavenet-B', 'Male', 'es-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (122, 'Sanches', 'es-US-Wavenet-C', 'Male', 'es-US', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (123, 'Karin', 'sv-SE-Wavenet-A', 'Female', 'sv-SE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (124, 'Aarushi', 'ta-IN-Wavenet-A', 'Female', 'ta-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (125, 'Aadhish', 'ta-IN-Wavenet-B', 'Male', 'ta-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (126, 'Zeynep', 'tr-TR-Wavenet-A', 'Female', 'tr-TR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (127, 'Oktay', 'tr-TR-Wavenet-B', 'Male', 'tr-TR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (128, 'Fatima', 'tr-TR-Wavenet-C', 'Female', 'tr-TR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (129, 'Gulchatay', 'tr-TR-Wavenet-D', 'Female', 'tr-TR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (130, 'Yanar', 'tr-TR-Wavenet-E', 'Male', 'tr-TR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (131, 'Oksana', 'uk-UA-Wavenet-A', 'Female', 'uk-UA', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (132, 'Chau', 'vi-VN-Wavenet-A', 'Female', 'vi-VN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (133, 'Dung', 'vi-VN-Wavenet-B', 'Male', 'vi-VN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (134, 'Cam', 'vi-VN-Wavenet-C', 'Female', 'vi-VN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (135, 'Duy', 'vi-VN-Wavenet-D', 'Male', 'vi-VN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (136, 'Marie', 'nl-BE-Wavenet-A', 'Female', 'nl-BE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (137, 'Luc', 'nl-BE-Wavenet-B', 'Male', 'nl-BE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (138, 'Aisyah', 'ms-MY-Wavenet-A', 'Female', 'ms-MY', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (139, 'Ismail', 'ms-MY-Wavenet-B', 'Male', 'ms-MY', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (140, 'Nur', 'ms-MY-Wavenet-C', 'Female', 'ms-MY', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (141, 'Hafiz', 'ms-MY-Wavenet-D', 'Male', 'ms-MY', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (142, 'Tarcisio', 'pt-BR-Wavenet-B', 'Male', 'pt-BR', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (143, 'Amarjot', 'pa-IN-Wavenet-A', 'Female', 'pa-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (144, 'Birpal', 'pa-IN-Wavenet-B', 'Male', 'pa-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (145, 'Arheer', 'pa-IN-Wavenet-C', 'Female', 'pa-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (146, 'Bishanpal', 'pa-IN-Wavenet-D', 'Male', 'pa-IN', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (147, 'Frida', 'sv-SE-Wavenet-B', 'Female', 'sv-SE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (148, 'Anders', 'sv-SE-Wavenet-C', 'Male', 'sv-SE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (149, 'Raisa', 'sv-SE-Wavenet-D', 'Female', 'sv-SE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (150, 'Markus', 'sv-SE-Wavenet-E', 'Male', 'sv-SE', 'gcp', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (151, 'Salma', 'ar-EG-SalmaNeural', 'Female', 'ar-EG', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (152, 'Shakir', 'ar-EG-ShakirNeural ', 'Male', 'ar-EG', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (153, 'Zariyah', 'ar-SA-ZariyahNeural', 'Female', 'ar-SA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (154, 'Hamed', 'ar-SA-HamedNeural', 'Male', 'ar-SA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (155, 'Kalina', 'bg-BG-KalinaNeural', 'Female', 'bg-BG', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (156, 'Borislav', 'bg-BG-BorislavNeural', 'Male', 'bg-BG', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (157, 'Alba', 'ca-ES-AlbaNeural', 'Female', 'ca-ES', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (158, 'Joanna', 'ca-ES-JoanaNeural', 'Female', 'ca-ES', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (159, 'Enric', 'ca-ES-EnricNeural', 'Male', 'ca-ES', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (160, 'HiuGaai', 'zh-HK-HiuGaaiNeural', 'Female', 'zh-HK', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (161, 'HiuMaan', 'zh-HK-HiuMaanNeural', 'Female', 'zh-HK', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (162, 'WanLung', 'zh-HK-WanLungNeural', 'Male', 'zh-HK', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (163, 'Xiaoxiao', 'zh-CN-XiaoxiaoNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (164, 'Xiaoyou', 'zh-CN-XiaoyouNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (165, 'Xiaomo', 'zh-CN-XiaomoNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (166, 'Xiaoxuan', 'zh-CN-XiaoxuanNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (167, 'Xiaohan', 'zh-CN-XiaohanNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (168, 'Xiaorui', 'zh-CN-XiaoruiNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (169, 'Yunyang', 'zh-CN-YunyangNeural', 'Male', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (170, 'Yunye', 'zh-CN-YunyeNeural', 'Male', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (171, 'Yunxi', 'zh-CN-YunxiNeural', 'Male', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (172, 'HsiaoChen', 'zh-TW-HsiaoChenNeural', 'Female', 'zh-TW', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (173, 'HsiaoYu', 'zh-TW-HsiaoYuNeural', 'Female', 'zh-TW', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (174, 'YunJhe', 'zh-TW-YunJheNeural', 'Male', 'zh-TW', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (175, 'Gabrijela', 'hr-HR-GabrijelaNeural', 'Female', 'hr-HR', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (176, 'Srecko', 'hr-HR-SreckoNeural', 'Male', 'hr-HR', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (177, 'Vlasta', 'cs-CZ-VlastaNeural', 'Female', 'cs-CZ', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (178, 'Antonin', 'cs-CZ-AntoninNeural', 'Male', 'cs-CZ', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (179, 'Christel', 'da-DK-ChristelNeural', 'Female', 'da-DK', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (180, 'Jeppe', 'da-DK-JeppeNeural', 'Male', 'da-DK', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (181, 'Dena', 'nl-BE-DenaNeural', 'Female', 'nl-BE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (182, 'Arnaud', 'nl-BE-ArnaudNeural', 'Male', 'nl-BE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (183, 'Colette', 'nl-NL-ColetteNeural', 'Female', 'nl-NL', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (184, 'Fenna', 'nl-NL-FennaNeural', 'Female', 'nl-NL', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (185, 'Maarten', 'nl-NL-MaartenNeural', 'Male', 'nl-NL', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (186, 'Natasha', 'en-AU-NatashaNeural', 'Female', 'en-AU', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (187, 'William', 'en-AU-WilliamNeural', 'Male', 'en-AU', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (188, 'Clara', 'en-CA-ClaraNeural', 'Female', 'en-CA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (189, 'Liam', 'en-CA-LiamNeural', 'Male', 'en-CA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (190, 'Yan', 'en-HK-YanNeural', 'Female', 'en-HK', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (191, 'Sam', 'en-HK-SamNeural', 'Male', 'en-HK', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (192, 'Neerja', 'en-IN-NeerjaNeural', 'Female', 'en-IN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (193, 'Prabhat', 'en-IN-PrabhatNeural', 'Male', 'en-IN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (194, 'Emily', 'en-IE-EmilyNeural', 'Female', 'en-IE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (195, 'Connor', 'en-IE-ConnorNeural', 'Male', 'en-IE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (196, 'Molly', 'en-NZ-MollyNeural', 'Female', 'en-NZ', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (197, 'Mitchell', 'en-NZ-MitchellNeural', 'Male', 'en-NZ', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (198, 'Rosa', 'en-PH-RosaNeural', 'Female', 'en-PH', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (199, 'James', 'en-PH-JamesNeural', 'Male', 'en-PH', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (200, 'Luna', 'en-SG-LunaNeural', 'Female', 'en-SG', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (201, 'Wayne', 'en-SG-WayneNeural', 'Male', 'en-SG', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (202, 'Leah', 'en-ZA-LeahNeural', 'Female', 'en-ZA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (203, 'Luke', 'en-ZA-LukeNeural', 'Male', 'en-ZA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (204, 'Libby', 'en-GB-LibbyNeural', 'Female', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (205, 'Ryan', 'en-GB-RyanNeural', 'Male', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (206, 'Aria', 'en-US-AriaNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (207, 'Jenny', 'en-US-JennyNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (208, 'Guy', 'en-US-GuyNeural', 'Male', 'en-US', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (209, 'Anu', 'et-EE-AnuNeural', 'Female', 'et-EE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (210, 'Kert', 'et-EE-KertNeural', 'Male', 'et-EE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (211, 'Noora', 'fi-FI-NooraNeural', 'Female', 'fi-FI', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (212, 'Selma', 'fi-FI-SelmaNeural', 'Female', 'fi-FI', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (213, 'Harri', 'fi-FI-HarriNeural', 'Male', 'fi-FI', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (214, 'Charline', 'fr-BE-CharlineNeural', 'Female', 'fr-BE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (215, 'Gerard', 'fr-BE-GerardNeural', 'Male', 'fr-BE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (216, 'Sylvie', 'fr-CA-SylvieNeural', 'Female', 'fr-CA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (217, 'Antoine', 'fr-CA-AntoineNeural', 'Male', 'fr-CA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (218, 'Jean', 'fr-CA-JeanNeural', 'Male', 'fr-CA', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (219, 'Denise', 'fr-FR-DeniseNeural', 'Female', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (220, 'Henri', 'fr-FR-HenriNeural', 'Male', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (221, 'Ariane', 'fr-CH-ArianeNeural', 'Female', 'fr-CH', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (222, 'Fabrice', 'fr-CH-FabriceNeural', 'Male', 'fr-CH', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (223, 'Ingrid', 'de-AT-IngridNeural', 'Female', 'de-AT', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (224, 'Jonas', 'de-AT-JonasNeural', 'Male', 'de-AT', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (225, 'Katja', 'de-DE-KatjaNeural', 'Female', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (226, 'Conrad', 'de-DE-ConradNeural', 'Male', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (227, 'Leni', 'de-CH-LeniNeural', 'Female', 'de-CH', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (228, 'Jan', 'de-CH-JanNeural', 'Male', 'de-CH', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (229, 'Athina', 'el-GR-AthinaNeural', 'Female', 'el-GR', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (230, 'Nestoras', 'el-GR-NestorasNeural', 'Male', 'el-GR', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (231, 'Dhwani', 'gu-IN-DhwaniNeural', 'Female', 'gu-IN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (232, 'Niranjan', 'gu-IN-NiranjanNeural', 'Male', 'gu-IN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (233, 'Hila', 'he-IL-HilaNeural', 'Female', 'he-IL', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (234, 'Avri', 'he-IL-AvriNeural', 'Male', 'he-IL', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (235, 'Swara', 'hi-IN-SwaraNeural', 'Female', 'hi-IN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (236, 'Madhur', 'hi-IN-MadhurNeural', 'Male', 'hi-IN', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (237, 'Noemi', 'hu-HU-NoemiNeural', 'Female', 'hu-HU', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (238, 'Tamas', 'hu-HU-TamasNeural', 'Male', 'hu-HU', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (239, 'Gadis', 'id-ID-GadisNeural', 'Female', 'id-ID', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (240, 'Ardi', 'id-ID-ArdiNeural', 'Male', 'id-ID', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (241, 'Orla', 'ga-IE-OrlaNeural', 'Female', 'ga-IE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (242, 'Colm', 'ga-IE-ColmNeural', 'Male', 'ga-IE', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (243, 'Elsa', 'it-IT-ElsaNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (244, 'Isabella', 'it-IT-IsabellaNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:21', '2023-05-21 14:25:21'), (245, 'Diego', 'it-IT-DiegoNeural', 'Male', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (246, 'Nanami', 'ja-JP-NanamiNeural', 'Female', 'ja-JP', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (247, 'Keita', 'ja-JP-KeitaNeural', 'Male', 'ja-JP', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (248, 'SunHi', 'ko-KR-SunHiNeural', 'Female', 'ko-KR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (249, 'InJoon', 'ko-KR-InJoonNeural', 'Male', 'ko-KR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (250, 'Everita', 'lv-LV-EveritaNeural', 'Female', 'lv-LV', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (251, 'Nils', 'lv-LV-NilsNeural', 'Male', 'lv-LV', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (252, 'Ona', 'lt-LT-OnaNeural', 'Female', 'lt-LT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (253, 'Leonas', 'lt-LT-LeonasNeural', 'Male', 'lt-LT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (254, 'Yasmin', 'ms-MY-YasminNeural', 'Female', 'ms-MY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (255, 'Osman', 'ms-MY-OsmanNeural', 'Male', 'ms-MY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (256, 'Grace', 'mt-MT-GraceNeural', 'Female', 'mt-MT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (257, 'Joseph', 'mt-MT-JosephNeural', 'Male', 'mt-MT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (258, 'Aarohi', 'mr-IN-AarohiNeural', 'Female', 'mr-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (259, 'Manohar', 'mr-IN-ManoharNeural', 'Male', 'mr-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (260, 'Iselin', 'nb-NO-IselinNeural', 'Female', 'nb-NO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (261, 'Pernille', 'nb-NO-PernilleNeural', 'Female', 'nb-NO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (262, 'Finn', 'nb-NO-FinnNeural', 'Male', 'nb-NO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (263, 'Agnieszka', 'pl-PL-AgnieszkaNeural', 'Female', 'pl-PL', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (264, 'Zofia', 'pl-PL-ZofiaNeural', 'Female', 'pl-PL', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (265, 'Marek', 'pl-PL-MarekNeural', 'Male', 'pl-PL', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (266, 'Francisca', 'pt-BR-FranciscaNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (267, 'Antonio', 'pt-BR-AntonioNeural', 'Male', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (268, 'Fernanda', 'pt-PT-FernandaNeural', 'Female', 'pt-PT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (269, 'Raquel', 'pt-PT-RaquelNeural', 'Female', 'pt-PT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (270, 'Duarte', 'pt-PT-DuarteNeural', 'Male', 'pt-PT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (271, 'Alina', 'ro-RO-AlinaNeural', 'Female', 'ro-RO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (272, 'Emil', 'ro-RO-EmilNeural', 'Male', 'ro-RO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (273, 'Dariya', 'ru-RU-DariyaNeural', 'Female', 'ru-RU', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (274, 'Svetlana', 'ru-RU-SvetlanaNeural', 'Female', 'ru-RU', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (275, 'Dmitry', 'ru-RU-DmitryNeural', 'Male', 'ru-RU', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (276, 'Viktoria', 'sk-SK-ViktoriaNeural', 'Female', 'sk-SK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (277, 'Lukas', 'sk-SK-LukasNeural', 'Male', 'sk-SK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (278, 'Petra', 'sl-SI-PetraNeural', 'Female', 'sl-SI', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (280, 'Rok', 'sl-SI-RokNeural', 'Male', 'sl-SI', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (281, 'Elena', 'es-AR-ElenaNeural', 'Female', 'es-AR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (282, 'Tomas', 'es-AR-TomasNeural', 'Male', 'es-AR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (283, 'Salome', 'es-CO-SalomeNeural', 'Female', 'es-CO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (284, 'Gonzalo', 'es-CO-GonzaloNeural', 'Male', 'es-CO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (285, 'Dalia', 'es-MX-DaliaNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (286, 'Jorge', 'es-MX-JorgeNeural', 'Male', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (287, 'Elvira', 'es-ES-ElviraNeural', 'Female', 'es-ES', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (288, 'Alvaro', 'es-ES-AlvaroNeural', 'Male', 'es-ES', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (289, 'Paloma', 'es-US-PalomaNeural', 'Female', 'es-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (290, 'Alonso', 'es-US-AlonsoNeural', 'Male', 'es-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (291, 'Zuri', 'sw-KE-ZuriNeural', 'Female', 'sw-KE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (292, 'Rafiki', 'sw-KE-RafikiNeural', 'Male', 'sw-KE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (293, 'Hillev', 'sv-SE-HilleviNeural', 'Female', 'sv-SE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (294, 'Sofie', 'sv-SE-SofieNeural', 'Female', 'sv-SE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (295, 'Mattias', 'sv-SE-MattiasNeural', 'Male', 'sv-SE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (296, 'Pallavi', 'ta-IN-PallaviNeural', 'Female', 'ta-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (297, 'Valluvar', 'ta-IN-ValluvarNeural', 'Male', 'ta-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (298, 'Shruti', 'te-IN-ShrutiNeural', 'Female', 'te-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (299, 'Mohan', 'te-IN-MohanNeural', 'Male', 'te-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (300, 'Achara', 'th-TH-AcharaNeural', 'Female', 'th-TH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (301, 'Premwadee', 'th-TH-PremwadeeNeural', 'Female', 'th-TH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (302, 'Niwat', 'th-TH-NiwatNeural', 'Male', 'th-TH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (303, 'Emel', 'tr-TR-EmelNeural', 'Female', 'tr-TR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (304, 'Ahmet', 'tr-TR-AhmetNeural', 'Male', 'tr-TR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (305, 'Polina', 'uk-UA-PolinaNeural', 'Female', 'uk-UA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (306, 'Ostap', 'uk-UA-OstapNeural', 'Male', 'uk-UA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (307, 'Uzma', 'ur-PK-UzmaNeural', 'Female', 'ur-PK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (308, 'Asad', 'ur-PK-AsadNeural', 'Male', 'ur-PK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (309, 'HoaiMy', 'vi-VN-HoaiMyNeural', 'Female', 'vi-VN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (310, 'NamMinh', 'vi-VN-NamMinhNeural', 'Male', 'vi-VN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (311, 'Nia', 'cy-GB-NiaNeural', 'Female', 'cy-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (312, 'Aled', 'cy-GB-AledNeural', 'Female', 'cy-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (313, 'Adri', 'af-ZA-AdriNeural', 'Female', 'af-ZA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (314, 'Willem', 'af-ZA-WillemNeural', 'Male', 'af-ZA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (315, 'Mekdes', 'am-ET-MekdesNeural', 'Female', 'am-ET', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (316, 'Ameha', 'am-ET-AmehaNeural', 'Male', 'am-ET', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (317, 'Amina', 'ar-DZ-AminaNeural', 'Female', 'ar-DZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (318, 'Ismael', 'ar-DZ-IsmaelNeural', 'Male', 'ar-DZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (319, 'Laila', 'ar-BH-LailaNeural', 'Female', 'ar-BH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (320, 'Ali', 'ar-BH-AliNeural', 'Male', 'ar-BH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (321, 'Rana', 'ar-IQ-RanaNeural', 'Female', 'ar-IQ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (322, 'Bassel', 'ar-IQ-BasselNeural', 'Male', 'ar-IQ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (323, 'Sana', 'ar-JO-SanaNeural', 'Female', 'ar-JO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (324, 'Taim', 'ar-JO-TaimNeural', 'Male', 'ar-JO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (325, 'Noura', 'ar-KW-NouraNeural', 'Female', 'ar-KW', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (326, 'Fahed', 'ar-KW-FahedNeural', 'Male', 'ar-KW', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (327, 'Iman', 'ar-LY-ImanNeural', 'Female', 'ar-LY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (328, 'Omar', 'ar-LY-OmarNeural', 'Male', 'ar-LY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (329, 'Mouna', 'ar-MA-MounaNeural', 'Female', 'ar-MA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (330, 'Jamal', 'ar-MA-JamalNeural', 'Male', 'ar-MA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (331, 'Amal', 'ar-QA-AmalNeural', 'Female', 'ar-QA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (332, 'Moaz', 'ar-QA-MoazNeural', 'Male', 'ar-QA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (333, 'Amany', 'ar-SY-AmanyNeural', 'Female', 'ar-SY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (334, 'Laith', 'ar-SY-LaithNeural', 'Male', 'ar-SY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (335, 'Reem', 'ar-TN-ReemNeural', 'Female', 'ar-TN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (336, 'Hedi', 'ar-TN-HediNeural', 'Male', 'ar-TN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (337, 'Fatima', 'ar-AE-FatimaNeural', 'Female', 'ar-AE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (338, 'Hamdan', 'ar-AE-HamdanNeural', 'Male', 'ar-AE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (339, 'Maryam', 'ar-YE-MaryamNeural', 'Female', 'ar-YE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (340, 'Saleh', 'ar-YE-SalehNeural', 'Male', 'ar-YE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (341, 'Nabanita', 'bn-BD-NabanitaNeural', 'Female', 'bn-BD', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (342, 'Pradeep', 'bn-BD-PradeepNeural', 'Male', 'bn-BD', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (343, 'Xiaochen', 'zh-CN-XiaochenNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (344, 'Xiaoyan', 'zh-CN-XiaoyanNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (345, 'Xiaoshuang', 'zh-CN-XiaoshuangNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (346, 'Xiaoqiu', 'zh-CN-XiaoqiuNeural', 'Female', 'zh-CN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (347, 'Nilar', 'my-MM-NilarNeural', 'Female', 'my-MM', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (348, 'Thiha', 'my-MM-ThihaNeural', 'Male', 'my-MM', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (349, 'Asilia', 'en-KE-AsiliaNeural', 'Female', 'en-KE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (350, 'Chilemba', 'en-KE-ChilembaNeural', 'Male', 'en-KE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (351, 'Ezinne', 'en-NG-EzinneNeural', 'Female', 'en-NG', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (352, 'Abeo', 'en-NG-AbeoNeural', 'Male', 'en-NG', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (353, 'Imani', 'en-TZ-ImaniNeural', 'Female', 'en-TZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (354, 'Elimu', 'en-TZ-ElimuNeural', 'Male', 'en-TZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (355, 'Blessica', 'fil-PH-BlessicaNeural', 'Female', 'fil-PH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (356, 'Angelo', 'fil-PH-AngeloNeural', 'Male', 'fil-PH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (357, 'Sabela', 'gl-ES-SabelaNeural', 'Female', 'gl-ES', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (358, 'Roi', 'gl-ES-RoiNeural', 'Male', 'gl-ES', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (359, 'Siti', 'jv-ID-SitiNeural', 'Female', 'jv-ID', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (360, 'Dimas', 'jv-ID-DimasNeural', 'Male', 'jv-ID', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (361, 'Sreymom', 'km-KH-SreymomNeural', 'Female', 'km-KH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (362, 'Piseth', 'km-KH-PisethNeural', 'Male', 'km-KH', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (363, 'Dilara', 'fa-IR-DilaraNeural', 'Female', 'fa-IR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (364, 'Farid', 'fa-IR-FaridNeural', 'Male', 'fa-IR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (365, 'Ubax', 'so-SO-UbaxNeural', 'Female', 'so-SO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (366, 'Muuse', 'so-SO-MuuseNeural', 'Male', 'so-SO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (367, 'Sofia', 'es-BO-SofiaNeural', 'Female', 'es-BO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (368, 'Marcelo', 'es-BO-MarceloNeural', 'Male', 'es-BO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (369, 'Catalina', 'es-CL-CatalinaNeural', 'Female', 'es-CL', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (370, 'Lorenzo', 'es-CL-LorenzoNeural', 'Male', 'es-CL', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (371, 'Maria', 'es-CR-MariaNeural', 'Female', 'es-CR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (372, 'Juan', 'es-CR-JuanNeural', 'Male', 'es-CR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (373, 'Belkys', 'es-CU-BelkysNeural', 'Female', 'es-CU', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (374, 'Manuel', 'es-CU-ManuelNeural', 'Male', 'es-CU', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (375, 'Ramona', 'es-DO-RamonaNeural', 'Female', 'es-DO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (376, 'Emilio', 'es-DO-EmilioNeural', 'Male', 'es-DO', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (377, 'Andrea', 'es-EC-AndreaNeural', 'Female', 'es-EC', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (378, 'Luis', 'es-EC-LuisNeural', 'Male', 'es-EC', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (379, 'Lorena', 'es-SV-LorenaNeural', 'Female', 'es-SV', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (380, 'Rodrigo', 'es-SV-RodrigoNeural', 'Male', 'es-SV', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (381, 'Teresa', 'es-GQ-TeresaNeural', 'Female', 'es-GQ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (382, 'Javier', 'es-GQ-JavierNeural', 'Male', 'es-GQ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (383, 'Marta', 'es-GT-MartaNeural', 'Female', 'es-GT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (384, 'Andres', 'es-GT-AndresNeural', 'Male', 'es-GT', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (385, 'Karla', 'es-HN-KarlaNeural', 'Female', 'es-HN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (386, 'Carlos', 'es-HN-CarlosNeural', 'Male', 'es-HN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (387, 'Yolanda', 'es-NI-YolandaNeural', 'Female', 'es-NI', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (388, 'Federico', 'es-NI-FedericoNeural', 'Male', 'es-NI', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (389, 'Margarita', 'es-PA-MargaritaNeural', 'Female', 'es-PA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (390, 'Roberto', 'es-PA-RobertoNeural', 'Male', 'es-PA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (391, 'Tania', 'es-PY-TaniaNeural', 'Female', 'es-PY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (392, 'Mario', 'es-PY-MarioNeural', 'Male', 'es-PY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (393, 'Camila', 'es-PE-CamilaNeural', 'Female', 'es-PE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (394, 'Alex', 'es-PE-AlexNeural', 'Male', 'es-PE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (395, 'Karina', 'es-PR-KarinaNeural', 'Female', 'es-PR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (396, 'Victor', 'es-PR-VictorNeural', 'Male', 'es-PR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (397, 'Valentina', 'es-UY-ValentinaNeural', 'Female', 'es-UY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (398, 'Mateo', 'es-UY-MateoNeural', 'Male', 'es-UY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (399, 'Paola', 'es-VE-PaolaNeural', 'Female', 'es-VE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (400, 'Sebastian', 'es-VE-SebastianNeural', 'Male', 'es-VE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (401, 'Tuti', 'su-ID-TutiNeural', 'Female', 'su-ID', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (402, 'Jajang', 'su-ID-JajangNeural', 'Male', 'su-ID', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (403, 'Rehema', 'sw-TZ-RehemaNeural', 'Female', 'sw-TZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (404, 'Daudi', 'sw-TZ-DaudiNeural', 'Male', 'sw-TZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (405, 'Venba', 'ta-SG-VenbaNeural', 'Female', 'ta-SG', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (406, 'Anbu', 'ta-SG-AnbuNeural', 'Male', 'ta-SG', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (407, 'Saranya', 'ta-LK-SaranyaNeural', 'Female', 'ta-LK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (408, 'Kumar', 'ta-LK-KumarNeural', 'Male', 'ta-LK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (409, 'Gul', 'ur-IN-GulNeural', 'Female', 'ur-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (410, 'Salman', 'ur-IN-SalmanNeural', 'Male', 'ur-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (411, 'Madina', 'uz-UZ-MadinaNeural', 'Female', 'uz-UZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (412, 'Sardor', 'uz-UZ-SardorNeural', 'Male', 'uz-UZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (413, 'Thando', 'zu-ZA-ThandoNeural', 'Female', 'zu-ZA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (414, 'Themba', 'zu-ZA-ThembaNeural', 'Male', 'zu-ZA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (415, 'Tanishaa', 'bn-IN-TanishaaNeural', 'Female', 'bn-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (416, 'Bashkar', 'bn-IN-BashkarNeural', 'Male', 'bn-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (417, 'Sonia', 'en-GB-SoniaNeural', 'Female', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (418, 'Amber', 'en-US-AmberNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (419, 'Ashley', 'en-US-AshleyNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (420, 'Cora', 'en-US-CoraNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (421, 'Elizabeth', 'en-US-ElizabethNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (422, 'Michelle', 'en-US-MichelleNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (423, 'Monica', 'en-US-MonicaNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (424, 'Sara', 'en-US-SaraNeural', 'Female', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'); INSERT INTO `voice_templates` (`id`, `voice`, `voice_id`, `gender`, `language_code`, `type`, `voice_type`, `created_at`, `updated_at`) VALUES (425, 'Ana', 'en-US-AnaNeural', 'Female(child)', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (426, 'Brandon', 'en-US-BrandonNeural', 'Male', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (427, 'Christopher', 'en-US-ChristopherNeural', 'Male', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (428, 'Eric', 'en-US-EricNeural', 'Male', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (429, 'Jacob', 'en-US-JacobNeural', 'Male', 'en-US', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (430, 'Gudrun', 'is-IS-GudrunNeural', 'Female', 'is-IS', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (431, 'Gunnar', 'is-IS-GunnarNeural', 'Male', 'is-IS', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (432, 'Sapna', 'kn-IN-SapnaNeural', 'Female', 'kn-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (433, 'Gagan', 'kn-IN-GaganNeural', 'Male', 'kn-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (434, 'Aigul', 'kk-KZ-AigulNeural', 'Female', 'kk-KZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (435, 'Daulet', 'kk-KZ-DauletNeural', 'Male', 'kk-KZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (436, 'Keomany', 'lo-LA-KeomanyNeural', 'Female', 'lo-LA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (437, 'Chanthavong', 'lo-LA-ChanthavongNeural', 'Male', 'lo-LA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (438, 'Marija', 'mk-MK-MarijaNeural', 'Female', 'mk-MK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (439, 'Aleksandar', 'mk-MK-AleksandarNeural', 'Male', 'mk-MK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (440, 'Sobhana', 'ml-IN-SobhanaNeural', 'Female', 'ml-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (441, 'Midhun', 'ml-IN-MidhunNeural', 'Male', 'ml-IN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (442, 'Latifa', 'ps-AF-LatifaNeural', 'Female', 'ps-AF', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (443, 'GulNawaz', 'ps-AF-GulNawazNeural', 'Male', 'ps-AF', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (444, 'Sophie', 'sr-RS-SophieNeural', 'Female', 'sr-RS', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (445, 'Nicholas', 'sr-RS-NicholasNeural', 'Male', 'sr-RS', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (446, 'Thilini', 'si-LK-ThiliniNeural', 'Female', 'si-LK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (447, 'Sameera', 'si-LK-SameeraNeural', 'Male', 'si-LK', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (448, 'Abbi', 'en-GB-AbbiNeural', 'Female', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (449, 'Bella', 'en-GB-BellaNeural', 'Female', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (450, 'Hollie', 'en-GB-HollieNeural', 'Female', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (451, 'Olivia', 'en-GB-OliviaNeural', 'Female', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (452, 'Maisie', 'en-GB-MaisieNeural', 'Female(child)', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (453, 'Alfie', 'en-GB-AlfieNeural', 'Male', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (454, 'Elliot', 'en-GB-ElliotNeural', 'Male', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (455, 'Ethan', 'en-GB-EthanNeural', 'Male', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (456, 'Noah', 'en-GB-NoahNeural', 'Male', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (457, 'Oliver', 'en-GB-OliverNeural', 'Male', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (458, 'Thomas', 'en-GB-ThomasNeural', 'Male', 'en-GB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (459, 'Brigitte', 'fr-FR-BrigitteNeural', 'Female', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (460, 'Celeste', 'fr-FR-CelesteNeural', 'Female', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (461, 'Coralie', 'fr-FR-CoralieNeural', 'Female', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (462, 'Jacqueline', 'fr-FR-JacquelineNeural', 'Female', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (463, 'Josephine', 'fr-FR-JosephineNeural', 'Female', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (464, 'Yvette', 'fr-FR-YvetteNeural', 'Female', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (465, 'Eloise', 'fr-FR-EloiseNeural', 'Female(child)', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (466, 'Alain', 'fr-FR-AlainNeural', 'Male', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (467, 'Claude', 'fr-FR-ClaudeNeural', 'Male', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (468, 'Jerome', 'fr-FR-JeromeNeural', 'Male', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (469, 'Maurice', 'fr-FR-MauriceNeural', 'Male', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (470, 'Yves', 'fr-FR-YvesNeural', 'Male', 'fr-FR', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (471, 'Amala', 'de-DE-AmalaNeural', 'Female', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (472, 'Elke', 'de-DE-ElkeNeural', 'Female', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (473, 'Klarissa', 'de-DE-KlarissaNeural', 'Female', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (474, 'Louisa', 'de-DE-LouisaNeural', 'Female', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (475, 'Maja', 'de-DE-MajaNeural', 'Female', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (476, 'Tanja', 'de-DE-TanjaNeural', 'Female', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (477, 'Gisela', 'de-DE-GiselaNeural', 'Female(child)', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (478, 'Bernd', 'de-DE-BerndNeural', 'Male', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (479, 'Christoph', 'de-DE-ChristophNeural', 'Male', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (480, 'Kasper', 'de-DE-KasperNeural', 'Male', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (481, 'Killian', 'de-DE-KillianNeural', 'Male', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (482, 'Klaus', 'de-DE-KlausNeural', 'Male', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (483, 'Ralf', 'de-DE-RalfNeural', 'Male', 'de-DE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (484, 'Babek', 'az-AZ-BabekNeural', 'Male', 'az-AZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (485, 'Banu', 'az-AZ-BanuNeural', 'Female', 'az-AZ', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (486, 'Rami', 'ar-LB-RamiNeural', 'Male', 'ar-LB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (487, 'Layla', 'ar-LB-LaylaNeural', 'Female', 'ar-LB', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (488, 'Ilir', 'sq-AL-IlirNeural', 'Male', 'sq-AL', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (489, 'Anila', 'sq-AL-AnilaNeural', 'Female', 'sq-AL', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (490, 'Giorgi', 'ka-GE-GiorgiNeural', 'Male', 'ka-GE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (491, 'Eka', 'ka-GE-EkaNeural', 'Female', 'ka-GE', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (492, 'Yesui', 'mn-MN-YesuiNeural', 'Female', 'mn-MN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (493, 'Bataa', 'mn-MN-BataaNeural', 'Male', 'mn-MN', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (494, 'Sagar', 'ne-NP-SagarNeural', 'Male', 'ne-NP', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (495, 'Hemkala', 'ne-NP-HemkalaNeural', 'Female', 'ne-NP', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (496, 'Goran', 'bs-BA-GoranNeural', 'Male', 'bs-BA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (497, 'Vesna', 'bs-BA-VesnaNeural', 'Female', 'bs-BA', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (498, 'Abdullah', 'ar-OM-AbdullahNeural', 'Male', 'ar-OM', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (499, 'Aysha', 'ar-OM-AyshaNeural', 'Female', 'ar-OM', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (500, 'Surya', 'ta-MY-SuryaNeural', 'Male', 'ta-MY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (501, 'Kani', 'ta-MY-KaniNeural', 'Female', 'ta-MY', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (502, 'Cecilio', 'es-MX-CecilioNeural', 'Male', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (503, 'Gerardo', 'es-MX-GerardoNeural', 'Male', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (504, 'Liberto', 'es-MX-LibertoNeural', 'Male', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (505, 'Luciano', 'es-MX-LucianoNeural', 'Male', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (506, 'Pelayo', 'es-MX-PelayoNeural', 'Male', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (507, 'Yago', 'es-MX-YagoNeural', 'Male', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (508, 'Beatriz', 'es-MX-BeatrizNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (509, 'Carlota', 'es-MX-CarlotaNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (510, 'Nuria', 'es-MX-NuriaNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (511, 'Candela', 'es-MX-CandelaNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (512, 'Larissa', 'es-MX-LarissaNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:22', '2023-05-21 14:25:22'), (513, 'Renata', 'es-MX-RenataNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (514, 'Marina', 'es-MX-MarinaNeural', 'Female', 'es-MX', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (515, 'Pierina', 'it-IT-PierinaNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (516, 'Fabiola', 'it-IT-FabiolaNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (517, 'Imelda', 'it-IT-ImeldaNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (518, 'Palmira', 'it-IT-PalmiraNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (519, 'Fiamma', 'it-IT-FiammaNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (520, 'Irma', 'it-IT-IrmaNeural', 'Female', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (521, 'Benigno', 'it-IT-BenignoNeural', 'Male', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (522, 'Cataldo', 'it-IT-CataldoNeural', 'Male', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (523, 'Lisandro', 'it-IT-LisandroNeural', 'Male', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (524, 'Gianni', 'it-IT-GianniNeural', 'Male', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (525, 'Calimero', 'it-IT-CalimeroNeural', 'Male', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (526, 'Rinaldo', 'it-IT-RinaldoNeural', 'Male', 'it-IT', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (527, 'Donato', 'pt-BR-DonatoNeural', 'Male', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (528, 'Fabio', 'pt-BR-FabioNeural', 'Male', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (529, 'Julio', 'pt-BR-JulioNeural', 'Male', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (530, 'Nicolau', 'pt-BR-NicolauNeural', 'Male', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (531, 'Valerio', 'pt-BR-ValerioNeural', 'Male', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (532, 'Leticia', 'pt-BR-LeticiaNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (534, 'Brenda', 'pt-BR-BrendaNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (535, 'Elza', 'pt-BR-ElzaNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (536, 'Manuela', 'pt-BR-ManuelaNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (537, 'Giovanna', 'pt-BR-GiovannaNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (538, 'Leila', 'pt-BR-LeilaNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (539, 'Yara', 'pt-BR-YaraNeural', 'Female', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'), (540, 'Humberto', 'pt-BR-HumbertoNeural', 'Male', 'pt-BR', 'azure', 'neural', '2023-05-21 14:25:23', '2023-05-21 14:25:23'); -- -------------------------------------------------------- -- -- Table structure for table `workbooks` -- CREATE TABLE `workbooks` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `workbooks` -- INSERT INTO `workbooks` (`id`, `user_id`, `name`, `is_default`, `created_at`, `updated_at`) VALUES (2, 1, 'Software Manual', 0, '2023-05-27 04:22:33', '2023-05-27 04:22:33'), (3, 1, 'Test', 0, '2023-05-27 04:31:12', '2023-05-27 04:31:12'); -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`), ADD UNIQUE KEY `admins_username_unique` (`username`); -- -- Indexes for table `admin_profiles` -- ALTER TABLE `admin_profiles` ADD PRIMARY KEY (`id`), ADD KEY `admin_profiles_admin_id_foreign` (`admin_id`); -- -- Indexes for table `basic_controls` -- ALTER TABLE `basic_controls` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chats` -- ALTER TABLE `chats` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chat_histories` -- ALTER TABLE `chat_histories` ADD PRIMARY KEY (`id`), ADD KEY `chat_histories_user_id_foreign` (`user_id`); -- -- Indexes for table `chat_tittles` -- ALTER TABLE `chat_tittles` ADD PRIMARY KEY (`id`), ADD KEY `chat_tittles_user_id_index` (`user_id`); -- -- Indexes for table `codes` -- ALTER TABLE `codes` ADD PRIMARY KEY (`id`), ADD KEY `codes_user_id_index` (`user_id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contents` -- ALTER TABLE `contents` ADD PRIMARY KEY (`id`); -- -- Indexes for table `content_details` -- ALTER TABLE `content_details` ADD PRIMARY KEY (`id`), ADD KEY `content_details_content_id_foreign` (`content_id`), ADD KEY `content_details_language_id_foreign` (`language_id`); -- -- Indexes for table `content_media` -- ALTER TABLE `content_media` ADD PRIMARY KEY (`id`), ADD KEY `content_media_content_id_foreign` (`content_id`); -- -- Indexes for table `custom_templates` -- ALTER TABLE `custom_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deposits` -- ALTER TABLE `deposits` ADD PRIMARY KEY (`id`), ADD KEY `deposits_user_id_foreign` (`user_id`), ADD KEY `deposits_payment_method_id_foreign` (`payment_method_id`); -- -- Indexes for table `email_templates` -- ALTER TABLE `email_templates` ADD PRIMARY KEY (`id`), ADD KEY `email_templates_language_id_foreign` (`language_id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `favourite_templates` -- ALTER TABLE `favourite_templates` ADD PRIMARY KEY (`id`), ADD KEY `favourite_templates_user_id_index` (`user_id`); -- -- Indexes for table `firebase_notifies` -- ALTER TABLE `firebase_notifies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `funds` -- ALTER TABLE `funds` ADD PRIMARY KEY (`id`), ADD KEY `funds_user_id_foreign` (`user_id`), ADD KEY `funds_admin_id_foreign` (`admin_id`); -- -- Indexes for table `gateways` -- ALTER TABLE `gateways` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `gateways_code_unique` (`code`); -- -- Indexes for table `images` -- ALTER TABLE `images` ADD PRIMARY KEY (`id`), ADD KEY `images_user_id_index` (`user_id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `kycs` -- ALTER TABLE `kycs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `languages` -- ALTER TABLE `languages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notify_templates` -- ALTER TABLE `notify_templates` ADD PRIMARY KEY (`id`), ADD KEY `notify_templates_language_id_foreign` (`language_id`); -- -- Indexes for table `original_templates` -- ALTER TABLE `original_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `prepaid_plans` -- ALTER TABLE `prepaid_plans` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sentiments` -- ALTER TABLE `sentiments` ADD PRIMARY KEY (`id`), ADD KEY `sentiments_user_id_index` (`user_id`); -- -- Indexes for table `site_notifications` -- ALTER TABLE `site_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sms_controls` -- ALTER TABLE `sms_controls` ADD PRIMARY KEY (`id`); -- -- Indexes for table `speech_to_texts` -- ALTER TABLE `speech_to_texts` ADD PRIMARY KEY (`id`), ADD KEY `speech_to_texts_user_id_index` (`user_id`), ADD KEY `speech_to_texts_workbook_id_index` (`workbook_id`); -- -- Indexes for table `storages` -- ALTER TABLE `storages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscribes` -- ALTER TABLE `subscribes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscription_plans` -- ALTER TABLE `subscription_plans` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscription_purchases` -- ALTER TABLE `subscription_purchases` ADD PRIMARY KEY (`id`), ADD KEY `subscription_purchases_user_id_index` (`user_id`), ADD KEY `subscription_purchases_subscription_id_index` (`subscription_id`); -- -- Indexes for table `templates` -- ALTER TABLE `templates` ADD PRIMARY KEY (`id`), ADD KEY `templates_language_id_foreign` (`language_id`); -- -- Indexes for table `template_categories` -- ALTER TABLE `template_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `template_media` -- ALTER TABLE `template_media` ADD PRIMARY KEY (`id`); -- -- Indexes for table `template_responses` -- ALTER TABLE `template_responses` ADD PRIMARY KEY (`id`), ADD KEY `template_responses_user_id_index` (`user_id`); -- -- Indexes for table `template_response_texts` -- ALTER TABLE `template_response_texts` ADD PRIMARY KEY (`id`), ADD KEY `template_response_texts_user_id_index` (`user_id`), ADD KEY `template_response_texts_template_response_id_index` (`template_response_id`); -- -- Indexes for table `tickets` -- ALTER TABLE `tickets` ADD PRIMARY KEY (`id`), ADD KEY `tickets_user_id_foreign` (`user_id`); -- -- Indexes for table `ticket_attachments` -- ALTER TABLE `ticket_attachments` ADD PRIMARY KEY (`id`), ADD KEY `ticket_attachments_ticket_message_id_foreign` (`ticket_message_id`); -- -- Indexes for table `ticket_messages` -- ALTER TABLE `ticket_messages` ADD PRIMARY KEY (`id`), ADD KEY `ticket_messages_ticket_id_foreign` (`ticket_id`), ADD KEY `ticket_messages_admin_id_foreign` (`admin_id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `user_kycs` -- ALTER TABLE `user_kycs` ADD PRIMARY KEY (`id`), ADD KEY `user_kycs_user_id_index` (`user_id`); -- -- Indexes for table `user_profiles` -- ALTER TABLE `user_profiles` ADD PRIMARY KEY (`id`), ADD KEY `user_profiles_user_id_foreign` (`user_id`); -- -- Indexes for table `variant_images` -- ALTER TABLE `variant_images` ADD PRIMARY KEY (`id`), ADD KEY `variant_images_user_id_index` (`user_id`); -- -- Indexes for table `voice_responses` -- ALTER TABLE `voice_responses` ADD PRIMARY KEY (`id`), ADD KEY `voice_responses_user_id_index` (`user_id`), ADD KEY `voice_responses_voice_template_id_index` (`voice_template_id`); -- -- Indexes for table `voice_templates` -- ALTER TABLE `voice_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `workbooks` -- ALTER TABLE `workbooks` ADD PRIMARY KEY (`id`), ADD KEY `workbooks_user_id_index` (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `admin_profiles` -- ALTER TABLE `admin_profiles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `basic_controls` -- ALTER TABLE `basic_controls` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `chats` -- ALTER TABLE `chats` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44; -- -- AUTO_INCREMENT for table `chat_histories` -- ALTER TABLE `chat_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=83; -- -- AUTO_INCREMENT for table `chat_tittles` -- ALTER TABLE `chat_tittles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `codes` -- ALTER TABLE `codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `contents` -- ALTER TABLE `contents` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=102; -- -- AUTO_INCREMENT for table `content_details` -- ALTER TABLE `content_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62; -- -- AUTO_INCREMENT for table `content_media` -- ALTER TABLE `content_media` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; -- -- AUTO_INCREMENT for table `custom_templates` -- ALTER TABLE `custom_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `deposits` -- ALTER TABLE `deposits` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=152; -- -- AUTO_INCREMENT for table `email_templates` -- ALTER TABLE `email_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `favourite_templates` -- ALTER TABLE `favourite_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `firebase_notifies` -- ALTER TABLE `firebase_notifies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `funds` -- ALTER TABLE `funds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `gateways` -- ALTER TABLE `gateways` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1001; -- -- AUTO_INCREMENT for table `images` -- ALTER TABLE `images` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=90; -- -- AUTO_INCREMENT for table `kycs` -- ALTER TABLE `kycs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `languages` -- ALTER TABLE `languages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=108; -- -- AUTO_INCREMENT for table `notify_templates` -- ALTER TABLE `notify_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49; -- -- AUTO_INCREMENT for table `original_templates` -- ALTER TABLE `original_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT for table `prepaid_plans` -- ALTER TABLE `prepaid_plans` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `sentiments` -- ALTER TABLE `sentiments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `site_notifications` -- ALTER TABLE `site_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `sms_controls` -- ALTER TABLE `sms_controls` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `speech_to_texts` -- ALTER TABLE `speech_to_texts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `storages` -- ALTER TABLE `storages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `subscribes` -- ALTER TABLE `subscribes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `subscription_plans` -- ALTER TABLE `subscription_plans` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `subscription_purchases` -- ALTER TABLE `subscription_purchases` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT for table `templates` -- ALTER TABLE `templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `template_categories` -- ALTER TABLE `template_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `template_media` -- ALTER TABLE `template_media` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `template_responses` -- ALTER TABLE `template_responses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `template_response_texts` -- ALTER TABLE `template_response_texts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `tickets` -- ALTER TABLE `tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `ticket_attachments` -- ALTER TABLE `ticket_attachments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `ticket_messages` -- ALTER TABLE `ticket_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `user_kycs` -- ALTER TABLE `user_kycs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `user_profiles` -- ALTER TABLE `user_profiles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `variant_images` -- ALTER TABLE `variant_images` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `voice_responses` -- ALTER TABLE `voice_responses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `voice_templates` -- ALTER TABLE `voice_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=541; -- -- AUTO_INCREMENT for table `workbooks` -- ALTER TABLE `workbooks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- Constraints for dumped tables -- -- -- Constraints for table `admin_profiles` -- ALTER TABLE `admin_profiles` ADD CONSTRAINT `admin_profiles_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admins` (`id`); -- -- Constraints for table `chat_histories` -- ALTER TABLE `chat_histories` ADD CONSTRAINT `chat_histories_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `content_details` -- ALTER TABLE `content_details` ADD CONSTRAINT `content_details_content_id_foreign` FOREIGN KEY (`content_id`) REFERENCES `contents` (`id`), ADD CONSTRAINT `content_details_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`); -- -- Constraints for table `content_media` -- ALTER TABLE `content_media` ADD CONSTRAINT `content_media_content_id_foreign` FOREIGN KEY (`content_id`) REFERENCES `contents` (`id`); -- -- Constraints for table `deposits` -- ALTER TABLE `deposits` ADD CONSTRAINT `deposits_payment_method_id_foreign` FOREIGN KEY (`payment_method_id`) REFERENCES `gateways` (`id`), ADD CONSTRAINT `deposits_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `email_templates` -- ALTER TABLE `email_templates` ADD CONSTRAINT `email_templates_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`); -- -- Constraints for table `funds` -- ALTER TABLE `funds` ADD CONSTRAINT `funds_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admins` (`id`), ADD CONSTRAINT `funds_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `notify_templates` -- ALTER TABLE `notify_templates` ADD CONSTRAINT `notify_templates_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`); -- -- Constraints for table `templates` -- ALTER TABLE `templates` ADD CONSTRAINT `templates_language_id_foreign` FOREIGN KEY (`language_id`) REFERENCES `languages` (`id`); -- -- Constraints for table `tickets` -- ALTER TABLE `tickets` ADD CONSTRAINT `tickets_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); -- -- Constraints for table `ticket_attachments` -- ALTER TABLE `ticket_attachments` ADD CONSTRAINT `ticket_attachments_ticket_message_id_foreign` FOREIGN KEY (`ticket_message_id`) REFERENCES `ticket_messages` (`id`); -- -- Constraints for table `ticket_messages` -- ALTER TABLE `ticket_messages` ADD CONSTRAINT `ticket_messages_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `admins` (`id`), ADD CONSTRAINT `ticket_messages_ticket_id_foreign` FOREIGN KEY (`ticket_id`) REFERENCES `tickets` (`id`); -- -- Constraints for table `user_profiles` -- ALTER TABLE `user_profiles` ADD CONSTRAINT `user_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;