-- 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', '<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\r\n<meta name=\"viewport\" content=\"width=device-width\">\r\n<style type=\"text/css\">\r\n    @media only screen and (min-width: 620px) {\r\n        * [lang=x-wrapper] h1 {\r\n        }\r\n\r\n        * [lang=x-wrapper] h1 {\r\n            font-size: 26px !important;\r\n            line-height: 34px !important\r\n        }\r\n\r\n        * [lang=x-wrapper] h2 {\r\n        }\r\n\r\n        * [lang=x-wrapper] h2 {\r\n            font-size: 20px !important;\r\n            line-height: 28px !important\r\n        }\r\n\r\n        * [lang=x-wrapper] h3 {\r\n        }\r\n\r\n        * [lang=x-layout__inner] p,\r\n        * [lang=x-layout__inner] ol,\r\n        * [lang=x-layout__inner] ul {\r\n        }\r\n\r\n        * div [lang=x-size-8] {\r\n            font-size: 8px !important;\r\n            line-height: 14px !important\r\n        }\r\n\r\n        * div [lang=x-size-9] {\r\n            font-size: 9px !important;\r\n            line-height: 16px !important\r\n        }\r\n\r\n        * div [lang=x-size-10] {\r\n            font-size: 10px !important;\r\n            line-height: 18px !important\r\n        }\r\n\r\n        * div [lang=x-size-11] {\r\n            font-size: 11px !important;\r\n            line-height: 19px !important\r\n        }\r\n\r\n        * div [lang=x-size-12] {\r\n            font-size: 12px !important;\r\n            line-height: 19px !important\r\n        }\r\n\r\n        * div [lang=x-size-13] {\r\n            font-size: 13px !important;\r\n            line-height: 21px !important\r\n        }\r\n\r\n        * div [lang=x-size-14] {\r\n            font-size: 14px !important;\r\n            line-height: 21px !important\r\n        }\r\n\r\n        * div [lang=x-size-15] {\r\n            font-size: 15px !important;\r\n            line-height: 23px !important\r\n        }\r\n\r\n        * div [lang=x-size-16] {\r\n            font-size: 16px !important;\r\n            line-height: 24px !important\r\n        }\r\n\r\n        * div [lang=x-size-17] {\r\n            font-size: 17px !important;\r\n            line-height: 26px !important\r\n        }\r\n\r\n        * div [lang=x-size-18] {\r\n            font-size: 18px !important;\r\n            line-height: 26px !important\r\n        }\r\n\r\n        * div [lang=x-size-18] {\r\n            font-size: 18px !important;\r\n            line-height: 26px !important\r\n        }\r\n\r\n        * div [lang=x-size-20] {\r\n            font-size: 20px !important;\r\n            line-height: 28px !important\r\n        }\r\n\r\n        * div [lang=x-size-22] {\r\n            font-size: 22px !important;\r\n            line-height: 31px !important\r\n        }\r\n\r\n        * div [lang=x-size-24] {\r\n            font-size: 24px !important;\r\n            line-height: 32px !important\r\n        }\r\n\r\n        * div [lang=x-size-26] {\r\n            font-size: 26px !important;\r\n            line-height: 34px !important\r\n        }\r\n\r\n        * div [lang=x-size-28] {\r\n            font-size: 28px !important;\r\n            line-height: 36px !important\r\n        }\r\n\r\n        * div [lang=x-size-30] {\r\n            font-size: 30px !important;\r\n            line-height: 38px !important\r\n        }\r\n\r\n        * div [lang=x-size-32] {\r\n            font-size: 32px !important;\r\n            line-height: 40px !important\r\n        }\r\n\r\n        * div [lang=x-size-34] {\r\n            font-size: 34px !important;\r\n            line-height: 43px !important\r\n        }\r\n\r\n        * div [lang=x-size-36] {\r\n            font-size: 36px !important;\r\n            line-height: 43px !important\r\n        }\r\n\r\n        * div [lang=x-size-40] {\r\n            font-size: 40px !important;\r\n            line-height: 47px !important\r\n        }\r\n\r\n        * div [lang=x-size-44] {\r\n            font-size: 44px !important;\r\n            line-height: 50px !important\r\n        }\r\n\r\n        * div [lang=x-size-48] {\r\n            font-size: 48px !important;\r\n            line-height: 54px !important\r\n        }\r\n\r\n        * div [lang=x-size-56] {\r\n            font-size: 56px !important;\r\n            line-height: 60px !important\r\n        }\r\n\r\n        * div [lang=x-size-64] {\r\n            font-size: 64px !important;\r\n            line-height: 63px !important\r\n        }\r\n    }\r\n</style>\r\n<style type=\"text/css\">\r\n    body {\r\n        margin: 0;\r\n        padding: 0;\r\n    }\r\n\r\n    table {\r\n        border-collapse: collapse;\r\n        table-layout: fixed;\r\n    }\r\n\r\n    * {\r\n        line-height: inherit;\r\n    }\r\n\r\n    [x-apple-data-detectors],\r\n    [href^=\"tel\"],\r\n    [href^=\"sms\"] {\r\n        color: inherit !important;\r\n        text-decoration: none !important;\r\n    }\r\n\r\n    .wrapper .footer__share-button a:hover,\r\n    .wrapper .footer__share-button a:focus {\r\n        color: #ffffff !important;\r\n    }\r\n\r\n    .btn a:hover,\r\n    .btn a:focus,\r\n    .footer__share-button a:hover,\r\n    .footer__share-button a:focus,\r\n    .email-footer__links a:hover,\r\n    .email-footer__links a:focus {\r\n        opacity: 0.8;\r\n    }\r\n\r\n    .preheader,\r\n    .header,\r\n    .layout,\r\n    .column {\r\n        transition: width 0.25s ease-in-out, max-width 0.25s ease-in-out;\r\n    }\r\n\r\n    .layout,\r\n    .header {\r\n        max-width: 400px !important;\r\n        -fallback-width: 95% !important;\r\n        width: calc(100% - 20px) !important;\r\n    }\r\n\r\n    div.preheader {\r\n        max-width: 360px !important;\r\n        -fallback-width: 90% !important;\r\n        width: calc(100% - 60px) !important;\r\n    }\r\n\r\n    .snippet,\r\n    .webversion {\r\n        Float: none !important;\r\n    }\r\n\r\n    .column {\r\n        max-width: 400px !important;\r\n        width: 100% !important;\r\n    }\r\n\r\n    .fixed-width.has-border {\r\n        max-width: 402px !important;\r\n    }\r\n\r\n    .fixed-width.has-border .layout__inner {\r\n        box-sizing: border-box;\r\n    }\r\n\r\n    .snippet,\r\n    .webversion {\r\n        width: 50% !important;\r\n    }\r\n\r\n    .ie .btn {\r\n        width: 100%;\r\n    }\r\n\r\n    .ie .column,\r\n    [owa] .column,\r\n    .ie .gutter,\r\n    [owa] .gutter {\r\n        display: table-cell;\r\n        float: none !important;\r\n        vertical-align: top;\r\n    }\r\n\r\n    .ie div.preheader,\r\n    [owa] div.preheader,\r\n    .ie .email-footer,\r\n    [owa] .email-footer {\r\n        max-width: 560px !important;\r\n        width: 560px !important;\r\n    }\r\n\r\n    .ie .snippet,\r\n    [owa] .snippet,\r\n    .ie .webversion,\r\n    [owa] .webversion {\r\n        width: 280px !important;\r\n    }\r\n\r\n    .ie .header,\r\n    [owa] .header,\r\n    .ie .layout,\r\n    [owa] .layout,\r\n    .ie .one-col .column,\r\n    [owa] .one-col .column {\r\n        max-width: 600px !important;\r\n        width: 600px !important;\r\n    }\r\n\r\n    .ie .fixed-width.has-border,\r\n    [owa] .fixed-width.has-border,\r\n    .ie .has-gutter.has-border,\r\n    [owa] .has-gutter.has-border {\r\n        max-width: 602px !important;\r\n        width: 602px !important;\r\n    }\r\n\r\n    .ie .two-col .column,\r\n    [owa] .two-col .column {\r\n        width: 300px !important;\r\n    }\r\n\r\n    .ie .three-col .column,\r\n    [owa] .three-col .column,\r\n    .ie .narrow,\r\n    [owa] .narrow {\r\n        width: 200px !important;\r\n    }\r\n\r\n    .ie .wide,\r\n    [owa] .wide {\r\n        width: 400px !important;\r\n    }\r\n\r\n    .ie .two-col.has-gutter .column,\r\n    [owa] .two-col.x_has-gutter .column {\r\n        width: 290px !important;\r\n    }\r\n\r\n    .ie .three-col.has-gutter .column,\r\n    [owa] .three-col.x_has-gutter .column,\r\n    .ie .has-gutter .narrow,\r\n    [owa] .has-gutter .narrow {\r\n        width: 188px !important;\r\n    }\r\n\r\n    .ie .has-gutter .wide,\r\n    [owa] .has-gutter .wide {\r\n        width: 394px !important;\r\n    }\r\n\r\n    .ie .two-col.has-gutter.has-border .column,\r\n    [owa] .two-col.x_has-gutter.x_has-border .column {\r\n        width: 292px !important;\r\n    }\r\n\r\n    .ie .three-col.has-gutter.has-border .column,\r\n    [owa] .three-col.x_has-gutter.x_has-border .column,\r\n    .ie .has-gutter.has-border .narrow,\r\n    [owa] .has-gutter.x_has-border .narrow {\r\n        width: 190px !important;\r\n    }\r\n\r\n    .ie .has-gutter.has-border .wide,\r\n    [owa] .has-gutter.x_has-border .wide {\r\n        width: 396px !important;\r\n    }\r\n\r\n    .ie .fixed-width .layout__inner {\r\n        border-left: 0 none white !important;\r\n        border-right: 0 none white !important;\r\n    }\r\n\r\n    .ie .layout__edges {\r\n        display: none;\r\n    }\r\n\r\n    .mso .layout__edges {\r\n        font-size: 0;\r\n    }\r\n\r\n    .layout-fixed-width,\r\n    .mso .layout-full-width {\r\n        background-color: #ffffff;\r\n    }\r\n\r\n    @media only screen and (min-width: 620px) {\r\n\r\n        .column,\r\n        .gutter {\r\n            display: table-cell;\r\n            Float: none !important;\r\n            vertical-align: top;\r\n        }\r\n\r\n        div.preheader,\r\n        .email-footer {\r\n            max-width: 560px !important;\r\n            width: 560px !important;\r\n        }\r\n\r\n        .snippet,\r\n        .webversion {\r\n            width: 280px !important;\r\n        }\r\n\r\n        .header,\r\n        .layout,\r\n        .one-col .column {\r\n            max-width: 600px !important;\r\n            width: 600px !important;\r\n        }\r\n\r\n        .fixed-width.has-border,\r\n        .fixed-width.ecxhas-border,\r\n        .has-gutter.has-border,\r\n        .has-gutter.ecxhas-border {\r\n            max-width: 602px !important;\r\n            width: 602px !important;\r\n        }\r\n\r\n        .two-col .column {\r\n            width: 300px !important;\r\n        }\r\n\r\n        .three-col .column,\r\n        .column.narrow {\r\n            width: 200px !important;\r\n        }\r\n\r\n        .column.wide {\r\n            width: 400px !important;\r\n        }\r\n\r\n        .two-col.has-gutter .column,\r\n        .two-col.ecxhas-gutter .column {\r\n            width: 290px !important;\r\n        }\r\n\r\n        .three-col.has-gutter .column,\r\n        .three-col.ecxhas-gutter .column,\r\n        .has-gutter .narrow {\r\n            width: 188px !important;\r\n        }\r\n\r\n        .has-gutter .wide {\r\n            width: 394px !important;\r\n        }\r\n\r\n        .two-col.has-gutter.has-border .column,\r\n        .two-col.ecxhas-gutter.ecxhas-border .column {\r\n            width: 292px !important;\r\n        }\r\n\r\n        .three-col.has-gutter.has-border .column,\r\n        .three-col.ecxhas-gutter.ecxhas-border .column,\r\n        .has-gutter.has-border .narrow,\r\n        .has-gutter.ecxhas-border .narrow {\r\n            width: 190px !important;\r\n        }\r\n\r\n        .has-gutter.has-border .wide,\r\n        .has-gutter.ecxhas-border .wide {\r\n            width: 396px !important;\r\n        }\r\n    }\r\n\r\n    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\r\n        .fblike {\r\n            background-image: url(https://i3.createsend1.com/static/eb/customise/13-the-blueprint-3/images/fblike@2x.png) !important;\r\n        }\r\n\r\n        .tweet {\r\n            background-image: url(https://i4.createsend1.com/static/eb/customise/13-the-blueprint-3/images/tweet@2x.png) !important;\r\n        }\r\n\r\n        .linkedinshare {\r\n            background-image: url(https://i6.createsend1.com/static/eb/customise/13-the-blueprint-3/images/lishare@2x.png) !important;\r\n        }\r\n\r\n        .forwardtoafriend {\r\n            background-image: url(https://i5.createsend1.com/static/eb/customise/13-the-blueprint-3/images/forward@2x.png) !important;\r\n        }\r\n    }\r\n\r\n    @media (max-width: 321px) {\r\n        .fixed-width.has-border .layout__inner {\r\n            border-width: 1px 0 !important;\r\n        }\r\n\r\n        .layout,\r\n        .column {\r\n            min-width: 320px !important;\r\n            width: 320px !important;\r\n        }\r\n\r\n        .border {\r\n            display: none;\r\n        }\r\n    }\r\n\r\n    .mso div {\r\n        border: 0 none white !important;\r\n    }\r\n\r\n    .mso .w560 .divider {\r\n        margin-left: 260px !important;\r\n        margin-right: 260px !important;\r\n    }\r\n\r\n    .mso .w360 .divider {\r\n        margin-left: 160px !important;\r\n        margin-right: 160px !important;\r\n    }\r\n\r\n    .mso .w260 .divider {\r\n        margin-left: 110px !important;\r\n        margin-right: 110px !important;\r\n    }\r\n\r\n    .mso .w160 .divider {\r\n        margin-left: 60px !important;\r\n        margin-right: 60px !important;\r\n    }\r\n\r\n    .mso .w354 .divider {\r\n        margin-left: 157px !important;\r\n        margin-right: 157px !important;\r\n    }\r\n\r\n    .mso .w250 .divider {\r\n        margin-left: 105px !important;\r\n        margin-right: 105px !important;\r\n    }\r\n\r\n    .mso .w148 .divider {\r\n        margin-left: 54px !important;\r\n        margin-right: 54px !important;\r\n    }\r\n\r\n    .mso .font-avenir,\r\n    .mso .font-cabin,\r\n    .mso .font-open-sans,\r\n    .mso .font-ubuntu {\r\n        font-family: sans-serif !important;\r\n    }\r\n\r\n    .mso .font-bitter,\r\n    .mso .font-merriweather,\r\n    .mso .font-pt-serif {\r\n        font-family: Georgia, serif !important;\r\n    }\r\n\r\n    .mso .font-lato,\r\n    .mso .font-roboto {\r\n        font-family: Tahoma, sans-serif !important;\r\n    }\r\n\r\n    .mso .font-pt-sans {\r\n        font-family: \"Trebuchet MS\", sans-serif !important;\r\n    }\r\n\r\n    .mso .footer__share-button p {\r\n        margin: 0;\r\n    }\r\n\r\n    @media only screen and (min-width: 620px) {\r\n        .wrapper .size-8 {\r\n            font-size: 8px !important;\r\n            line-height: 14px !important;\r\n        }\r\n\r\n        .wrapper .size-9 {\r\n            font-size: 9px !important;\r\n            line-height: 16px !important;\r\n        }\r\n\r\n        .wrapper .size-10 {\r\n            font-size: 10px !important;\r\n            line-height: 18px !important;\r\n        }\r\n\r\n        .wrapper .size-11 {\r\n            font-size: 11px !important;\r\n            line-height: 19px !important;\r\n        }\r\n\r\n        .wrapper .size-12 {\r\n            font-size: 12px !important;\r\n            line-height: 19px !important;\r\n        }\r\n\r\n        .wrapper .size-13 {\r\n            font-size: 13px !important;\r\n            line-height: 21px !important;\r\n        }\r\n\r\n        .wrapper .size-14 {\r\n            font-size: 14px !important;\r\n            line-height: 21px !important;\r\n        }\r\n\r\n        .wrapper .size-15 {\r\n            font-size: 15px !important;\r\n            line-height: 23px !important;\r\n        }\r\n\r\n        .wrapper .size-16 {\r\n            font-size: 16px !important;\r\n            line-height: 24px !important;\r\n        }\r\n\r\n        .wrapper .size-17 {\r\n            font-size: 17px !important;\r\n            line-height: 26px !important;\r\n        }\r\n\r\n        .wrapper .size-18 {\r\n            font-size: 18px !important;\r\n            line-height: 26px !important;\r\n        }\r\n\r\n        .wrapper .size-20 {\r\n            font-size: 20px !important;\r\n            line-height: 28px !important;\r\n        }\r\n\r\n        .wrapper .size-22 {\r\n            font-size: 22px !important;\r\n            line-height: 31px !important;\r\n        }\r\n\r\n        .wrapper .size-24 {\r\n            font-size: 24px !important;\r\n            line-height: 32px !important;\r\n        }\r\n\r\n        .wrapper .size-26 {\r\n            font-size: 26px !important;\r\n            line-height: 34px !important;\r\n        }\r\n\r\n        .wrapper .size-28 {\r\n            font-size: 28px !important;\r\n            line-height: 36px !important;\r\n        }\r\n\r\n        .wrapper .size-30 {\r\n            font-size: 30px !important;\r\n            line-height: 38px !important;\r\n        }\r\n\r\n        .wrapper .size-32 {\r\n            font-size: 32px !important;\r\n            line-height: 40px !important;\r\n        }\r\n\r\n        .wrapper .size-34 {\r\n            font-size: 34px !important;\r\n            line-height: 43px !important;\r\n        }\r\n\r\n        .wrapper .size-36 {\r\n            font-size: 36px !important;\r\n            line-height: 43px !important;\r\n        }\r\n\r\n        .wrapper .size-40 {\r\n            font-size: 40px !important;\r\n            line-height: 47px !important;\r\n        }\r\n\r\n        .wrapper .size-44 {\r\n            font-size: 44px !important;\r\n            line-height: 50px !important;\r\n        }\r\n\r\n        .wrapper .size-48 {\r\n            font-size: 48px !important;\r\n            line-height: 54px !important;\r\n        }\r\n\r\n        .wrapper .size-56 {\r\n            font-size: 56px !important;\r\n            line-height: 60px !important;\r\n        }\r\n\r\n        .wrapper .size-64 {\r\n            font-size: 64px !important;\r\n            line-height: 63px !important;\r\n        }\r\n    }\r\n\r\n    .mso .size-8,\r\n    .ie .size-8 {\r\n        font-size: 8px !important;\r\n        line-height: 14px !important;\r\n    }\r\n\r\n    .mso .size-9,\r\n    .ie .size-9 {\r\n        font-size: 9px !important;\r\n        line-height: 16px !important;\r\n    }\r\n\r\n    .mso .size-10,\r\n    .ie .size-10 {\r\n        font-size: 10px !important;\r\n        line-height: 18px !important;\r\n    }\r\n\r\n    .mso .size-11,\r\n    .ie .size-11 {\r\n        font-size: 11px !important;\r\n        line-height: 19px !important;\r\n    }\r\n\r\n    .mso .size-12,\r\n    .ie .size-12 {\r\n        font-size: 12px !important;\r\n        line-height: 19px !important;\r\n    }\r\n\r\n    .mso .size-13,\r\n    .ie .size-13 {\r\n        font-size: 13px !important;\r\n        line-height: 21px !important;\r\n    }\r\n\r\n    .mso .size-14,\r\n    .ie .size-14 {\r\n        font-size: 14px !important;\r\n        line-height: 21px !important;\r\n    }\r\n\r\n    .mso .size-15,\r\n    .ie .size-15 {\r\n        font-size: 15px !important;\r\n        line-height: 23px !important;\r\n    }\r\n\r\n    .mso .size-16,\r\n    .ie .size-16 {\r\n        font-size: 16px !important;\r\n        line-height: 24px !important;\r\n    }\r\n\r\n    .mso .size-17,\r\n    .ie .size-17 {\r\n        font-size: 17px !important;\r\n        line-height: 26px !important;\r\n    }\r\n\r\n    .mso .size-18,\r\n    .ie .size-18 {\r\n        font-size: 18px !important;\r\n        line-height: 26px !important;\r\n    }\r\n\r\n    .mso .size-20,\r\n    .ie .size-20 {\r\n        font-size: 20px !important;\r\n        line-height: 28px !important;\r\n    }\r\n\r\n    .mso .size-22,\r\n    .ie .size-22 {\r\n        font-size: 22px !important;\r\n        line-height: 31px !important;\r\n    }\r\n\r\n    .mso .size-24,\r\n    .ie .size-24 {\r\n        font-size: 24px !important;\r\n        line-height: 32px !important;\r\n    }\r\n\r\n    .mso .size-26,\r\n    .ie .size-26 {\r\n        font-size: 26px !important;\r\n        line-height: 34px !important;\r\n    }\r\n\r\n    .mso .size-28,\r\n    .ie .size-28 {\r\n        font-size: 28px !important;\r\n        line-height: 36px !important;\r\n    }\r\n\r\n    .mso .size-30,\r\n    .ie .size-30 {\r\n        font-size: 30px !important;\r\n        line-height: 38px !important;\r\n    }\r\n\r\n    .mso .size-32,\r\n    .ie .size-32 {\r\n        font-size: 32px !important;\r\n        line-height: 40px !important;\r\n    }\r\n\r\n    .mso .size-34,\r\n    .ie .size-34 {\r\n        font-size: 34px !important;\r\n        line-height: 43px !important;\r\n    }\r\n\r\n    .mso .size-36,\r\n    .ie .size-36 {\r\n        font-size: 36px !important;\r\n        line-height: 43px !important;\r\n    }\r\n\r\n    .mso .size-40,\r\n    .ie .size-40 {\r\n        font-size: 40px !important;\r\n        line-height: 47px !important;\r\n    }\r\n\r\n    .mso .size-44,\r\n    .ie .size-44 {\r\n        font-size: 44px !important;\r\n        line-height: 50px !important;\r\n    }\r\n\r\n    .mso .size-48,\r\n    .ie .size-48 {\r\n        font-size: 48px !important;\r\n        line-height: 54px !important;\r\n    }\r\n\r\n    .mso .size-56,\r\n    .ie .size-56 {\r\n        font-size: 56px !important;\r\n        line-height: 60px !important;\r\n    }\r\n\r\n    .mso .size-64,\r\n    .ie .size-64 {\r\n        font-size: 64px !important;\r\n        line-height: 63px !important;\r\n    }\r\n\r\n    .footer__share-button p {\r\n        margin: 0;\r\n    }\r\n</style>\r\n\r\n<title></title>\r\n<!--[if !mso]><!-->\r\n<style type=\"text/css\">\r\n    @import url(https://fonts.googleapis.com/css?family=Bitter:400,700,400italic|Cabin:400,700,400italic,700italic|Open+Sans:400italic,700italic,700,400);\r\n</style>\r\n<link href=\"https://fonts.googleapis.com/css?family=Bitter:400,700,400italic|Cabin:400,700,400italic,700italic|Open+Sans:400italic,700italic,700,400\" rel=\"stylesheet\" type=\"text/css\">\r\n<!--<![endif]-->\r\n<style type=\"text/css\">\r\n    body {\r\n        background-color: #f5f7fa\r\n    }\r\n\r\n    .mso h1 {\r\n    }\r\n\r\n    .mso h1 {\r\n        font-family: sans-serif !important\r\n    }\r\n\r\n    .mso h2 {\r\n    }\r\n\r\n    .mso h3 {\r\n    }\r\n\r\n    .mso .column,\r\n    .mso .column__background td {\r\n    }\r\n\r\n    .mso .column,\r\n    .mso .column__background td {\r\n        font-family: sans-serif !important\r\n    }\r\n\r\n    .mso .btn a {\r\n    }\r\n\r\n    .mso .btn a {\r\n        font-family: sans-serif !important\r\n    }\r\n\r\n    .mso .webversion,\r\n    .mso .snippet,\r\n    .mso .layout-email-footer td,\r\n    .mso .footer__share-button p {\r\n    }\r\n\r\n    .mso .webversion,\r\n    .mso .snippet,\r\n    .mso .layout-email-footer td,\r\n    .mso .footer__share-button p {\r\n        font-family: sans-serif !important\r\n    }\r\n\r\n    .mso .logo {\r\n    }\r\n\r\n    .mso .logo {\r\n        font-family: Tahoma, sans-serif !important\r\n    }\r\n\r\n    .logo a:hover,\r\n    .logo a:focus {\r\n        color: #859bb1 !important\r\n    }\r\n\r\n    .mso .layout-has-border {\r\n        border-top: 1px solid #b1c1d8;\r\n        border-bottom: 1px solid #b1c1d8\r\n    }\r\n\r\n    .mso .layout-has-bottom-border {\r\n        border-bottom: 1px solid #b1c1d8\r\n    }\r\n\r\n    .mso .border,\r\n    .ie .border {\r\n        background-color: #b1c1d8\r\n    }\r\n\r\n    @media only screen and (min-width: 620px) {\r\n        .wrapper h1 {\r\n        }\r\n\r\n        .wrapper h1 {\r\n            font-size: 26px !important;\r\n            line-height: 34px !important\r\n        }\r\n\r\n        .wrapper h2 {\r\n        }\r\n\r\n        .wrapper h2 {\r\n            font-size: 20px !important;\r\n            line-height: 28px !important\r\n        }\r\n\r\n        .wrapper h3 {\r\n        }\r\n\r\n        .column p,\r\n        .column ol,\r\n        .column ul {\r\n        }\r\n    }\r\n\r\n    .mso h1,\r\n    .ie h1 {\r\n    }\r\n\r\n    .mso h1,\r\n    .ie h1 {\r\n        font-size: 26px !important;\r\n        line-height: 34px !important\r\n    }\r\n\r\n    .mso h2,\r\n    .ie h2 {\r\n    }\r\n\r\n    .mso h2,\r\n    .ie h2 {\r\n        font-size: 20px !important;\r\n        line-height: 28px !important\r\n    }\r\n\r\n    .mso h3,\r\n    .ie h3 {\r\n    }\r\n\r\n    .mso .layout__inner p,\r\n    .ie .layout__inner p,\r\n    .mso .layout__inner ol,\r\n    .ie .layout__inner ol,\r\n    .mso .layout__inner ul,\r\n    .ie .layout__inner ul {\r\n    }\r\n</style>\r\n<meta name=\"robots\" content=\"noindex,nofollow\">\r\n\r\n<meta property=\"og:title\" content=\"Just One More Step\">\r\n\r\n<link href=\"https://css.createsend1.com/css/social.min.css?h=0ED47CE120160920\" media=\"screen,projection\" rel=\"stylesheet\" type=\"text/css\">\r\n\r\n\r\n<div class=\"wrapper\" style=\"min-width: 320px;background-color: #f5f7fa;\" lang=\"x-wrapper\">\r\n    <div class=\"preheader\" style=\"margin: 0 auto;max-width: 560px;min-width: 280px; width: 280px;\">\r\n        <div style=\"border-collapse: collapse;display: table;width: 100%;\">\r\n            <div class=\"snippet\" style=\"display: table-cell;Float: left;font-size: 12px;line-height: 19px;max-width: 280px;min-width: 140px; width: 140px;padding: 10px 0 5px 0;color: #b9b9b9;\">\r\n            </div>\r\n            <div class=\"webversion\" style=\"display: table-cell;Float: left;font-size: 12px;line-height: 19px;max-width: 280px;min-width: 139px; width: 139px;padding: 10px 0 5px 0;text-align: right;color: #b9b9b9;\">\r\n            </div>\r\n        </div>\r\n\r\n        <div class=\"layout one-col fixed-width\" style=\"margin: 0 auto;max-width: 600px;min-width: 320px; width: 320px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;\">\r\n            <div class=\"layout__inner\" style=\"border-collapse: collapse;display: table;width: 100%;background-color: #c4e5dc;\" lang=\"x-layout__inner\">\r\n                <div class=\"column\" style=\"text-align: left;color: #60666d;font-size: 14px;line-height: 21px;max-width:600px;min-width:320px;\">\r\n                    <div style=\"margin-left: 20px;margin-right: 20px;margin-top: 24px;margin-bottom: 24px;\">\r\n                        <h1 style=\"margin-top: 0;margin-bottom: 0;font-style: normal;font-weight: normal;color: #44a8c7;font-size: 36px;line-height: 43px;font-family: bitter,georgia,serif;text-align: center;\">\r\n                            <img style=\"width: 200px;\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAAwCAYAAABUmTXqAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAAB3RJTUUH5gsOBCMe2Gn2wwAAAAFvck5UAc+id5oAACxkSURBVHja7X15eFRFuv5b53T36SXd2fcQCPsSBGUVFUXBBXdFxnXcddwV0FHn+rvOjHecGXdFx33XGUVccEdBEAERlN0ohCRkTyfp/fTZq35/VHfohIQ06FznzvA+Tx6SQ1WdOnXqq2//DgEA/YqjAUAAIKI7CAATAAUAx7MrkdKeALBhb7BEH6T26YnEGEnY0TuM5Bg92tsS9+8JEwDr654HcRD7CwJ0bdYTAcwH3+BJCAAaAPw3gPoefQcDeBCAJ6UPARAHcB+Ar5INe27YHpt9DoArEvdKvW8jgJsBhHrc9zAAdwLI7DFXA8DtALYeJJCD+LmQygHKAMzso91AAFcBqE655gMwC4C7l/ZjAVwN4DOAE0QP7pPEJQAeAJDTyxh1ABw9rh0O4FkAo3tpTwH89RddzYP4t0PqqU330W4GgFcAVKZc6yZK9UAFgBcBnJ68oF9xdCpxCACuA/AoeicO9DL2cYk5jN5He4aDOIifEcJ+tJ0K4FUAE9NsXwLgGQDn97huA7AAXAzzpjnWqeAEN+SXWqiD+M9EKoGQNNqPAyeSaeAcp78++QAeB3Bl4m8JwP8D8EcArn76EnCOcA64WFWWxvzSeYaDOIi0kaqDxME3ZH+bbAS4qPNnADL65wJZAB4CV6qLwBVvEf0jCmAuODFlp9FeB6D+by7eQfz7I5VAPgTXCW5A/6LXYHDd4Q4AD4Nv/n3BA+BP6N2U3BvqE2PPQXrEEQdwN4CN/5uL96+Oq6/+C9xuJ8LhGASBwOVyglKKxx9f8EtP7f8MUgkkAm4mjQG4DX37JpLQwfUCDcAj4OLUvtDfeEnsBBfJVgI4M432YQC/BfA0DkBJd7uPSasdYwx2uw0jRw7CN988h+nTr8GXX/5tf2/3T0dR0cnIy8tEW1sAr7zyMeLxEObNuzSHMWZ76KGb/ZmZM+F2H4MhQ0px+OFj0dkZxuLF9/7S0/6XhQ3o5ohTAfweXHT6fwCc++ibFMX+Dn6CPwGumP8UbAUnjnU97tEXOgHcAi7yIfksB4CJAC5AHwRGCFBYmMMkyfEVpfQ7ALsJIZg27SqsWfP0T3zknw95eSdCVXWMHz9cWLVq86EOh+MMQohvyZJVh9tsYkZm5swVoihoZWUlO02TrozH1R9VVTd/+p3/fdFtA/Zihv0TgIw++s4HdxQmMQvAU+Am3gPBN+DEsSXl2tPYo+D3REtiju8kLxwIcSQ4yCUAXthXO0EQAMBwu6X64uK8ZysqSh72+4Pqrl2NaGv76AAf+efDlCmXQ9MMtLUFihhjv5dl9UzGaD6lDIxxuieEdP3k5vo2Dhs24LhYTAl+/fWzv/T0/2VhA/Zy3gHcQvUYuPhyP7j4lHq6Eux92n4G4Dxw0+5Y7J+4sxzcEVnT4zrr8W/y3jsBXANgWWrj5HMcAKHs5QMihIAx1vUvpRQA7LGYMqS+vvWeQCDSnJHhenn06EFoa+N9fL7jAACWRbs2JcCJS5K4hNnZ+SkAQJKmw+NxQtOMbm2TiMdXYPLky+B0OrBrVxOCwWjXvCTJBsaAYPAzAMDll/8Pqqrq4PN5yhob/U8qinZyT6IAuJiY/AHw49y5x8krVmxEcfHt2LRpB1pbO7va9gWfz4Oysnwoiobt2/8OADjmmGvh8TixfXstolEZxx8/FaIoYMuWajQ2tmPatLHYvr0GmZkZaGz0Q5ZVEAJIkgO5uT4QQrBz56JexV2324ncXB903URbW2Cfc2OMobg4D6NGDQIhBB98cH/KOMfgQJCqg5QDOBTdN2MEnEvUgjviUlevDjw8JdXbTcFP4mCib3/KvgWgMDHuKOxxRBJwK9aLAD5PmRMFV/gLwT34p/W491pwsesnQRQFbdCg4iVtbYH3MjMzjuroCB1pGOYYSvk0NM0QKZWvz8nxfhIOy/6uh7EoZLmZeDzFnsSzJ62CrLOzXi4qGtxFiIQQxOOqixDBTghvZ5qWceedv1a2b6/FokUrIMsK/P5O2GyiB9y4wRhjhDFojDEtdazVq58WKivPn69p+skpBBfIysr4Kj8/uzoSkQdHIvIIVdUGMwYpHle33nXX0/r48cPhdDoExuBOmXNfIIJALEmyxy3LYgBw8cX3YO3aLdixYxfGjBnuiURkG8AOYYx5GGMb7HZRGzCgQJdlRQsEIiL2RF4QxhizLBonBFbyBozBQQicybWjlFmmSeOWRZPzcib2XG/zJC6XxD788IHo4MFnIS/vBAiCAL//4+T/29C/eyEJBYCZSiAzATyH7qcpARAAV9578uGxAP4BHnKSGoulA3gy0ac/s2sBuJ/kTHQnPgGcSxwOvum79i54XNj8xIOmLpIO4AQAX6a5AH3CsmjA7w/e5vcH6vz+j18bOfJXQ1pbA6/qujE1pc24xsb2UYQQPwDMnj0Pa9duRU7OyHHBYGQhYywZo0YAaMOGVd7c3NzxdbK/YZgYM6bi8rq6lqtM0zIBiJJk3/z22yuvyc31yb/5zV+wZcsu5OT4yquqdj8DfihAEEiYEHITgE3JsVau3Ihx4y7y+f2hmZbVjRk+19i45LYEFyTHHXd9yebN1ROzs70LSkrytsbjKiTJDofDXiQI5MXE+9hXRIWoaUZ1W1vwMlXVwxdeeDe+/bYKmZme8aWlJae1tHTOVFXdt2LFdxWCIEjhsLxTEAhdvXrLphEjyq8Ph2NDCSFPAswBEAgCUSXJfjUhpEusJgS/AnAr+IEsiqJQ43Q6LhUEEko0uQHAr5EIZE0FIYS0tQWswsLZK+12+6elpUVLdV3DhAm3YOXKjQAwGdxS29/BTRP3WdtbNG7PzrngVqoscH+GldKOpPwkIQG4Cdz0Ox+cwHqLxaoA11lm9TFJgu4m4QwA/wPg+pQ59iSqnwssGo3D7XYhO/tU7N7dumvw4NKN9fWtU5MbkFKKeFzruv/QoWX46KPP4HINOhvAET0HtCx6NmPs66FD56C6+i0cccRYeDyuNe3twbtCIbmAEEAQhFEA3t+w4YdFy5c/DkIIDjvs4osMwzw+OY7DYX8jO9tXpSgagkF+raHBD4B1E6cAQBQFJwAUFs7G6NHnsdLS/KbOzvqm00674AtBEGLxuArGGJxOh8NmEw9Bggh7XRAGAAwej8s9eHCpDQCmTTvE/uOP9ddXVzdcZxjWkIQYilAoxl8OIZWUAm1tAf+cOTOMpqb2DEEghwGwMcYgiqLu8bg8gsDnbLfbIAikSNfNsUkuaLeLLq/XLSpKF8McgO4hT2CMG1IAIB5XQQgmKIp2sSiK85Ys+eurixd/QRMEkglgwj5f/J4jN3N/NpUbfHPehb0DCPvCJeCcpAjYKxZrFLjlaVaaY2WDE+mN+zHnnwUnnDAFhmHB53P3lM+77cfPP1+PCRMm5Oi6cSKl3bk/pRSdneHKIUPKPKLIaX7hwvn4+OOHvsvNzXzJZuOPZJqmva0tcE5l5RBx+vRrcOKJNw9rawtcbhjc0ORw2DtzcnyPGIappTJPl0tCRoYLNpvYbW0YY5dlZc16UBSFsUccMZZs3LgDY8YcimAwEmlubqehUBQejwsZGW7YbKLV49ED4P6oBgANbrek8bau7088caq8ZctO3HvvSyfs2tX4B00zuohDFAWDENIoCEKLzSYmF2nL4sUrVJfLSQRB6LqPzSZaXq8bPp+n6zk8HhdNEgwA2O02mpWVgYyMLsmoG4ez222B3FxfvdsttdhsIidjBhiGmWuzCQ/feuvCyd98833XkmDPAQ9BEJggkLbkMxJCmj0eJ/V4nHC7JeZ2S73mc/QFB4DfgesA/4V9s+IkzgEnrmsSkwC4nvMM+qHkBCwAeeAGg3P3Y64/GZRSJkkONDW1o67ubXHq1CtyLWvPHhJFIeL1uiOEEIwbdyXa2gIwDHOSrhujAIAQYni97mAsphRQSkEpmxKPq6N03dhwySV/xAsvfIhjj70edrvtmc7O8JxwWK5gDJBldUZdXcvklpbNa4cPP/yKSESuSLxM5Ob6Fj344I3rnnrqXXz44R4D4tChZRg7dnBs6dJvvg6FoqOTBEop8zBm3hKNKue+9daKd0VReCkjw/3tmjVbzTlzZqChwQ+PxwmPx8mSmysxdwgC+aNpWm8QQmyEAFOnjploWXRAPK6u/uijNerkyWPKv/nm+3sVRctInhJ2u22bz+f5azgcW5md7XVKkuMoRdFmUEoXiaIAp9MBMYWGRVFARoYLyUPD6XTA4bAjEol3bS+bzQafzwPWh2bEGPvTYYeNeC0QiGQ0Nvov8PuDdwCQEjqeb9u2mj6d2Ha7bX1WVsZlLS0dYUIIyc72OsaPH3aEqhoZpmlVEbJ3DkZ/sIGLTfeDi17pxD6dDOBlAEOxJ+AxHeIg4GLYc0iPOJIi30+G3W4TDz10eFY43ICRIweJEydeerIsK8enviSXS1o/fPjAraWlBWCMoaZmMWIx5STLsjyMAW631F5QkH0nIVzEZIxma5p+UkPDevh8Hjz00M049NDh+PTThTuzsrzPJzcJpTSPUnrNlCnHT+rsDF/ILWKAx+PcNWJE+ROPPrqIalp38VvTdKxdu83Mz8+6z+VyrkvldIwBlmUV67pxjaYZH+3YUf+s3W4b+vjjt5Li4lxIkh0TJoxo8fuDq5P9BIHA63X7nU5Hi8Nhb5DlFQ2zZk3+4pNPHn6UUvZtfX0bvv++boqiaJXJPoSQsCgK18ZiyiuMoV7TjB2yrDx36aWzL2lvD6wbNqwMbreUNJfzzWQTkZHh7uIOTqcj0YZ0zd1uF+HzeeDx9O6SM02rc/3671tbWzurDcNabLfb9NRn54cT7aOv2VRb+/Z2h8Pe6HJJDXV17+yePXvaexs2VD1hWVa9omjdOMgm8HyPoWls3OsBtIJ7u09JY88dA+BN8Lit/sZP4nNwMe20NNt/g73NxP0ieaKl+gsA5HV2Rl72+cqWvvTSRyWWZZ1oWTQr+Z8Oh93v8bj+smLFm/qNN96BNWu2YsKES4pqa5tnMQYIAiBJjjWDB5d+1t4e8odCsRxKGSils0866VePbNhQFQGA5uYOHHXUFbDbbS8Fg9FzIxF5DADE4+qpNTVNo1VVL0nM0QBw90cfrdnK2Nd7mWK3bHkVI0bMBWPsh7y8zAvb29n1pmldrutGNx8WpTRH0/SL7XZx+rRpV96oacYHRx55CG688WE9HI61pZqDYzHlfNO0KhljpKDgpJwXXvjwiOOOu/6u+vq2d3buXIGSkikFSdGPMYa8vCx17NghTbpuoKamCbt2LQZjDNOnX2NmZfngdrtgmla3zS+KIsnIcBGbjR8OkuSAy+VEDxELPp8Hus4PBULQk5vQcFhGKCTD43EWmqbVtadFUVDcbmcMAGIxpWuuKWMfk5NzwpOKogUNw8SQIWcPycnJzB4ypHSuLCvBjRtf7sY1NgC4CMC2NPdWHMDlAN5Ls/2hSI84GLhlaz7SD09ZDm7ZaEizfRfcbifcble3l2IYptjQ0HaIaVoLdN0437JoV86K1+sODRlS+teamsUrzj33N2hs9KOurhkdHeFppmkNB7hs6/E4P3j33RfqCcFqQSBgDNA0ozIeVyeJoohjj70Of//7H3DccZOwfPm6Bp/P87QocjHHsmiWLKsTki/T43GuGDiw6L1RowZhwIDTe32OH398E9FoHIqiV5911jHzy8sLz8nLy1zkcklhbsXa0zYWUyqqqnbPk2Ul6/33VyMUioKkUB2lDKZpnQzgDkLI7bGYctXOnQ3DNm3aGWhs9GP58o9txcV5J6cSamZmBhk7dgiprByMXbsWA+Ci2qpVT8Lv/xgulwSn0wFBELqUasMw/ZLk6HS7OXdIcpA982Ww223E63UTt5tzGYfD0fOAmALgDJtNuMg0rfsYY13Kis0mvl1amr8hN9cHl0uCy9Wdg6mqnq2q2tWE4HZCyO0dHeFzamubB7W0dIpNTe18jB7r/DWAC8FNuv3lfRAAfnBPt4y98z4OBCa43+VucDt0OiLTB+A6TuOB3NDtdoIQAlXVkGoiTX0JDofNYAx1TqdjeXFx7osvvXTX+ksvvQfBYASffvoIGGOkuPiU05Onl91uq8nO9n5ZUjIZRUW566PR+KWMMUFV9Ywff6wf1dravmzChJEAgKqqWkydOh4Oh+3v4XDswmg0Pil1fi6XpBYV5S5sbw9Fa2s/Qm+W8+OPvwkAPx1VVcf339daum588utfz16+bNmGKa2tHVdEIvHzFEXrOnAopUeqqj4DKZEI/cBSFE0VRRGqqhFRFLoZa+JxhdXVtUDvI3LFNC1YlpVwvvL17egIbXv55Y+qR40aCKAnB+EWcsZYKDvba0QiMgghcLkcMAwjleCvBXCNZVGSfH+EEMYYe90wzFt/+GG3VlSUA6/XDcYYDMPsU+QCgNzcTDp+/HBEozI+++zjPbFYQJcJdjM4kTwD4Kg0Fq4dPOQjDp5bfqDQwENb/gzu00gHb4Bbtvypz7E/cDhse5lH3W5nkDF2dzyu+kVRFEpL8+OUsnXnnHNc25Ilq+hbb32BnBwfXnzxLowf/2uMG3dRhaYZ05P9VVX3bNmy638A0FAolguucQqMMZimders2Uc8I0mS9u23wBtv3IPy8jMQDsfa8/OznlAU7ZlUMcHlkl4488yjl1ZXN6K29u1enyHBaeyMYbzX6962e3eLMnBgMVpbO3VdN1b9/vdXrrv//tdra2qa76SU2gHANC17Z2fYt/dYgNstITvb97fGxrYVgiCI2FO8oxoAZs8+whg+fO4KxthxAN/sfn9I+Pzz9YLT6cAhh1yILVtexZw5d8CyKKLROCKRWJJIuhZaEIg4ceIocvjhYxNcXOh6H3xcoKam+bObb74yvGDBn0AI4HRKiEaTmRldpkTCGO0iGqfTIQ8bNuC5QCDiN00LNTWLUVl5ARhjiERk6HqXWXgduF8kYf1ixONxRSoqiqOdnWEA6NOK9SO4yPIkuPOtP4TA8zxi4A6WdELaU5EMjnwEKWa4fYCBe+wXgHvtDzRIMRHCQdDDQqVUVJQs3rWrqUlRVFDKYBgWPv54DZxOB+6+m58DJ510C77+ejsyMz1HG4ZZnjJsEXjYzV6wLDqxsbF9LCHYkLxWX/8upk69AvG4+i5juBbAJABwOOxxQSAvvPHG52pl5eA+n2Hr1l0A4GGMPQFga1FR7pOjR1d899hjb5oOhx3z5z+m+3zurwiBhoTYKkl2q7y8SGaMobo6lfkyOBx2TJgw4kvG6JuNje3QtAg4jSgYMqQSBQVnIxqNbxFF0bQsTsyWZeXa7c55I0aU/3bZsi8iAPDWW1/gsstOccmy4rbZbJ2UMpVSpgJwMAa4XNIEy6KTXnrpo7XBYATxeAhjxozO0DSji0h03dAyMiYlDgECh6P7lnU6HUs9HtdmWVamqqp2VEKUzWhqar9m3Lhh37W2doYt6ww4nQ5QShMiVlfaU61lWa+Looh4PAZAx+7dNjzwwIsAOgAM7k4gPcrr1IEryU9hH4pySh8Z3HseBw+XT9eEHAPf6F3h6r2U+UkFA48c/m3ingdMHMAe5S0VqqqjoaHNbrOJiMW+QFVV730ppZgz5xjHe++tOplSKgBdMVw6sFd1GDsAGIaZY1n0xO3b126YNu1KrFnzDADg669XAsiV3W5ntKuTIMDtdhIAWLToT30+w6BBxRAEMraqqm6orpsT6+vbTn399U9XDBxYvLyx0b9FFIXBgUDkBkppl9IuiuK67GzviqQ3PWkZS4qb69dXjW1s9Nfn5WVmDRs25gRF0d2xWJzYbOLaW2+94IU///nlVfG4utayuqQMQZbVqzdt2lkxceLkuqysY4Wamma2ZMlXZV6va1tra+C3hYU52yIR+TtCyDEAoChaXnV1wwOyrN5js4lyZeXo45ubOy5JKv+CIMDn8zDDMPDAAzfC45mBWEzppmgrivY6pfSlkpL8I5ub25dompFNKUU4HJuzadOOdT5fxgOFhTno7AyDMS7qJYnP7XYe6nQ6zujsDAeOPHLCdELIoFgsTmU5l1I6+DFCyPb98YP8x8AwzC5vcF847bRbsXXrLuze3TZU180jk9d9Ps9nhmH+OR5XTQCEUmrm5mYeI8vqPbpugFKKlpaOQ88770KxpaWzi2253aXJX7tEEF3X0dq67wA9AKitbQaAQaZpZTHGoGl6nqbpc2Ix5WxRFPRoNG5njHVppxkZruiAAYWPdHZGOmbMOAzr1j2HrKxZzuTG1DQDra2dt9ls4vxwOCZs3LjDzhgX5QoLcwqamtpfsywazMryPhwKRccZhukDANO0iGlaJ/z4424QQkApBSEERUU5zVu2fIuSkqFxQRDeEAR6NKWMUMoQCsUOB/AuAFpX1yql6gd2u21rUVHOO4FABO3t/P6hUBQ9HLECpQyXXXbq2kce+cdiXY9ckRBlSSQi/5fP5/F/883GV7xenneXOr6iaCMURVtECLE2b94pJQNTE/T3LoDt3XwfPU7tQeDBgvs0s6b08YDrD79F+twD4CEkD4DndYi9zKMnCLhi9igS2Yb9tE8HPX1A9pSo1z7R3h6ELCuzTdMqBLoCEJfH4+py8JiwlSUl+asPPXT4IkEgzcl+lkWPWrNm6/Duok0XutaOUmbTdYMkTZx9QZZVxONqgBAip+pSlFLCGJOSxCGKInM6HV/m52dfcN55sxZXVBRBllXcdNNDZUVFuTN7PK8NgMQY7EkFO0Hc6//4xxdUShkqKyveycryXudySVWCQLrCPSyLwjStro0sSY513MLP4PE4X3W7XY9Jkj1Vz7QDkDhBcc6RmenZMWbMoHtcLml7cXFuyjOxnuK7YBgmXn/9U6u4OO9vLpfUkvL8Wc3NHbf6fDkllFJYFhUY2yP+J96xDYCUnLNlUdhsIgoLs1FUlNPnRh6B9JV0gMdp3YcDV9KTKbkZSE9JJwAuS/S7EYA/tfbWAWAXeOJXcuwAEuLbvnDjjXPtr776iUUpfQMAtdlEobg4b7um6V0KdU3NIaipqa1zuXzPEYLhACil1MrK8ua1tu4VeEwBfAqgOfG7Bi4M7xPl5QWQJMeyYDB6kiTZj21vD41UFM3Kzc0c4XDYstvaghskyR5xuaRPhgwpWxuNxlu++mozZFmF3R6FoqiaZVkfgx84+zoVBABbGWPQdQNtbUG2e/cHrw4adMrynBzfnFAoOjUWU2hGhrvANC1VVbWo1+vRCcEXU6aMRUODH3l5WbHKyiF3bNhQtaSzMzwrHlfLJcnusdtt7mg03paR4RYLCrK/EQRh0VdfPd3417++gttuuyh1DuvBfWpW4l1VA8DZZ8/AnXde/F1W1qzfIOFYLi7Oo4SQz6urG6MulwSANQF4DftwijPG4HJJ1tChZc2iKHarrJjEOKRn5k0mTOWD56X/M8y8+0qYSmIvM+/+EEp/eQLx+Iper5922q2glMHrdZEPP1zDKGWIxXYB2L3P8QVBQCy2HGeddTvJyfGxZ5+98yfNAwAqK8+H0+lAR0cYdXUfAtAxa9aNGDGiPJ8x5p4z59j6GTNmsby8yRg5ciAKCnKwbNl6hMOfY926H5Gbm4l58x7Cp5+u7RYK0t98Zs68ASNHDsRHH61FTc1WADtwyikLMGZMhUcUBXP9+irts88e3WvdAOCHH3Zjx45vcfTRx2P69PEO07Qc27bVxN5//34AFTjkkCNw++0XYc2arVi4cEG/a3TOOceitrYFVVW1kGUehKkoKwEMRUHBMKiqDtPs3/7D389u8DMTexHIVHDOUdnvSMA8cGp8GikF4n4GpCrhD4InUvWHZMLVLuCnKe3/Lrj66j8nYpwYXC4ndN3AY4/N/6ffd/787gTxwAM37rP9rbc+1u3v++674X99rfaFVAKZCC5mpBsK8l/gBJVOqAnAK47sT6jJU+Ac5bo0268BZ60NBwnkIH4upPLT8Ug/FGQhgNUA0tWOV4DXuLoIwPdp9pkJbiRYkmb7yeDliA7iIH42pFubNwkT3OK0ADy1NZ288w/BnY7V2BPK8m0a/Rh4qu/l4JmL/YGmOZ+DOIi0sT/JRzp40tTvwK0r6fRdBG7ZSg0i3AjOSVan0V8Et+JcC+D5X3qxDuI/D+kSSBycMP6I9OOkXgTwG/CweDieXZmqPFeBE8lnaY4VBE/jfRTpcbqDOIifBb35QdIt2pAUaZI/yfa9Fm3oxZlXCy5u9VW0oVt6JHhIyjzwUkS9FW3YL8JJNRnG4wEMHTocjDGUlRXAZhOxbNnCf/ba/6wYPnwunE4JXq8bp556BOrqWpEaFf63v92W9nrsWZcVv/Rj/eJIJZDPAZyBvWOIRoKX4Dkbe5f9ORd7l/0ZBn7iz0Z6ZX+WgZtp67EnyDFZ9mc4eFX31LI/O8Erm/zYYz4UwPZ0H1xRNBBCbACkk0+eKQcCEdLZGckEEAdIulzyXwaGYcJmE10AkyyLhisqitltt11IHnjg7yLA+q2emAgzIeDO2jjSCxr9t0cqgdRj78+s/Rr81O6tcNw88ConqZgC7hH/uQrHPZW4nlbhuP3BpEmjQCkrbW3tvKe1NXBfU1O7CeCWvLysPwiC0CCK03DhhbOxbNl6xGJxhEL7lgbLy8+Aw2HDtdeejZtv/hUEQcCCBY9i27YarFq1GbHYcgwdOgednWGEQp3IzMzFWWcdjfPOOx5nn30HIpFlOOWUBfjww6UAtkKSpsPpdCAc3gyeUdAdPK/iUIwbNxabN7+CAQMK4HA4TjJNs3DmzElPnXHGbWzRomVnWBZVnU7p4xtuuB+PPbYAQBEEoQKUru02XkVFCcAPu2sAvCIIQktr6yzceuv5GDduGH71q7vgdDq6Ct+Vlp4KQSBoaemEYXwFSZqOnBwfWlreBCGePtepqOgUtLS8z19kgsV5vTPgcjnh929FeflhCAZjiEY3orJyNrZt2wzGtoKQCkyefBwCgSiqq98EP3spgFEYPHg0OjvDGDOmAvX1bWhsXILS0tPQ1NSA7Ow8CIKAjo5P4PEcg4EDi1FVVQPgG4wbdxG2bt0FSmXwLI/J4HaoLSgvPxUul+M/t/To1Vf/BU8+eRspLz/jBrfbOduyLDMUir3uckmvl5bmQ9OMyYZhXm+ziSwry/uozSZ8u2VLtVMUxeskyf5qcXHeXK/XzZYu/XRhfv6gYR6P+yJdN36IRGJLRVHsCIc/x4IFj0KS7MI//vH5mQ6Hfbam6WsCgeiLY8ZUWIyxsZSyWxhjDkmyP+VySavsdhFNTZ1zOzqCs2VZXanr5mtut1MnBOcCaLYsut7jcV3ncknPu1xSLBaLzxdFMZSVlWFfu/aZR48++trzTdPMXbPmmcfmzv3d6NWrt7xomlY8Ly/rKllWdlgWvcCyaM2QIaU/NDe3X62q+uOCIEQbGt5DWdlpAC/KdieAp9vago0DBxYOF0XxWkqpFo+rjxJCmhoblyQI6ky43U6PZdEbABwSDEafu/DC45f5fF7xk0++vtPtdu7aurV6LSHkFACPE0IogCuLinIr2tuD3+bnZy3etImXVM7ImIHy8qIiVdXn6bqRJYrik7t37/6uvLxczM31XatpxlE+n+cHl8v5ly++WCgff/xNt+ze3VIQj6sugKxvaHjvtYEDz0Bxcd7Imprm830+d0lxcd6Tum5s2Lq12j5gQOFlXq/n2HA49lZ+fubipqYOquvGlRkZbqm9PViVk5O5TJLs46PR+KmWZcUyMzMGuVzSnwzDausSgVKIww7uxf7rPoijJ04HV8oPlDgATr6vgnOhdFAM7vXvCtTZn6BFwzAxbdpVbMCAwpcURfXIsuIYO3bIkuLiXGRkOF3RqHznb35z5kVz5x73a78/cOeZZx7tDAQitlgsfqwsKxmKok1XFG06EEMspuRHIvLpgkDaYrF4JBnSQAjQ0RHOliTHfI/HZc/O9tmnTBnjmj17ms3vD946enTFpZMmjb6grq7lsk8+eRiNje2DZVm53uNxfWyaliZJ9iJF0RCLKYfFYsrQjo6QTZaVY+Nx1S3Liqiq2lyfz32GzSauzMyciVgsPthut1321FPvuIuK8nbEYspmy7JWl5bmNxmGCcMwo6IoXCHL6pmUsokVFSVmQQGPcg0EIggEImIgEDk0EIh4DGMzvF7PXEmyH+vzedorKkoKKipKMGjQGQB4xG9nZ+TcQw4Zdu/99994XklJ3uMPPPBK6emnH8UURTtBVbWJ0Wg8NxZTjo7FFBKLKYjFlKPC4ViWomjreS0vjlgsgEhEnmcYpqOwMGdtZqZnDPAd7HZxcna29/cPPnjTOXl5mXfGYvHTACAeV4+LxZRDQiH5m2Awcp7TebSzru4d0t4eusXlcuiyrC7bvbs1u66uBYIgzMjNzXz49NOnz3W5pMd37Wqu1DQD0ahyhCyroyllOwzDRDQaL5Ekx01FRbnBSEQ+vKam+bCmpnauI6RsLCe4fP977LuyO7BH7EnW4/2pld0BLpq9gj0OyP7EtFzwkkBXA73GlfWJ55//Herr27BmzXfhWEx5MxyWN6xbtz0migKiUcUtiuKAYcPKMHhwCURRGFBX1+I0TV5z1+FwSIZhCowxygmBEFXVtg8eXLqMEEFPRsWGQjIAGF6ve5Gqaq2yrPyKMXborl1NNkEQKtau3fr2V19t/u+sLO/OJ598x8EYy9M0vb2srOBzm03c4HY71WSuPCEQJ00aXSKKgptSxhRFY3a7HaWl+assy9pcVlYAxsAIIUTXDfLGG5+ZhmF2aJqxe+nSV2Sez16w1uGwDwoEItdFo/JT27fXKt9/X9vbe2XASOTnZ24yTevteFw9WteNs7/88m+YPJlHIcXjGmKxeE5Ojhfjxg2F2+0sAIhr3LhhjDFmaJohulySEwDjkb0UlFK9paVziaYZ9araPZg3HldzCSHbJMn+hmGY3wIAYyjJyHB7x40biszMDFEUhfLEWjCfz9NCKd1AKTMNw8D9979mF0WSnZ3trfH5PF8oirZT03QAJGfHjoav33vvyxvC4dirNpuoJuZjBAKRDyyLNoiiAMuiyMrKsObMmbEyEIhsMAxT1DS9mxLtA4+kvQPpFUtwgCdU/Q39fxsE4KUi01H8hoGXCToR6WUmZoKLevOQflE7AMCsWZPg8XihKFo7eC1huN0u1NW1dMqy8vj997/e9PTT7zVqmvH4889/EJIkm+5w2Gu9Xve94Fa01gQN6wCCGzZUCYyt7Wb90XWTBoNRyemUBrrdTsHjcZKqqlqVMfaYZVGPaZoTGWOtr7/+qR4IRL4jhFQ3NLS9WFZW8PCYMRWlgweXIDvbuy072zeXMfbfoijojDEzkdvtFwQSkyRHMs8hCsAPECaKAggh32dn+846/PCzxsRicQQC0fb29uAbiqLS4cMHfltRUZwI6OtGHJ0ATKARfn/IFARhkMsluTweXgvB5eJL7PE4kZ3tW7Jmzdbl119/f0swGH3nhBOODBFyGAuFYgvb2gKVhYU5Zzgc9p2aJidF+ZAgEJ0xBln+IuW2Anw+z8uSZJ/j9wefj0bjYwEgGIx8tnNnw7vXXntfe1VV3epQKJqIuCad4NZMCiAgSQ689tpSXZIcSxVFu0QQyIu5ub6JubmZsNttXwoC+S4Wix8uCEL7sGEDmp1OBwAEk3NJnGcqY6xFllUGkAgSFtjUU/c88ODDdAol1IAT0x+QqJzYD2TwCN39+QTbJnDTcrqfYIuBh6esO4BoXi+4wSI4YcJIZGd7kZmZYX/nnZUlGRkudtVVpze3twfNDz5YDafT4VVVo7CgIDvsdkt01ar3O93u4c7EGO2pxHHllfeivr4N3333o5tSWjpq1CBl4cL5TS+++CHz+Tzim28uGxCNxoURIwY22myiHgrF4PN5PNu27SoePXqQsmzZwuaLL/4jMwzDvmbNtjKAabKsmG63q5NSSiXJXjxu3LB4IBAJtbZ2wuVyZmVmetxnnz2j5YknFjNZVu3RaLzUNE2/yyXF8/OzTw8Go6dblvVxW1tgEQ9u6EhdBwJenzdQVJRj1NS8jYKCk8p9Po9j9uxpzZGIHH/77RWIRJZhzJjzoao6YrF4Tltbuy8/P6+5vX2XfsIJs/HJJw8hJ+f4AYJAYqpqGJRSmRDCwIsAygCU1HX68svvcMkl98AwrGJV1Z2WRXcPHz6A7thRj8GDS7M2bKjKOfzwyujatc+2J0oJFXZ0hKz6+rYwYywbQPvFF89mZWUF9tde+3SAqmr0hBOmNjLGzCVLVsHlkjLDYbmAMdpUXl4U37jxe7jdGXng1rp4fn42dN1wFRfn5p944tSWBx/8h08QiAIgnmrFcqdJHD+C52JEwfMx+kMIPAX3GfC6vXFwHae/094LHvfvB4/9KuinvQP9i4V9oSvNddWqJ3HyyfMRDEaN7GzvbpfLgYaGtq5EGsuiUcZYlFKaWllDRS/lRp555g4MGTIHXq87HghEdlLKsHTpNwiFYgiHYxZjqOOfM3BAEAicTgdM05QZY9WWRfHqq58iEAhD102DMVabrAaSguYetwwlfpKlewxKaZ1pWigqykVhYU5tdrb3udbWwBpZVhGL7ZVqwgC0Aby+7rhxF6G5ub2eh/IrEEUBkQg3HG7f/jqczqNRVpYf0PWsgM0moqRkBDZv3pksTdRgGMkqJl1z7jW3Zd68xzBz5hQsXfp1C2MMubmZ8PuDyMnxQRSFUF5eVihZOyuBtpTf/QCg6yaamtoNxlgNY0BHRwimacFmE8EYC1NKwy6XhPb2ENzujN7momCPFbcrUSeVg1wGXsVwX9gMHjqyATxv5Etw0awvtINzjNdTrtnAxaG7se9S9NXgRaD94J+BfgL7/tKtDm5J+/JgNO/eGD/+IpSU5ENRVOze3YbW1s6DjsA0sD+psV+Dm1zTLSzXDB5D1bOwnAleulQGcC/S+1b6++Cc5ykc/Fb6AWHTplewadMvPYv/e0i3Nu8X2LvqIkHfBFYLrsB3EUePWCwKHmJyIxKfR+gFPcdehn2Hy9tw8DvpB/EzI3UTNqL715wATjQN4Kbfnl72CHiwoQfdY7Hi4PnpXyUbpoo8PUr6vAiuXF+BvYm1EXsHRq4FJ5I7wa1XqXM10DexHcRBHBBSdZDevmGerKhHgb0qMPbFQViiD1L79EQPf0VfZmUjOUaP9n1xCxMAO6iDHMTPhf8P/Itcf9Ip2+AAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjItMTEtMTRUMDQ6MzU6MzArMDA6MDDyI1OYAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIyLTExLTE0VDA0OjM1OjMwKzAwOjAwg37rJAAAAABJRU5ErkJggg==\" data-filename=\"imageedit_76_3542310111.png\"></h1>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n\r\n            <div class=\"layout one-col fixed-width\" style=\"margin: 0 auto;max-width: 600px;min-width: 320px;overflow-wrap: break-word;word-wrap: break-word;word-break: break-word;\">\r\n                <div class=\"layout__inner\" style=\"border-collapse: collapse;display: table;width: 100%;background-color: #ffffff;\" lang=\"x-layout__inner\">\r\n                    <div class=\"column\" style=\"text-align: left; background: rgb(237, 241, 235); line-height: 21px; max-width: 600px; min-width: 320px; width: 320px;\">\r\n\r\n                        <div style=\"color: rgb(96, 102, 109); font-size: 14px; margin-left: 20px; margin-right: 20px; margin-top: 24px;\">\r\n                            <div style=\"line-height:10px;font-size:1px\">&nbsp;</div>\r\n                        </div>\r\n\r\n                        <div style=\"margin-left: 20px; margin-right: 20px;\">\r\n\r\n                            <p style=\"color: rgb(96, 102, 109); font-size: 14px; margin-top: 16px; margin-bottom: 0px;\"><strong>Hello [[name]],</strong></p>\r\n                            <p style=\"color: rgb(96, 102, 109); font-size: 14px; margin-top: 20px; margin-bottom: 20px;\"><strong>[[message]]</strong></p>\r\n                            <p style=\"margin-top: 20px; margin-bottom: 20px;\"><strong style=\"color: rgb(96, 102, 109); font-size: 14px;\">Sincerely,<br>Team&nbsp;</strong><font color=\"#60666d\"><b>Pay Secure</b></font></p>\r\n                        </div>\r\n\r\n                    </div>\r\n                </div>\r\n            </div>\r\n\r\n            <div class=\"layout__inner\" style=\"border-collapse: collapse;display: table;width: 100%;background-color: #2c3262; margin-bottom: 20px\" lang=\"x-layout__inner\">\r\n                <div class=\"column\" style=\"text-align: left;color: #60666d;font-size: 14px;line-height: 21px;max-width:600px;min-width:320px;\">\r\n                    <div style=\"margin-top: 5px;margin-bottom: 5px;\">\r\n                        <p style=\"margin-top: 0;margin-bottom: 0;font-style: normal;font-weight: normal;color: #ffffff;font-size: 16px;line-height: 35px;font-family: bitter,georgia,serif;text-align: center;\">\r\n                            2022 ©  All Right Reserved</p>\r\n                    </div>\r\n                </div>\r\n            </div>\r\n\r\n        </div>\r\n\r\n\r\n        <div style=\"border-collapse: collapse;display: table;width: 100%;\">\r\n            <div class=\"snippet\" style=\"display: table-cell;Float: left;font-size: 12px;line-height: 19px;max-width: 280px;min-width: 140px; width: 140px;padding: 10px 0 5px 0;color: #b9b9b9;\">\r\n            </div>\r\n            <div class=\"webversion\" style=\"display: table-cell;Float: left;font-size: 12px;line-height: 19px;max-width: 280px;min-width: 139px; width: 139px;padding: 10px 0 5px 0;text-align: right;color: #b9b9b9;\">\r\n            </div>\r\n        </div>\r\n    </div>\r\n</div>', 0, 1, 0, 0, 0, '58dd135ef7bbaa72709c3470/default', 0, 0, '1983831301869331', '1983831301869331', 0, 0, 'G-TFQZ8YZ468', 0, 1, 1, '2021-03-15 00:26:24', '2023-07-19 07:08:11', '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', 'gpt-3.5-turbo', 230, 365, 'afc7b8d64ede419c949c96e47ed89895', 'southeastasia', 'main-cedar-391910-e05ed3fd0595', 0, '85b9a63be2b04c339d6481895d36ccb8', 'https://bugfinder-sentiment-analysis.cognitiveservices.azure.com/', 'main-cedar-391910-e05ed3fd0595', 'main-cedar-391910', 0, 1, 1, 1, 1, 1, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `chats`
--

CREATE TABLE `chats` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sub_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `chat_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `driver` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `prompt` longtext 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 `chats`
--

INSERT INTO `chats` (`id`, `name`, `sub_name`, `chat_code`, `logo`, `driver`, `status`, `prompt`, `type`, `created_at`, `updated_at`) VALUES
(1, 'Ethan Anderson', 'Travel Guide', 'OBADW', 'chatBot/1.jpg', 'local', 1, 'I want you to act as a travel guide. I will write you my location and you will suggest a place to visit near my location. In some cases, I will also give you the type of places I will visit. You will also suggest me places of similar type that are close to my first location.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(2, 'William Morgan', 'Motivational Coach', 'IUSJH', 'chatBot/2.jpg', 'local', 1, 'I want you to act as a motivational coach. I will provide you with some information about someone\'s goals and challenges, and it will be your job to come up with strategies that can help this person achieve their goals. This could involve providing positive affirmations, giving helpful advice or suggesting activities they can do to reach their end goal>', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(3, 'Michael Ramirez', 'Stand-up Comedian', 'PZVCI', 'chatBot/3.jpg', 'local', 1, 'I want you to act as a stand-up comedian. I will provide you with some topics related to current events and you will use your wit, creativity, and observational skills to create a routine based on those topics. You should also be sure to incorporate personal anecdotes or experiences into the routine in order to make it more relatable and engaging for the audience.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(4, 'Lily Martin', 'Screenwriter', 'AWYHR', 'chatBot/4.jpg', 'local', 1, 'I want you to act as a screenwriter. You will develop an engaging and creative script for either a feature length film, or a Web Series that can captivate its viewers. Start with coming up with interesting characters, the setting of the story, dialogues between the characters etc. Once your character development is complete - create an exciting storyline filled with twists and turns that keeps the viewers in suspense until the end.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(5, 'Benjamin Mitchell', 'Relationship Coach', 'RRCZU', 'chatBot/5.jpg', 'local', 1, 'I want you to act as a relationship coach. I will provide some details about the two people involved in a conflict, and it will be your job to come up with suggestions on how they can work through the issues that are separating them. This could include advice on communication techniques or different strategies for improving their understanding of one another\'s perspectives.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(6, 'Olivia Thompson', 'Life Coach', 'SFOBQ', 'chatBot/6.jpg', 'local', 1, 'I want you to act as a life coach. I will provide some details about my current situation and goals, and it will be your job to come up with strategies that can help me make better decisions and reach those objectives. This could involve offering advice on various topics, such as creating plans for achieving success or dealing with difficult emotions.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(7, 'Ava Martinez', 'Personal Trainer', 'SWIGE', 'chatBot/7.jpg', 'local', 1, 'I want you to act as a personal trainer. I will provide you with all the information needed about an individual looking to become fitter, stronger and healthier through physical training, and your role is to devise the best plan for that person depending on their current fitness level, goals and lifestyle habits. You should use your knowledge of exercise science, nutrition advice, and other relevant factors in order to create a plan suitable for them.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(8, 'Sophia Rodriguez', 'Financial Analyst', 'SALIR', 'chatBot/8.jpg', 'local', 1, 'Want assistance provided by qualified individuals enabled with experience on understanding charts using technical analysis tools while interpreting macroeconomic environment prevailing across world consequently assisting customers acquire long term advantages requires clear verdicts therefore seeking same through informed predictions written down precisely!', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(9, 'Mia Hernandez', 'Job Interviewer', 'GUEKW', 'chatBot/9.jpg', 'local', 1, 'I want you to act as an interviewer. I will be the candidate and you will ask me the interview questions for the `position` position. I want you to only reply as the interviewer. Do not write all the conservation at once. I want you to only do the interview with me. Ask me the questions and wait for my answers. Do not write explanations. Ask me the questions one by one like an interviewer does and wait for my answers.', 'original', '2023-05-21 14:25:23', '2023-06-06 02:01:53'),
(10, 'Daniel Cooper', 'English Translator and Improver', 'XTBWS', 'chatBot/10.jpg', 'local', 1, 'I want you to act as an English translator, spelling corrector and improver. I will speak to you in any language and you will detect the language, translate it and answer in the corrected and improved version of my text, in English. I want you to replace my simplified A0-level words and sentences with more beautiful and elegant, upper level English words and sentences. Keep the meaning same, but make them more literary. I want you to only reply the correction, the improvements and nothing else, do not write explanations.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(11, 'Michael Ramirez', 'Investment Manager', 'KKMZN', 'chatBot/11.jpg', 'local', 1, 'Seeking guidance from experienced staff with expertise on financial markets , incorporating factors such as inflation rate or return estimates along with tracking stock prices over lengthy period ultimately helping customer understand sector then suggesting safest possible options available where he/she can allocate funds depending upon their requirement & interests !', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(12, 'Matthew Evans', 'Tech Reviewer', 'KGEWX', 'chatBot/12.jpg', 'local', 1, 'I want you to act as a tech reviewer. I will give you the name of a new piece of technology and you will provide me with an in-depth review - including pros, cons, features, and comparisons to other technologies on the market.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(13, 'Charlotte Davis', 'Journalist', 'FWJNV', 'chatBot/13.jpg', 'local', 1, 'I want you to act as a journalist. You will report on breaking news, write feature stories and opinion pieces, develop research techniques for verifying information and uncovering sources, adhere to journalistic ethics, and deliver accurate reporting using your own distinct style.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(14, 'Joseph Bennett', 'Legal Advisor', 'LYGYU', 'chatBot/14.jpg', 'local', 1, 'I want you to act as my legal advisor. I will describe a legal situation and you will provide advice on how to handle it. You should only reply with your advice, and nothing else. Do not write explanations.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(15, 'Harper Anderson', 'Talent Coach', 'NBQSK', 'chatBot/15.jpg', 'local', 1, 'I want you to act as a Talent Coach for interviews. I will give you a job title and you will suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answer.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(16, 'Evelyn Taylor', 'Drunk Person', 'AYHPP', 'chatBot/16.jpg', 'local', 1, 'I want you to act as a drunk person. You will only answer like a very drunk person texting and nothing else. Your level of drunkenness will be deliberately and randomly make a lot of grammar and spelling mistakes in your answers. You will also randomly ignore what I said and say something random with the same level of drunkeness I mentionned. Do not write explanations on replies. My first sentence is \"how are you?\"', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(17, 'Samuel Foster', 'Friend', 'YKUMB', 'chatBot/17.jpg', 'local', 1, 'I want you to act as my friend. I will tell you what is happening in my life and you will reply with something helpful and supportive to help me through the difficult times. Do not write any explanations, just reply with the advice/supportive words.', 'original', '2023-05-21 14:25:23', '2023-06-06 02:06:07'),
(18, 'David Collins', 'Advertiser', 'EZQNH', 'chatBot/18.jpg', 'local', 1, 'I want you to act as an advertiser. You will create a campaign to promote a product or service of your choice. You will choose a target audience, develop key messages and slogans, select the media channels for promotion, and decide on any additional activities needed to reach your goals.', 'original', '2023-05-21 14:25:23', '2023-06-06 02:06:10'),
(19, 'Henry Peterson', 'Storyteller', 'CEBFK', 'chatBot/19.jpg', 'local', 1, 'I want you to act as a storyteller. You will come up with entertaining stories that are engaging, imaginative and captivating for the audience. It can be fairy tales, educational stories or any other type of stories which has the potential to capture people\'s attention and imagination. Depending on the target audience, you may choose specific themes or topics for your storytelling session e.g., if it is children then you can talk about animals; If it is  adults then history-based tales might engage them better etc.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(20, 'Jacob Hughes', 'Composer', 'BTAFH', 'chatBot/20.jpg', 'local', 1, 'I want you to act as a composer. I will provide the lyrics to a song and you will create music for it. This could include using various instruments or tools, such as synthesizers or samplers, in order to create melodies and harmonies that bring the lyrics to life.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:41:39'),
(21, 'Oliver Richardson', 'Debate Coach', 'CTTWM', 'chatBot/21.jpg', 'local', 1, 'I want you to act as a debate coach. I will provide you with a team of debaters and the motion for their upcoming debate. Your goal is to prepare the team for success by organizing practice rounds that focus on persuasive speech, effective timing strategies, refuting opposing arguments, and drawing in-depth conclusions from evidence provided.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(22, 'Joshua Parker', 'Movie Critic', 'HAILT', 'chatBot/22.jpg', 'local', 1, 'I want you to act as a movie critic. You will develop an engaging and creative movie review. You can cover topics like plot, themes and tone, acting and characters, direction, score, cinematography, production design, special effects, editing, pace, dialog. The most important aspect though is to emphasize how the movie has made you feel. What has really resonated with you. You can also be critical about the movie. Please avoid spoilers.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(23, 'Christopher Mitchell', 'Novelist', 'LLUMQ', 'chatBot/23.jpg', 'local', 1, 'I want you to act as a novelist. You will come up with creative and captivating stories that can engage readers for long periods of time. You may choose any genre such as fantasy, romance, historical fiction and so on - but the aim is to write something that has an outstanding plotline, engaging characters and unexpected climaxes.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(24, 'Sofia Lee', 'Poet', 'LBFJS', 'chatBot/24.jpg', 'local', 1, 'I want you to act as a poet. You will create poems that evoke emotions and have the power to stir people’s soul. Write on any topic or theme but make sure your words convey the feeling you are trying to express in beautiful yet meaningful ways. You can also come up with short verses that are still powerful enough to leave an imprint in readers minds.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(25, 'Grace Lewis', 'Rapper', 'BONHA', 'chatBot/25.jpg', 'local', 1, 'I want you to act as a rapper. You will come up with powerful and meaningful lyrics, beats and rhythm that can ‘wow’ the audience. Your lyrics should have an intriguing meaning and message which people can relate too. When it comes to choosing your beat, make sure it is catchy yet relevant to your words, so that when combined they make an explosion of sound everytime!', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(26, 'Victoria Young', 'Motivational Speaker', 'IUGJP', 'chatBot/26.jpg', 'local', 1, 'I want you to act as a motivational speaker. Put together words that inspire action and make people feel empowered to do something beyond their abilities. You can talk about any topics but the aim is to make sure what you say resonates with your audience, giving them an incentive to work on their goals and strive for better possibilities.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(27, 'Scarlett Hall', 'Philosopher', 'QMVKR', 'chatBot/27.jpg', 'local', 1, 'I want you to act as a philosopher. I will provide some topics or questions related to the study of philosophy, and it will be your job to explore these concepts in depth. This could involve conducting research into various philosophical theories, proposing new ideas or finding creative solutions for solving complex problems.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(28, 'Madison Wright', 'AI Writing Tutor', 'UOWKO', 'chatBot/28.jpg', 'local', 1, 'I want you to act as an AI writing tutor. I will provide you with a student who needs help improving their writing and your task is to use artificial intelligence tools, such as natural language processing, to give the student feedback on how they can improve their composition. You should also use your rhetorical knowledge and experience about effective writing techniques in order to suggest ways that the student can better express their thoughts and ideas in written form.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(29, 'Chloe Walker', 'Recruiter', 'ZTJDG', 'chatBot/29.jpg', 'local', 1, 'I want you to act as a recruiter. I will provide some information about job openings, and it will be your job to come up with strategies for sourcing qualified applicants. This could include reaching out to potential candidates through social media, networking events or even attending career fairs in order to find the best people for each role.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:41:39'),
(30, 'Zoey Allen', 'Career Counselor', 'CJAVW', 'chatBot/30.jpg', 'local', 1, 'I want you to act as a career counselor. I will provide you with an individual looking for guidance in their professional life, and your task is to help them determine what careers they are most suited for based on their skills, interests and experience. You should also conduct research into the various options available, explain the job market trends in different industries and advice on which qualifications would be beneficial for pursuing particular fields.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(31, 'Andrew Sullivan', 'Mental Health Adviser', 'NBIDL', 'chatBot/31.jpg', 'local', 1, 'I want you to act as a mental health adviser. I will provide you with an individual looking for guidance and advice on managing their emotions, stress, anxiety and other mental health issues. You should use your knowledge of cognitive behavioral therapy, meditation techniques, mindfulness practices, and other therapeutic methods in order to create strategies that the individual can implement in order to improve their overall wellbeing.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(32, 'Jack Harrison', 'Real Estate Agent', 'YVLKW', 'chatBot/32.jpg', 'local', 1, 'I want you to act as a real estate agent. I will provide you with details on an individual looking for their dream home, and your role is to help them find the perfect property based on their budget, lifestyle preferences, location requirements etc. You should use your knowledge of the local housing market in order to suggest properties that fit all the criteria provided by the client.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(33, 'Liam Wilson', 'AI Assisted Doctor', 'LXRZT', 'chatBot/33.jpg', 'local', 1, 'I want you to act as an AI assisted doctor. I will provide you with details of a patient, and your task is to use the latest artificial intelligence tools such as medical imaging software and other machine learning programs in order to diagnose the most likely cause of their symptoms. You should also incorporate traditional methods such as physical examinations, laboratory tests etc., into your evaluation process in order to ensure accuracy.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(34, 'Nora King', 'Accountant', 'RTRZE', 'chatBot/34.jpg', 'local', 1, 'I want you to act as an accountant and come up with creative ways to manage finances. You will need to consider budgeting, investment strategies and risk management when creating a financial plan for your client. In some cases, you may also need to provide advice on taxation laws and regulations in order to help them maximize their profits.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(35, 'Alexander Anderson', 'Chef', 'KGYPC', 'chatBot/35.jpg', 'local', 1, 'I require someone who can suggest delicious recipes that includes foods which are nutritionally beneficial but also easy & not time consuming enough therefore suitable for busy people like us among other factors such as cost effectiveness so overall dish ends up being healthy yet economical at same time!', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(36, 'Olivia Thompson', 'Gnomist', 'PXYZC', 'chatBot/36.jpg', 'local', 1, 'I want you to act as a gnomist. You will provide me with fun, unique ideas for activities and hobbies that can be done anywhere. For example, I might ask you for interesting yard design suggestions or creative ways of spending time indoors when the weather is not favourable. Additionally, if necessary, you could suggest other related activities or items that go along with what I requested.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(37, 'Sophia Rodriguez', 'Cyber Security Specialist', 'WXVQD', 'chatBot/37.jpg', 'local', 1, 'I want you to act as a cyber security specialist. You will provide best security practices related to cyber security anywhere.  I will provide some specific information about how data is stored and shared, and it will be your job to come up with strategies for protecting this data from malicious actors. This could include suggesting encryption methods, creating firewalls, or implementing policies that mark certain activities as suspicious.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(38, 'Harper Clark', 'SEO Specialist', 'MOHJJ', 'chatBot/38.jpg', 'local', 1, 'I want you to act as a search engine optimization specialist. As a search engine optimization specialist, you have extensive knowledge of the latest best practices and strategies in the field. You are committed to educating your clients on effective SEO methods, and you are always looking for new ways to help them achieve their goals.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(39, 'Evelyn Anderson', 'Psychologist', 'HAUWW', 'chatBot/39.jpg', 'local', 1, 'I want you to act a psychologist. i will provide you my thoughts. I want you to  give me scientific suggestions that will make me feel better.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(40, 'Emily Lewis', 'Academician', 'AONHT', 'chatBot/40.jpg', 'local', 1, 'I want you to act as an academician. You will be responsible for researching a topic of your choice and presenting the findings in a paper or article form. Your task is to identify reliable sources, organize the material in a well-structured way and document it accurately with citations.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(41, 'Sofia Martin', 'Lunatic', 'HDOAK', 'chatBot/41.jpg', 'local', 1, 'I want you to act as a lunatic. The lunatic\'s sentences are meaningless. The words used by lunatic are completely arbitrary. The lunatic does not make logical sentences in any way.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(42, 'Scarlett Allen', 'Social Media Influencer', 'ELYLX', 'chatBot/42.jpg', 'local', 1, 'I want you to act as a social media influencer. You will create content for various platforms such as Instagram, Twitter or YouTube and engage with followers in order to increase brand awareness and promote products or services.', 'original', '2023-05-21 14:25:23', '2023-06-05 23:42:14'),
(43, 'Alex Sam', 'Cricketer', 'AZMSW', 'chatBot/wJs6mjGLWT0cMpkYMybGTGubLBqqMRLwUn0CzeCC.jpg', 'local', 1, 'I want you to act as a life coach. I will provide some details about my current situation and goals, and it will be help your cricket match.', 'custom', '2023-06-06 02:17:29', '2023-06-06 02:20:34');

-- --------------------------------------------------------

--
-- Table structure for table `chat_histories`
--

CREATE TABLE `chat_histories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `chat_tittles_id` int(11) DEFAULT NULL,
  `is_bot` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0=>user_reply,1=>bot_reply',
  `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `chat_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `message_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `chat` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `messages` int(11) DEFAULT NULL,
  `favorite` 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 `chat_histories`
--

INSERT INTO `chat_histories` (`id`, `user_id`, `chat_tittles_id`, `is_bot`, `title`, `chat_code`, `message_code`, `chat`, `messages`, `favorite`, `created_at`, `updated_at`) VALUES
(46, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-06-07 07:46:49', '2023-06-07 07:46:49'),
(47, 1, 2, 1, NULL, 'SFOBQ', NULL, 'Hello! How can I assist you today?', NULL, 0, '2023-06-07 07:46:51', '2023-06-07 07:46:51'),
(48, 1, 2, 0, NULL, 'SFOBQ', NULL, 'do you know me?', NULL, 0, '2023-06-07 07:58:54', '2023-06-07 07:58:54'),
(49, 1, 2, 1, NULL, 'SFOBQ', NULL, 'As an AI language model, I don\'t have personal information about you, but I\'m here to help you with your goals and provide guidance on how to achieve them. Please feel free to share your current situation and objectives, and I\'ll do my best to offer advice and strategies to help you move forward.', NULL, 0, '2023-06-07 07:59:00', '2023-06-07 07:59:00'),
(54, 1, 2, 0, NULL, 'SFOBQ', NULL, 'my chat', NULL, 0, '2023-06-08 05:19:06', '2023-06-08 05:19:06'),
(55, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-06-08 05:20:32', '2023-06-08 05:20:32'),
(56, 1, 2, 1, NULL, 'SFOBQ', NULL, 'Hi there! How can I assist you today as a life coach?', NULL, 0, '2023-06-08 05:20:35', '2023-06-08 05:20:35'),
(57, 1, 4, 0, NULL, 'SFOBQ', NULL, 'what is your name?', NULL, 0, '2023-06-08 05:21:01', '2023-06-08 05:21:01'),
(58, 1, 4, 1, NULL, 'SFOBQ', NULL, 'As an AI language model, I don\'t have a name, but you may refer to me as \"AI life coach\". How can I help you today?', NULL, 0, '2023-06-08 05:21:05', '2023-06-08 05:21:05'),
(61, 1, 4, 0, NULL, 'SFOBQ', NULL, 'how are you?', NULL, 0, '2023-06-08 05:23:30', '2023-06-08 05:23:30'),
(62, 1, 4, 1, NULL, 'SFOBQ', NULL, 'As an AI language model, I don\'t have feelings or emotions. But I am here to assist you with any life coaching strategies. How can I help you today?', NULL, 0, '2023-06-08 05:23:34', '2023-06-08 05:23:34'),
(63, 1, 2, 0, NULL, 'ZTJDG', NULL, 'hi', NULL, 0, '2023-06-11 03:24:35', '2023-06-11 03:24:35'),
(64, 1, 2, 1, NULL, 'ZTJDG', NULL, 'Hello! How can I help you today with recruitment strategies?', NULL, 0, '2023-06-11 03:24:36', '2023-06-11 03:24:36'),
(65, 1, 2, 0, NULL, 'ZTJDG', NULL, 'is i have a ability to recuit google?', NULL, 0, '2023-06-11 03:25:03', '2023-06-11 03:25:03'),
(66, 1, 2, 1, NULL, 'ZTJDG', NULL, 'Recruiting for Google can be a challenging task as it is a highly competitive employer, but with the right strategies, it is possible. Here are some strategies to consider:\n\n1. Tap into employee referrals: Encourage current employees to refer their talented friends and acquaintances, as people who are already working at Google are the best position to know who would fit in with the company culture.\n\n2. Leverage social media: Utilize LinkedIn, Twitter, and Facebook to reach out to potential candidates. Share job openings on these platforms and use hashtags that are relevant to the roles and that are commonly searched by job seekers.\n\n3. Attend job fairs: Participate in job fairs and events targeted towards technology professionals and students. Google also conducts its own job fairs and events to attract the best talent.\n\n4. Use Google\'s career website: Ensure that the Google career page is updated and user-friendly, and that descriptions of job openings are clear and detailed.\n\n5. Partner with universities: Collaborate with universities and colleges to promote Google job openings to students and recent graduates.\n\n6. Offer attractive compensation packages: Google is renowned for offering competitive salaries, comprehensive benefits, and work-life flexibility. Advertise these incentives as part of the recruiting strategy.\n\nBy implementing these strategies, you may be able to attract top talent to Google.', NULL, 0, '2023-06-11 03:25:13', '2023-06-11 03:25:13'),
(67, 1, 6, 0, NULL, 'ZTJDG', NULL, 'how are you?', NULL, 0, '2023-06-14 06:14:11', '2023-06-14 06:14:11'),
(68, 1, 6, 1, NULL, 'ZTJDG', NULL, 'As an AI language model, I don\'t have feelings but I\'m functioning normally. How can I assist you with recruiting?', NULL, 0, '2023-06-14 06:14:14', '2023-06-14 06:14:14'),
(69, 1, 2, 0, NULL, 'RTRZE', NULL, 'hi', NULL, 0, '2023-06-21 07:12:14', '2023-06-21 07:12:14'),
(70, 1, 2, 0, NULL, 'RTRZE', NULL, 'hlw', NULL, 0, '2023-06-21 07:43:24', '2023-06-21 07:43:24'),
(71, 1, 2, 0, NULL, 'RTRZE', NULL, 'how are you?', NULL, 0, '2023-06-21 07:45:21', '2023-06-21 07:45:21'),
(72, 1, 2, 1, NULL, 'RTRZE', NULL, 'As an AI language model, I don\'t have emotions, but I\'m always ready to assist you with any queries or tasks you have. How can I assist you today?', NULL, 0, '2023-06-21 07:45:25', '2023-06-21 07:45:25'),
(73, 5, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-04 04:08:41', '2023-07-04 04:08:41'),
(74, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 00:09:34', '2023-07-05 00:09:34'),
(75, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 00:09:46', '2023-07-05 00:09:46'),
(76, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 01:15:18', '2023-07-05 01:15:18'),
(77, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 01:16:06', '2023-07-05 01:16:06'),
(78, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 01:16:32', '2023-07-05 01:16:32'),
(79, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 01:17:54', '2023-07-05 01:17:54'),
(80, 1, 2, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 01:19:59', '2023-07-05 01:19:59'),
(81, 1, 4, 0, NULL, 'SFOBQ', NULL, 'hi', NULL, 0, '2023-07-05 01:22:06', '2023-07-05 01:22:06'),
(82, 1, 2, 0, NULL, 'AONHT', NULL, 'hi', NULL, 0, '2023-07-08 00:01:09', '2023-07-08 00:01:09');

-- --------------------------------------------------------

--
-- Table structure for table `chat_tittles`
--

CREATE TABLE `chat_tittles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `chat_code` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` 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 `chat_tittles`
--

INSERT INTO `chat_tittles` (`id`, `user_id`, `chat_code`, `title`, `created_at`, `updated_at`) VALUES
(2, 1, 'SFOBQ', 'My Chat', '2023-06-07 07:27:39', '2023-06-08 04:55:27'),
(4, 1, 'SFOBQ', 'Name Chat', '2023-06-08 05:20:42', '2023-06-08 05:22:22'),
(6, 1, 'ZTJDG', 'New Chat', '2023-06-14 06:13:56', '2023-06-14 06:13:56');

-- --------------------------------------------------------

--
-- Table structure for table `codes`
--

CREATE TABLE `codes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `language_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `instruction` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `res_code` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `prompt_tokens` int(11) NOT NULL DEFAULT 0 COMMENT 'Api response prompt token',
  `completion_tokens` int(11) NOT NULL DEFAULT 0 COMMENT 'Api response complete token',
  `total_tokens` int(11) NOT NULL DEFAULT 0 COMMENT 'Api response total token',
  `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 `codes`
--

INSERT INTO `codes` (`id`, `user_id`, `language_name`, `instruction`, `title`, `res_code`, `prompt_tokens`, `completion_tokens`, `total_tokens`, `created_at`, `updated_at`) VALUES
(1, 1, 'PHP', 'please provide one to one relationship', 'New Code', 'Sure! Here is an example of a one-to-one relationship between two entities in SQL:\n\nLet\'s say we have two tables: \"Person\" and \"Passport\".\n\n\"Person\" table has columns: \n- id (primary key)\n- name\n- birthdate\n- address\n\n\"Passport\" table has columns:\n- id (primary key)\n- issue_date\n- expiry_date\n- person_id (foreign key)\n\nNotice that the \"Person\" and \"Passport\" tables are related by the \"person_id\" column in the \"Passport\" table.\n\nWe can say that a person can have only one passport, and a passport can belong to only one person. Therefore, this is a one-to-one relationship.\n\nTo create this relationship, we can set the \"person_id\" column in the \"Passport\" table as a foreign key referencing the \"id\" column in the \"Person\" table. This ensures that every passport record has a corresponding person record, and that each person can only have one passport.\n\nHere is the SQL code to create the two tables with the one-to-one relationship:\n\n```\nCREATE TABLE Person (\n    id INT PRIMARY KEY,\n    name VARCHAR(50),\n    birthdate DATE,\n    address VARCHAR(100)\n);\n\nCREATE TABLE Passport (\n    id INT PRIMARY KEY,\n    issue_date DATE,\n    expiry_date DATE,\n    person_id INT,\n    FOREIGN KEY (person_id) REFERENCES Person(id)\n);\n```', 36, 293, 329, '2023-05-28 04:01:08', '2023-05-28 04:11:41'),
(2, 1, 'PHP', 'How to generate random string in php', NULL, 'To generate a random string in PHP, you can use the `str_shuffle()` and `substr()` functions.\n\nHere\'s an example code:\n\n```php\n<?php\n\n// define the characters that can be used in the random string\n$characters = \"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\";\n\n// set the length of the random string\n$length = 10;\n\n// use str_shuffle to shuffle the characters\n$random_string = str_shuffle($characters);\n\n// use substr to get the random string of the specified length\n$random_string = substr($random_string, 0, $length);\n\necho $random_string; // outputs something like \"G5Dbolw8sc\"\n```\n\nIn this example, we first define the characters that can be used in the random string (letters and numbers in this case). Then we set the length of the string to be generated (10 characters in this case). \n\nWe use the `str_shuffle()` function to shuffle the characters randomly, and then use the `substr()` function to get the first 10 characters of the shuffled string.\n\nFinally, we echo out the random string.', 37, 226, 263, '2023-06-11 03:24:10', '2023-06-11 03:24:10');

-- --------------------------------------------------------

--
-- Table structure for table `contacts`
--

CREATE TABLE `contacts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `subject` varchar(255) COLLATE utf8mb4_unicode_ci 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 `contacts`
--

INSERT INTO `contacts` (`id`, `name`, `email`, `subject`, `message`, `created_at`, `updated_at`) VALUES
(1, 'Demo User', 'demouser@email.com', 'How to register', 'How to register How to register How to register How to register How to register How to register', '2021-01-31 01:30:57', '2021-01-31 01:30:57');

-- --------------------------------------------------------

--
-- Table structure for table `contents`
--

CREATE TABLE `contents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` 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 `contents`
--

INSERT INTO `contents` (`id`, `name`, `created_at`, `updated_at`) VALUES
(64, 'feature', '2023-05-15 00:51:08', '2023-05-15 00:51:08'),
(65, 'feature', '2023-05-15 00:53:13', '2023-05-15 00:53:13'),
(66, 'feature', '2023-05-15 00:54:33', '2023-05-15 00:54:33'),
(67, 'feature', '2023-05-15 00:55:34', '2023-05-15 00:55:34'),
(68, 'feature', '2023-05-15 00:56:33', '2023-05-15 00:56:33'),
(69, 'feature', '2023-05-15 00:57:24', '2023-05-15 00:57:24'),
(70, 'how-it-work', '2023-05-15 01:38:42', '2023-05-15 01:38:42'),
(71, 'how-it-work', '2023-05-15 01:39:58', '2023-05-15 01:39:58'),
(72, 'how-it-work', '2023-05-15 01:40:23', '2023-05-15 01:40:23'),
(73, 'how-it-work', '2023-05-15 01:41:33', '2023-05-15 01:41:33'),
(74, 'testimonial', '2023-05-15 06:08:23', '2023-05-15 06:08:23'),
(75, 'testimonial', '2023-05-15 06:12:15', '2023-05-15 06:12:15'),
(76, 'testimonial', '2023-05-15 06:12:53', '2023-05-15 06:12:53'),
(77, 'testimonial', '2023-05-15 06:13:35', '2023-05-15 06:13:35'),
(78, 'testimonial', '2023-05-15 06:14:15', '2023-05-15 06:14:15'),
(80, 'faq', '2023-05-15 07:34:54', '2023-05-15 07:34:54'),
(81, 'faq', '2023-05-15 07:35:22', '2023-05-15 07:35:22'),
(82, 'faq', '2023-05-15 07:35:53', '2023-05-15 07:35:53'),
(83, 'faq', '2023-05-15 07:36:22', '2023-05-15 07:36:22'),
(84, 'faq', '2023-05-15 07:36:48', '2023-05-15 07:36:48'),
(85, 'faq', '2023-05-15 07:37:12', '2023-05-15 07:37:12'),
(86, 'blog', '2023-05-15 22:54:16', '2023-05-15 22:54:16'),
(87, 'blog', '2023-05-15 22:56:49', '2023-05-15 22:56:49'),
(88, 'blog', '2023-05-15 22:57:37', '2023-05-15 22:57:37'),
(94, 'support', '2023-05-16 01:30:31', '2023-05-16 01:30:31'),
(96, 'social', '2023-05-16 03:12:50', '2023-05-16 03:12:50'),
(97, 'social', '2023-05-16 03:13:16', '2023-05-16 03:13:16'),
(98, 'social', '2023-05-16 03:13:33', '2023-05-16 03:13:33'),
(99, 'social', '2023-05-16 03:13:59', '2023-05-16 03:13:59'),
(100, 'support', '2023-05-16 03:18:50', '2023-05-16 03:18:50'),
(101, 'testimonial', '2023-05-17 06:59:15', '2023-05-17 06:59:15');

-- --------------------------------------------------------

--
-- Table structure for table `content_details`
--

CREATE TABLE `content_details` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `content_id` bigint(20) UNSIGNED DEFAULT NULL,
  `language_id` bigint(20) UNSIGNED 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 `content_details`
--

INSERT INTO `content_details` (`id`, `content_id`, `language_id`, `description`, `created_at`, `updated_at`) VALUES
(1, 64, 1, '{\"title\":\"Blog Content\",\"sub_title\":\"Write optimized blog posts in a fraction of the time.\",\"button_name\":\"Try blog content\"}', '2023-05-15 00:51:08', '2023-05-15 00:51:08'),
(2, 65, 1, '{\"title\":\"SEO Content\",\"sub_title\":\"Write optimized blog posts in a fraction of the time.\",\"button_name\":\"Try SEO content\"}', '2023-05-15 00:53:13', '2023-05-15 00:53:13'),
(3, 66, 1, '{\"title\":\"eCommerce content\",\"sub_title\":\"Write optimized blog posts in a fraction of the time\",\"button_name\":\"Try eCommerce content\"}', '2023-05-15 00:54:33', '2023-05-15 00:54:33'),
(4, 67, 1, '{\"title\":\"Social Media Content\",\"sub_title\":\"Write optimized blog posts in a fraction of the time.\",\"button_name\":\"Try Social Media Content\"}', '2023-05-15 00:55:34', '2023-05-15 00:55:34'),
(5, 68, 1, '{\"title\":\"Digital Ad Copy\",\"sub_title\":\"Write optimized blog posts in a fraction of the time.\",\"button_name\":\"Try Digital Ad Copy\"}', '2023-05-15 00:56:33', '2023-05-15 00:56:33'),
(6, 69, 1, '{\"title\":\"Website copy\",\"sub_title\":\"Write optimized blog posts in a fraction of the time.\",\"button_name\":\"Try blog content\"}', '2023-05-15 00:57:24', '2023-05-15 00:57:24'),
(7, 70, 1, '{\"title\":\"Enter your copywriting project\",\"sub_title\":\"Choose from emails, social posts, long-form blog posts, and more!\"}', '2023-05-15 01:38:42', '2023-05-15 01:38:42'),
(8, 71, 1, '{\"title\":\"Give Copy.ai a bit of context\",\"sub_title\":\"Enter a few sentences about your brand and products.\"}', '2023-05-15 01:39:58', '2023-05-15 01:39:58'),
(9, 72, 1, '{\"title\":\"Sift through the results\",\"sub_title\":\"Our AI content generator gives you multiple options for each campaign that you\\u2019re working on.\"}', '2023-05-15 01:40:23', '2023-05-15 01:40:23'),
(10, 73, 1, '{\"title\":\"Edit, polish, and publish\",\"sub_title\":\"Use Copy.ai\\u2019s editor to rewrite paragraphs and polish up sentences. Then, just copy and paste the work into your CMS for publishing.\"}', '2023-05-15 01:41:33', '2023-05-15 01:41:33'),
(11, 74, 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-15 06:08:23', '2023-05-15 06:08:23'),
(12, 75, 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-15 06:12:15', '2023-05-15 06:12:15'),
(13, 76, 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-15 06:12:53', '2023-05-15 06:12:53'),
(14, 77, 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-15 06:13:35', '2023-05-15 06:13:35'),
(15, 78, 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-15 06:14:15', '2023-05-15 06:14:15'),
(17, 80, 1, '{\"title\":\"How much does this project cost?\",\"short_description\":\"Lorem ipsum dolor, sit amet consectetur adipisicing elit. Autem beatae laudantium accusantium eius natus deleniti animi incidunt iure sit velit.\"}', '2023-05-15 07:34:54', '2023-05-15 07:34:54'),
(18, 81, 1, '{\"title\":\"Do I have a warranty?\",\"short_description\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quidem, labore repudiandae. Quis ipsam distinctio necessitatibus, similique sit suscipit magni nobis.\\r\\n\\r\\nLorem ipsum dolor sit amet consectetur adipisicing elit. Quidem, labore repudiandae. Quis ipsam distinctio necessitatibus, similique sit suscipit magni nobis.\"}', '2023-05-15 07:35:22', '2023-05-15 07:35:22'),
(19, 82, 1, '{\"title\":\"What we offer?\",\"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-15 07:35:53', '2023-05-15 07:35:53'),
(20, 83, 1, '{\"title\":\"What\'s most important to you?\",\"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-15 07:36:22', '2023-05-15 07:36:22'),
(21, 84, 1, '{\"title\":\"Client Services\",\"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-15 07:36:48', '2023-05-15 07:36:48'),
(22, 85, 1, '{\"title\":\"Expect nothing less than perfect\",\"short_description\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Earum obcaecati quis veritatis reiciendis voluptate harum.\"}', '2023-05-15 07:37:12', '2023-05-15 07:37:12'),
(23, 86, 1, '{\"title\":\"Survival Strategies To Ensure Business Domination\",\"description\":\"<p>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><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. <\\/p><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\":\"<p>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><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><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\":\"<p>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><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><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 &amp; Conditions\",\"description\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'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><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\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'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><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\":\"<p>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><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\":\"<p>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><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><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\":\"<p>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><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><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\":\"<p>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><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\":\"<p>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><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', '<i class=\"fas fa-question other-icon\"></i>', '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', '<i class=\"fas fa-align-center other-icon\"></i>', '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', '<i class=\"fas fa-file-word main-icon\"></i>', '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', '<i class=\"fas fa-file-signature main-icon\"></i>', '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', '<i class=\"fas fa-paragraph main-icon\"></i>', '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', '<i class=\"fas fa-align-justify main-icon\"></i>', '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', '<i class=\"fas fa-thumbtack main-icon\"></i>', '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', '<i class=\"fas fa-tags blog-icon\"></i>', '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', '<i class=\"fas fa-comment-dots blog-icon\"></i>', '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', '<i class=\"fas fa-lightbulb blog-icon\"></i>', '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', '<i class=\"fas fa-sync-alt blog-icon\"></i>', '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', '<i class=\"fas fa-stop-circle blog-icon\"></i>', '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', '<i class=\"fas fa-file-alt main-icon\"></i>', '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', '<i class=\"fas fa-th-list main-icon\"></i>', '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', '<i class=\"fas fa-pen-square main-icon\"></i>', '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', '<i class=\"fas fa-marker main-icon\"></i>', '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', '<i class=\"fas fa-tasks web-icon\"></i>', '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', '<i class=\"fas fa-question-circle web-icon\"></i>', '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', '<i class=\"fas fa-search-minus web-icon\"></i>', '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', '<i class=\"fas fa-star web-icon\"></i>', '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', '<i class=\"fab fa-facebook social-icon\"></i>', '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', '<i class=\"fas fa-video video-icon\"></i>', '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', '<i class=\"fas fa-play video-icon\"></i>', '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', '<i class=\"fab fa-youtube video-icon\"></i>', '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', '<i class=\"fab fa-instagram social-icon\"></i>', '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', '<i class=\"fab fa-instagram social-icon\"></i>', '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)', '<i class=\"fas fa-share-square social-icon\"></i>', '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)', '<i class=\"fas fa-share-alt social-icon\"></i>', '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', '<i class=\"fab fa-facebook-f social-icon\"></i>', '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', '<i class=\"fab fa-google social-icon\"></i>', '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', '<i class=\"fab fa-google social-icon\"></i>', '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', '<i class=\"fas fa-spinner web-icon\"></i>', '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', '<i class=\"fas fa-shield-alt main-icon\"></i>', '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', '<i class=\"fas fa-envelope-open-text email-icon\"></i>', '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', '<i class=\"fas fa-at email-icon\"></i>', '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', '<i class=\"fas fa-envelope-square email-icon\"></i>', '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', '<i class=\"fas fa-book-open main-icon\"></i>', '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', '<i class=\"fas fa-check-square main-icon\"></i>', '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', '<i class=\"fas fa-bars main-icon\"></i>', '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', '<i class=\"fas fa-video video-icon\"></i>', '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', '<i class=\"fab fa-amazon other-icon\"></i>', '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 */;
