����
One Hat Cyber Team
One Hat Cyber Team
Your IP :
13.59.206.196
Server IP :
104.21.32.1
Server :
Linux in-mum-web1337.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
Server Software :
LiteSpeed
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
u606880663
/
domains
/
drggtrust.in
/
public_html
/
View File Name :
database.sql
-- MySQL dump 10.13 Distrib 8.0.31, for macos13.0 (arm64) -- -- Host: localhost Database: agon -- ------------------------------------------------------ -- Server version 8.0.31 /*!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 */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `activations` -- DROP TABLE IF EXISTS `activations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `activations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned NOT NULL, `code` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `completed` tinyint(1) NOT NULL DEFAULT '0', `completed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `activations_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `activations` -- LOCK TABLES `activations` WRITE; /*!40000 ALTER TABLE `activations` DISABLE KEYS */; INSERT INTO `activations` VALUES (1,1,'jMvGNvlAfcJ8mEWxZYPlpni9y7wlVw52',1,'2023-01-22 08:09:23','2023-01-22 08:09:23','2023-01-22 08:09:23'); /*!40000 ALTER TABLE `activations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_notifications` -- DROP TABLE IF EXISTS `admin_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_notifications` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `action_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `action_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL, `read_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admin_notifications` -- LOCK TABLES `admin_notifications` WRITE; /*!40000 ALTER TABLE `admin_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `audit_histories` -- DROP TABLE IF EXISTS `audit_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `audit_histories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned NOT NULL, `module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `request` text COLLATE utf8mb4_unicode_ci, `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci, `ip_address` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference_user` int unsigned NOT NULL, `reference_id` int unsigned NOT NULL, `reference_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `audit_histories_user_id_index` (`user_id`), KEY `audit_histories_module_index` (`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `audit_histories` -- LOCK TABLES `audit_histories` WRITE; /*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` int unsigned NOT NULL DEFAULT '0', `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `author_id` int NOT NULL, `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_featured` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `parent_id` (`parent_id`), KEY `status` (`status`), KEY `created_at` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categories` -- LOCK TABLES `categories` WRITE; /*!40000 ALTER TABLE `categories` DISABLE KEYS */; INSERT INTO `categories` VALUES (1,'Design',0,'Quidem adipisci provident deleniti tenetur qui. Explicabo non tenetur earum similique excepturi. Et repudiandae sed eaque sint.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,1,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(2,'Lifestyle',0,'Voluptatem numquam sit voluptatum quae beatae similique ab. Ea temporibus quia totam error sit sequi. Et harum explicabo ut in explicabo. Earum voluptatem doloremque sed vero fugiat et velit.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(3,'Travel Tips',2,'Aut architecto sequi ducimus delectus officia. Quos officiis vero totam voluptas libero temporibus. Quia vel fuga velit.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(4,'Healthy',0,'Asperiores placeat maxime facere in vero. Et optio sed itaque et. Deleniti voluptatem et est laborum perspiciatis explicabo.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(5,'Travel Tips',4,'Illum dolorum eum qui iste molestiae omnis debitis. Nisi impedit libero ipsa eius quas eos doloribus. Eos fugit est qui omnis. Officia ea eos non.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(6,'Hotel',0,'Incidunt occaecati doloribus sed provident. At perspiciatis accusamus quidem. Doloribus ad placeat ad nulla.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(7,'Nature',6,'Aut recusandae voluptatem molestias itaque. Velit ut veritatis vero enim itaque. Quo voluptates voluptas sit adipisci reiciendis at dolore.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2023-01-22 08:09:26','2023-01-22 08:09:26'); /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories_translations` -- DROP TABLE IF EXISTS `categories_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `categories_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `categories_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categories_translations` -- LOCK TABLES `categories_translations` WRITE; /*!40000 ALTER TABLE `categories_translations` DISABLE KEYS */; INSERT INTO `categories_translations` VALUES ('vi',1,'Phong cách sống',NULL),('vi',2,'Sức khỏe',NULL),('vi',3,'Món ngon',NULL),('vi',4,'Sức khỏe',NULL),('vi',5,'Mẹo du lịch',NULL),('vi',6,'Khách sạn',NULL),('vi',7,'Thiên nhiên',NULL); /*!40000 ALTER TABLE `categories_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cities` -- DROP TABLE IF EXISTS `cities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cities` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `state_id` int unsigned NOT NULL, `country_id` int unsigned DEFAULT NULL, `record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cities` -- LOCK TABLES `cities` WRITE; /*!40000 ALTER TABLE `cities` DISABLE KEYS */; /*!40000 ALTER TABLE `cities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cities_translations` -- DROP TABLE IF EXISTS `cities_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cities_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cities_id` int NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`cities_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cities_translations` -- LOCK TABLES `cities_translations` WRITE; /*!40000 ALTER TABLE `cities_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `cities_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact_replies` -- DROP TABLE IF EXISTS `contact_replies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contact_replies` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `contact_id` int NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contact_replies` -- LOCK TABLES `contact_replies` WRITE; /*!40000 ALTER TABLE `contact_replies` DISABLE KEYS */; /*!40000 ALTER TABLE `contact_replies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contacts` -- DROP TABLE IF EXISTS `contacts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contacts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contacts` -- LOCK TABLES `contacts` WRITE; /*!40000 ALTER TABLE `contacts` DISABLE KEYS */; INSERT INTO `contacts` VALUES (1,'Vince Okuneva','xreilly@example.com','+1-818-216-3605','3810 Runolfsson Run\nDeonteburgh, NV 60847-1383','Commodi voluptate non unde et facilis aliquid.','Et praesentium ut id numquam doloribus. Nostrum quo excepturi voluptas ut asperiores est dolor. Voluptatem et assumenda inventore magni ut cumque. Omnis culpa assumenda facilis consequatur. Ad est placeat magni eveniet voluptas deleniti dolorem. Tempore non sunt iusto corrupti repellendus error perspiciatis tempora. Mollitia quia dolorem architecto.','read','2023-01-22 08:09:26','2023-01-22 08:09:26'),(2,'Prof. Keyon Murray III','morton.brakus@example.com','256.379.9527','88871 Kacey Plaza Suite 197\nVergiehaven, GA 98194-4691','Hic minus dolores omnis qui et.','Quo nisi minima laborum explicabo molestiae rerum. Dolore nihil culpa vel earum quo mollitia ut. Consequatur enim inventore maxime id perspiciatis. Quidem asperiores nesciunt aut itaque et est quia. Tempore neque dolorum ullam aperiam distinctio. Placeat temporibus est quod omnis voluptatem. Non numquam sed omnis quia. Quas similique tempore natus veniam.','unread','2023-01-22 08:09:26','2023-01-22 08:09:26'),(3,'Dr. Bryce Wyman II','koby.rempel@example.com','(510) 527-6006','70165 Nia Crest\nWest Rubenville, NC 53028','Alias et odit ut et.','Placeat delectus id fuga minus voluptatem voluptas et. Nihil eaque nemo praesentium modi ullam. Voluptatem est et mollitia et deleniti. Et nulla a delectus maxime et. Sapiente molestiae omnis quaerat aliquid ullam. Voluptatem cum consequatur ut ipsa quis sequi. Minus deleniti qui totam sint dolores. Dolore repellat error sit qui officia.','unread','2023-01-22 08:09:26','2023-01-22 08:09:26'),(4,'Trisha Wolff','pietro85@example.com','971-394-0361','986 Sylvia Expressway\nNorth Selinaport, GA 35036-1741','Est quae sint debitis natus harum iste amet nemo.','Debitis quae labore corporis architecto aut voluptatem. Maiores odio ducimus amet sed. Qui dolore ab et quas laborum non quod. Voluptas dolor repellat recusandae dicta voluptatum. Occaecati nulla veniam nihil quod rerum corporis distinctio eveniet. Est inventore consectetur repudiandae commodi omnis ex nihil consequuntur. Incidunt inventore sed eaque. Ab incidunt nobis qui debitis sapiente. Consequuntur voluptatem magni omnis hic sint accusantium quia.','unread','2023-01-22 08:09:26','2023-01-22 08:09:26'),(5,'Elyssa Dickens','lowe.rosemary@example.org','1-475-710-0602','258 Friesen Ranch\nBrittanyfurt, IL 00017','At dolorem quia eos beatae.','Veritatis illum sed est eos voluptatem qui. Ducimus ratione unde quia. Neque enim voluptas qui ex. Aperiam eum excepturi eligendi adipisci. Saepe officiis quibusdam mollitia qui dolorem quas tenetur tenetur. Voluptatem possimus voluptates itaque aut officiis qui. Deleniti illo cum ducimus similique. Atque quisquam nam esse accusamus hic. Non adipisci vero possimus veritatis in dolore. Vero dolores explicabo ipsum in illum consequuntur dolorem.','unread','2023-01-22 08:09:26','2023-01-22 08:09:26'),(6,'Prof. Jamel Erdman','pmacejkovic@example.org','+1 (414) 334-1149','652 Ariane Drive\nLake Juliusmouth, NC 82416','Delectus accusamus consequatur eum voluptate aut.','Eligendi similique dolore laborum aliquam quibusdam. Qui explicabo qui quia enim quis sit aliquam. Ut ad sunt adipisci est quis aperiam. Illo vitae voluptate est dolor ut quidem quis. Cum id ipsam ut praesentium voluptas ut. Et perferendis sint veritatis at. Est incidunt deleniti laudantium unde ea non. Quaerat sed accusamus natus placeat. Fuga eum voluptatem id sequi quia. Qui consequuntur non quisquam ut. Culpa esse est et velit animi.','read','2023-01-22 08:09:26','2023-01-22 08:09:26'),(7,'Joey Runolfsson','gage82@example.com','+1-959-987-7394','3745 Ava Square\nNorth Cesar, OR 98741-6531','In facilis eos vero.','Porro sunt quaerat corporis est doloremque. Recusandae inventore et cumque eum esse voluptate minima. Beatae aperiam enim officiis aspernatur. Iste quia possimus placeat eos. Dolorum impedit aut inventore aut sed commodi sed. Nostrum molestiae debitis excepturi velit eos architecto officiis omnis. Et numquam quis fuga mollitia laboriosam officiis. Modi veritatis est ipsum est. Numquam dignissimos quisquam quis nihil iusto. Qui tenetur dolorum eligendi et.','read','2023-01-22 08:09:26','2023-01-22 08:09:26'),(8,'Joseph Zulauf','seamus.konopelski@example.org','1-629-916-2317','31171 Stanton Skyway\nRaeburgh, KS 68856-8760','Unde dicta sequi animi vel.','Qui aliquid harum deserunt a tenetur numquam cupiditate. Quia omnis omnis cupiditate sapiente omnis dolor et harum. Aut fugit qui quaerat natus est. Nemo consequatur perferendis consequuntur natus at. Nesciunt qui ipsam impedit ducimus molestias necessitatibus. Et quo esse doloribus qui autem delectus.','unread','2023-01-22 08:09:26','2023-01-22 08:09:26'),(9,'Carole Vandervort','shields.nolan@example.org','256.901.8464','751 Pfeffer Pass\nSouth Cleta, DE 07780','Delectus debitis aut nulla rem.','Ea minus dignissimos adipisci eum fugit sapiente. Non quae qui exercitationem tempore reiciendis aut optio. Et quasi magnam voluptatem dolorem dolorem ipsam. Consequatur est laudantium laboriosam aut. Aliquid aliquid ut sit animi. Qui impedit aliquid harum. Perferendis non fugiat sunt quia sit atque qui. Dolores ducimus non dolores aliquid. Non voluptatem dolor aut magnam sint reprehenderit aut.','unread','2023-01-22 08:09:26','2023-01-22 08:09:26'),(10,'Howell Koch','abdiel.parker@example.net','+1 (336) 576-8208','4079 Leonardo Glen Apt. 383\nStrosinfort, NC 34492-8813','Ea optio praesentium temporibus iure.','Aut incidunt vel officia illo amet repellat repellat. Dicta quis voluptatem esse voluptate modi aut. Id placeat et enim ducimus eum aut expedita. Tenetur fugiat consequatur magnam sint nesciunt iusto. Libero aut sint et eum et. Tenetur natus perferendis ut qui. Cupiditate qui debitis voluptas culpa omnis impedit ut. Debitis itaque qui blanditiis rerum expedita assumenda. Aut dolor officia et blanditiis praesentium animi voluptatem quis. Culpa fugiat aut ex sed qui. Non esse deleniti iste.','read','2023-01-22 08:09:26','2023-01-22 08:09:26'); /*!40000 ALTER TABLE `contacts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `countries` -- DROP TABLE IF EXISTS `countries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `countries` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `nationality` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `countries` -- LOCK TABLES `countries` WRITE; /*!40000 ALTER TABLE `countries` DISABLE KEYS */; /*!40000 ALTER TABLE `countries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `countries_translations` -- DROP TABLE IF EXISTS `countries_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `countries_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `countries_id` int NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`countries_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `countries_translations` -- LOCK TABLES `countries_translations` WRITE; /*!40000 ALTER TABLE `countries_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `countries_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_widget_settings` -- DROP TABLE IF EXISTS `dashboard_widget_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_widget_settings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `settings` text COLLATE utf8mb4_unicode_ci, `user_id` int unsigned NOT NULL, `widget_id` int unsigned NOT NULL, `order` tinyint unsigned NOT NULL DEFAULT '0', `status` tinyint unsigned NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `dashboard_widget_settings_user_id_index` (`user_id`), KEY `dashboard_widget_settings_widget_id_index` (`widget_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_widget_settings` -- LOCK TABLES `dashboard_widget_settings` WRITE; /*!40000 ALTER TABLE `dashboard_widget_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `dashboard_widget_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_widgets` -- DROP TABLE IF EXISTS `dashboard_widgets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_widgets` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_widgets` -- LOCK TABLES `dashboard_widgets` WRITE; /*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */; /*!40000 ALTER TABLE `dashboard_widgets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_brands` -- DROP TABLE IF EXISTS `ec_brands`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_brands` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci, `website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` tinyint unsigned NOT NULL DEFAULT '0', `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_brands` -- LOCK TABLES `ec_brands` WRITE; /*!40000 ALTER TABLE `ec_brands` DISABLE KEYS */; INSERT INTO `ec_brands` VALUES (1,'Apply','',NULL,'brands/1.png','published',0,1,'2023-01-22 08:09:39','2023-01-22 08:09:39'),(2,'Assus','',NULL,'brands/2.png','published',1,1,'2023-01-22 08:09:39','2023-01-22 08:09:39'),(3,'Samsung','',NULL,'brands/3.png','published',2,1,'2023-01-22 08:09:39','2023-01-22 08:09:39'),(4,'Sony','',NULL,'brands/4.png','published',3,1,'2023-01-22 08:09:39','2023-01-22 08:09:39'),(5,'Toshiba','',NULL,'brands/5.png','published',4,1,'2023-01-22 08:09:39','2023-01-22 08:09:39'); /*!40000 ALTER TABLE `ec_brands` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_brands_translations` -- DROP TABLE IF EXISTS `ec_brands_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_brands_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_brands_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_brands_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_brands_translations` -- LOCK TABLES `ec_brands_translations` WRITE; /*!40000 ALTER TABLE `ec_brands_translations` DISABLE KEYS */; INSERT INTO `ec_brands_translations` VALUES ('vi',1,'Apply',''),('vi',2,'Assus',''),('vi',3,'Samsung',''),('vi',4,'Sony',''),('vi',5,'Toshiba',''); /*!40000 ALTER TABLE `ec_brands_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_cart` -- DROP TABLE IF EXISTS `ec_cart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_cart` ( `identifier` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `instance` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`identifier`,`instance`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_cart` -- LOCK TABLES `ec_cart` WRITE; /*!40000 ALTER TABLE `ec_cart` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_cart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_currencies` -- DROP TABLE IF EXISTS `ec_currencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_currencies` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0', `decimals` tinyint unsigned DEFAULT '0', `order` int unsigned DEFAULT '0', `is_default` tinyint NOT NULL DEFAULT '0', `exchange_rate` double NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_currencies` -- LOCK TABLES `ec_currencies` WRITE; /*!40000 ALTER TABLE `ec_currencies` DISABLE KEYS */; INSERT INTO `ec_currencies` VALUES (1,'USD','$',1,2,0,1,1,'2023-01-22 08:09:39','2023-01-22 08:09:39'),(2,'EUR','€',0,2,1,0,0.84,'2023-01-22 08:09:39','2023-01-22 08:09:39'),(3,'VND','₫',0,0,2,0,23203,'2023-01-22 08:09:39','2023-01-22 08:09:39'); /*!40000 ALTER TABLE `ec_currencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_addresses` -- DROP TABLE IF EXISTS `ec_customer_addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_addresses` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` int unsigned NOT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_addresses` -- LOCK TABLES `ec_customer_addresses` WRITE; /*!40000 ALTER TABLE `ec_customer_addresses` DISABLE KEYS */; INSERT INTO `ec_customer_addresses` VALUES (1,'Amelie Runte MD','customer@archielite.com','+12562741413','TR','New Jersey','Hermanmouth','357 Lilian Land',1,1,'2023-01-22 08:10:00','2023-01-22 08:10:00','24506-3449'),(2,'Amelie Runte MD','customer@archielite.com','+16785599972','SO','New Jersey','Waynetown','199 Brandi Ports',1,0,'2023-01-22 08:10:00','2023-01-22 08:10:00','48795-9751'),(3,'Chaim Mills','sarai66@example.net','+15635811247','NZ','Virginia','West Jarodtown','89192 Douglas Parkways',2,1,'2023-01-22 08:10:00','2023-01-22 08:10:00','89880-6976'),(4,'Miss Eliza Marvin','odell31@example.net','+16788202568','VI','Kansas','East Johathanbury','3844 Corwin Dam',3,1,'2023-01-22 08:10:00','2023-01-22 08:10:00','99110-6237'),(5,'Ms. Claudine Leffler II','finn.streich@example.net','+17065509688','TV','Georgia','Jakubowskiview','7029 Turner Isle',4,1,'2023-01-22 08:10:01','2023-01-22 08:10:01','65951'),(6,'Vladimir Bernier V','claire60@example.org','+17866657276','MZ','Iowa','Binsborough','19029 Elton Manors Suite 018',5,1,'2023-01-22 08:10:01','2023-01-22 08:10:01','04624'),(7,'Miss Santina Beer DDS','imorar@example.com','+13324393114','KP','Oklahoma','South Tressie','7410 Schowalter Turnpike',6,1,'2023-01-22 08:10:01','2023-01-22 08:10:01','58349'),(8,'Prof. Dillan Ruecker','feil.alvah@example.com','+14846693486','LR','Mississippi','Zoeport','65947 Hyatt Extension Suite 733',7,1,'2023-01-22 08:10:01','2023-01-22 08:10:01','64413'),(9,'Mr. Hipolito Berge Jr.','btreutel@example.org','+17609633673','TR','Colorado','Cummingsside','4565 Nathaniel Springs Suite 344',8,1,'2023-01-22 08:10:01','2023-01-22 08:10:01','33379-2786'),(10,'Prof. Hettie Lowe Jr.','hanna.schimmel@example.org','+19717448824','GG','Nevada','Walkerport','4412 Denis Tunnel',9,1,'2023-01-22 08:10:01','2023-01-22 08:10:01','59171-3885'); /*!40000 ALTER TABLE `ec_customer_addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_password_resets` -- DROP TABLE IF EXISTS `ec_customer_password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `ec_customer_password_resets_email_index` (`email`), KEY `ec_customer_password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_password_resets` -- LOCK TABLES `ec_customer_password_resets` WRITE; /*!40000 ALTER TABLE `ec_customer_password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_recently_viewed_products` -- DROP TABLE IF EXISTS `ec_customer_recently_viewed_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_recently_viewed_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_recently_viewed_products` -- LOCK TABLES `ec_customer_recently_viewed_products` WRITE; /*!40000 ALTER TABLE `ec_customer_recently_viewed_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_recently_viewed_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customers` -- DROP TABLE IF EXISTS `ec_customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customers` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dob` date DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `confirmed_at` datetime DEFAULT NULL, `email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activated', PRIMARY KEY (`id`), UNIQUE KEY `ec_customers_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customers` -- LOCK TABLES `ec_customers` WRITE; /*!40000 ALTER TABLE `ec_customers` DISABLE KEYS */; INSERT INTO `ec_customers` VALUES (1,'Amelie Runte MD','customer@archielite.com','$2y$10$FJVojEztUnVRWgh2A5nFBexl9lO6ioaTkV6ckZsfU7VhJbvLtMY3u','customers/8.jpg','1985-01-05','+18085149522',NULL,'2023-01-22 08:10:00','2023-01-22 08:10:00','2023-01-22 15:10:00',NULL,'activated'),(2,'Chaim Mills','sarai66@example.net','$2y$10$M9I016xjt8NDp3Op/lSdhuxu6EZcjI6RPNlX6znptz.X2K7XCV17a','customers/1.jpg','1984-01-19','+12607250776',NULL,'2023-01-22 08:10:00','2023-01-22 08:10:00','2023-01-22 15:10:00',NULL,'activated'),(3,'Miss Eliza Marvin','odell31@example.net','$2y$10$cwxsF9zJeO/7ZcWiYS5w3e4L0aHpTOACRfbX1p1not7tQ5mKc19xS','customers/2.jpg','1975-01-07','+14153584625',NULL,'2023-01-22 08:10:00','2023-01-22 08:10:00','2023-01-22 15:10:00',NULL,'activated'),(4,'Ms. Claudine Leffler II','finn.streich@example.net','$2y$10$KVMogpfzPEdqS3cc5u7eJucub9GJ6t2jCUXUE7nxYKMhvdQCRZGqa','customers/3.jpg','1982-01-16','+12486398168',NULL,'2023-01-22 08:10:01','2023-01-22 08:10:01','2023-01-22 15:10:01',NULL,'activated'),(5,'Vladimir Bernier V','claire60@example.org','$2y$10$dNV.vWRfLQnTCkSvMTQlLO56POWHA4kq8YWeBXp9QEIdkiFUPkGB2','customers/4.jpg','1994-01-09','+14585558113',NULL,'2023-01-22 08:10:01','2023-01-22 08:10:01','2023-01-22 15:10:01',NULL,'activated'),(6,'Miss Santina Beer DDS','imorar@example.com','$2y$10$OWJnXZOBcwoiGOtmNzQYx.cQDSrNa32yOKPp8JPj3967T86kMqCmS','customers/5.jpg','1993-12-26','+12187989605',NULL,'2023-01-22 08:10:01','2023-01-22 08:10:01','2023-01-22 15:10:01',NULL,'activated'),(7,'Prof. Dillan Ruecker','feil.alvah@example.com','$2y$10$oXzUtyWuw1YRY34E.iC/.u21/8QUzN/cZvmwHiTAXc8UopufEqbvq','customers/6.jpg','1994-01-18','+19525318515',NULL,'2023-01-22 08:10:01','2023-01-22 08:10:01','2023-01-22 15:10:01',NULL,'activated'),(8,'Mr. Hipolito Berge Jr.','btreutel@example.org','$2y$10$ThX0aF2esjtfhQI9r3Lxp.yvcmjplaI7heYQrhkre2vjrBYsz131O','customers/7.jpg','1999-01-21','+14698883981',NULL,'2023-01-22 08:10:01','2023-01-22 08:10:01','2023-01-22 15:10:01',NULL,'activated'),(9,'Prof. Hettie Lowe Jr.','hanna.schimmel@example.org','$2y$10$SOs37q6/bm.5wYQ.rofuTOX7PQrcJUqlWib64b.4tpSoH2b30TsXe','customers/8.jpg','1993-01-16','+14149456394',NULL,'2023-01-22 08:10:01','2023-01-22 08:10:01','2023-01-22 15:10:01',NULL,'activated'); /*!40000 ALTER TABLE `ec_customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discount_customers` -- DROP TABLE IF EXISTS `ec_discount_customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discount_customers` ( `discount_id` int unsigned NOT NULL, `customer_id` int unsigned NOT NULL, PRIMARY KEY (`discount_id`,`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discount_customers` -- LOCK TABLES `ec_discount_customers` WRITE; /*!40000 ALTER TABLE `ec_discount_customers` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discount_customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discount_product_collections` -- DROP TABLE IF EXISTS `ec_discount_product_collections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discount_product_collections` ( `discount_id` int unsigned NOT NULL, `product_collection_id` int unsigned NOT NULL, PRIMARY KEY (`discount_id`,`product_collection_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discount_product_collections` -- LOCK TABLES `ec_discount_product_collections` WRITE; /*!40000 ALTER TABLE `ec_discount_product_collections` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discount_product_collections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discount_products` -- DROP TABLE IF EXISTS `ec_discount_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discount_products` ( `discount_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, PRIMARY KEY (`discount_id`,`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discount_products` -- LOCK TABLES `ec_discount_products` WRITE; /*!40000 ALTER TABLE `ec_discount_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discount_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discounts` -- DROP TABLE IF EXISTS `ec_discounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discounts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `quantity` int DEFAULT NULL, `total_used` int unsigned NOT NULL DEFAULT '0', `value` double DEFAULT NULL, `type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'coupon', `can_use_with_promotion` tinyint(1) NOT NULL DEFAULT '0', `discount_on` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_quantity` int unsigned DEFAULT NULL, `type_option` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `target` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all-orders', `min_order_price` decimal(15,2) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_discounts_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discounts` -- LOCK TABLES `ec_discounts` WRITE; /*!40000 ALTER TABLE `ec_discounts` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_flash_sale_products` -- DROP TABLE IF EXISTS `ec_flash_sale_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_flash_sale_products` ( `flash_sale_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, `price` double unsigned DEFAULT NULL, `quantity` int unsigned DEFAULT NULL, `sold` int unsigned NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_flash_sale_products` -- LOCK TABLES `ec_flash_sale_products` WRITE; /*!40000 ALTER TABLE `ec_flash_sale_products` DISABLE KEYS */; INSERT INTO `ec_flash_sale_products` VALUES (1,1,33.705,11,2),(1,2,36.045,20,3),(1,3,11.2,20,5),(1,4,295.848,8,3),(1,5,655.7,20,2),(1,6,176.44,11,4),(1,7,481.11,14,4),(1,8,704.3259,7,2),(1,9,284.48,14,3),(1,10,445.55,10,2); /*!40000 ALTER TABLE `ec_flash_sale_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_flash_sales` -- DROP TABLE IF EXISTS `ec_flash_sales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_flash_sales` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `end_date` datetime NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_flash_sales` -- LOCK TABLES `ec_flash_sales` WRITE; /*!40000 ALTER TABLE `ec_flash_sales` DISABLE KEYS */; INSERT INTO `ec_flash_sales` VALUES (1,'Winter Sale','2023-02-21 00:00:00','published','2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_flash_sales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_flash_sales_translations` -- DROP TABLE IF EXISTS `ec_flash_sales_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_flash_sales_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_flash_sales_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_flash_sales_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_flash_sales_translations` -- LOCK TABLES `ec_flash_sales_translations` WRITE; /*!40000 ALTER TABLE `ec_flash_sales_translations` DISABLE KEYS */; INSERT INTO `ec_flash_sales_translations` VALUES ('vi',1,'Khuyến mãi mùa đông.'); /*!40000 ALTER TABLE `ec_flash_sales_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_option_value` -- DROP TABLE IF EXISTS `ec_global_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_option_value` ( `option_id` bigint NOT NULL COMMENT 'option id', `id` bigint unsigned NOT NULL AUTO_INCREMENT, `option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value', `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect', `order` int NOT NULL DEFAULT '9999', `affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_option_value` -- LOCK TABLES `ec_global_option_value` WRITE; /*!40000 ALTER TABLE `ec_global_option_value` DISABLE KEYS */; INSERT INTO `ec_global_option_value` VALUES (1,1,'1 Year',0,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(1,2,'2 Year',10,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(1,3,'3 Year',20,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(2,4,'4GB',0,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(2,5,'8GB',10,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(2,6,'16GB',20,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(3,7,'Core i5',0,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(3,8,'Core i7',10,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(3,9,'Core i9',20,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(4,10,'128GB',0,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(4,11,'256GB',10,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(4,12,'512GB',20,9999,0,'2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_global_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_option_value_translations` -- DROP TABLE IF EXISTS `ec_global_option_value_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_option_value_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_global_option_value_id` int NOT NULL, `option_value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_global_option_value_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_option_value_translations` -- LOCK TABLES `ec_global_option_value_translations` WRITE; /*!40000 ALTER TABLE `ec_global_option_value_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_option_value_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_options` -- DROP TABLE IF EXISTS `ec_global_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options', `option_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'option type', `required` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Checked if this option is required', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_options` -- LOCK TABLES `ec_global_options` WRITE; /*!40000 ALTER TABLE `ec_global_options` DISABLE KEYS */; INSERT INTO `ec_global_options` VALUES (1,'Warranty','Botble\\Ecommerce\\Option\\OptionType\\RadioButton',1,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(2,'RAM','Botble\\Ecommerce\\Option\\OptionType\\RadioButton',1,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(3,'CPU','Botble\\Ecommerce\\Option\\OptionType\\RadioButton',1,'2023-01-22 08:10:04','2023-01-22 08:10:04'),(4,'HDD','Botble\\Ecommerce\\Option\\OptionType\\Dropdown',0,'2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_global_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_options_translations` -- DROP TABLE IF EXISTS `ec_global_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_options_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_global_options_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_global_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_options_translations` -- LOCK TABLES `ec_global_options_translations` WRITE; /*!40000 ALTER TABLE `ec_global_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_options_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_grouped_products` -- DROP TABLE IF EXISTS `ec_grouped_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_grouped_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `parent_product_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, `fixed_qty` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_grouped_products` -- LOCK TABLES `ec_grouped_products` WRITE; /*!40000 ALTER TABLE `ec_grouped_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_grouped_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_invoice_items` -- DROP TABLE IF EXISTS `ec_invoice_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_invoice_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `invoice_id` bigint unsigned NOT NULL, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int unsigned NOT NULL, `sub_total` decimal(15,2) unsigned NOT NULL, `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `amount` decimal(15,2) unsigned NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_invoice_items_reference_type_reference_id_index` (`reference_type`,`reference_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_invoice_items` -- LOCK TABLES `ec_invoice_items` WRITE; /*!40000 ALTER TABLE `ec_invoice_items` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_invoice_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_invoices` -- DROP TABLE IF EXISTS `ec_invoices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_invoices` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_tax_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_total` decimal(15,2) unsigned NOT NULL, `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `shipping_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(15,2) unsigned NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `payment_id` int unsigned DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `paid_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_invoices_code_unique` (`code`), KEY `ec_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`), KEY `ec_invoices_payment_id_index` (`payment_id`), KEY `ec_invoices_status_index` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_invoices` -- LOCK TABLES `ec_invoices` WRITE; /*!40000 ALTER TABLE `ec_invoices` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_invoices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_option_value` -- DROP TABLE IF EXISTS `ec_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_option_value` ( `option_id` bigint NOT NULL COMMENT 'option id', `id` bigint unsigned NOT NULL AUTO_INCREMENT, `option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value', `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect', `order` int NOT NULL DEFAULT '9999', `affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_option_value` -- LOCK TABLES `ec_option_value` WRITE; /*!40000 ALTER TABLE `ec_option_value` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_option_value_translations` -- DROP TABLE IF EXISTS `ec_option_value_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_option_value_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_option_value_id` int NOT NULL, `option_value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_option_value_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_option_value_translations` -- LOCK TABLES `ec_option_value_translations` WRITE; /*!40000 ALTER TABLE `ec_option_value_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_option_value_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_options` -- DROP TABLE IF EXISTS `ec_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options', `option_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'option type', `product_id` bigint NOT NULL DEFAULT '0', `order` int NOT NULL DEFAULT '9999', `required` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Checked if this option is required', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_options` -- LOCK TABLES `ec_options` WRITE; /*!40000 ALTER TABLE `ec_options` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_options_translations` -- DROP TABLE IF EXISTS `ec_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_options_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_options_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_options_translations` -- LOCK TABLES `ec_options_translations` WRITE; /*!40000 ALTER TABLE `ec_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_options_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_addresses` -- DROP TABLE IF EXISTS `ec_order_addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_addresses` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int unsigned NOT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'shipping_address', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_addresses` -- LOCK TABLES `ec_order_addresses` WRITE; /*!40000 ALTER TABLE `ec_order_addresses` DISABLE KEYS */; INSERT INTO `ec_order_addresses` VALUES (1,'Miss Santina Beer DDS','+13324393114','imorar@example.com','KP','Oklahoma','South Tressie','7410 Schowalter Turnpike',1,'58349','shipping_address'),(2,'Ms. Claudine Leffler II','+17065509688','finn.streich@example.net','TV','Georgia','Jakubowskiview','7029 Turner Isle',2,'65951','shipping_address'),(3,'Prof. Hettie Lowe Jr.','+19717448824','hanna.schimmel@example.org','GG','Nevada','Walkerport','4412 Denis Tunnel',3,'59171-3885','shipping_address'),(4,'Miss Santina Beer DDS','+13324393114','imorar@example.com','KP','Oklahoma','South Tressie','7410 Schowalter Turnpike',4,'58349','shipping_address'),(5,'Mr. Hipolito Berge Jr.','+17609633673','btreutel@example.org','TR','Colorado','Cummingsside','4565 Nathaniel Springs Suite 344',5,'33379-2786','shipping_address'),(6,'Vladimir Bernier V','+17866657276','claire60@example.org','MZ','Iowa','Binsborough','19029 Elton Manors Suite 018',6,'04624','shipping_address'),(7,'Mr. Hipolito Berge Jr.','+17609633673','btreutel@example.org','TR','Colorado','Cummingsside','4565 Nathaniel Springs Suite 344',7,'33379-2786','shipping_address'),(8,'Ms. Claudine Leffler II','+17065509688','finn.streich@example.net','TV','Georgia','Jakubowskiview','7029 Turner Isle',8,'65951','shipping_address'),(9,'Mr. Hipolito Berge Jr.','+17609633673','btreutel@example.org','TR','Colorado','Cummingsside','4565 Nathaniel Springs Suite 344',9,'33379-2786','shipping_address'),(10,'Prof. Dillan Ruecker','+14846693486','feil.alvah@example.com','LR','Mississippi','Zoeport','65947 Hyatt Extension Suite 733',10,'64413','shipping_address'),(11,'Prof. Dillan Ruecker','+14846693486','feil.alvah@example.com','LR','Mississippi','Zoeport','65947 Hyatt Extension Suite 733',11,'64413','shipping_address'),(12,'Amelie Runte MD','+12562741413','customer@archielite.com','TR','New Jersey','Hermanmouth','357 Lilian Land',12,'24506-3449','shipping_address'),(13,'Ms. Claudine Leffler II','+17065509688','finn.streich@example.net','TV','Georgia','Jakubowskiview','7029 Turner Isle',13,'65951','shipping_address'),(14,'Amelie Runte MD','+12562741413','customer@archielite.com','TR','New Jersey','Hermanmouth','357 Lilian Land',14,'24506-3449','shipping_address'),(15,'Prof. Hettie Lowe Jr.','+19717448824','hanna.schimmel@example.org','GG','Nevada','Walkerport','4412 Denis Tunnel',15,'59171-3885','shipping_address'),(16,'Chaim Mills','+15635811247','sarai66@example.net','NZ','Virginia','West Jarodtown','89192 Douglas Parkways',16,'89880-6976','shipping_address'),(17,'Mr. Hipolito Berge Jr.','+17609633673','btreutel@example.org','TR','Colorado','Cummingsside','4565 Nathaniel Springs Suite 344',17,'33379-2786','shipping_address'),(18,'Miss Santina Beer DDS','+13324393114','imorar@example.com','KP','Oklahoma','South Tressie','7410 Schowalter Turnpike',18,'58349','shipping_address'),(19,'Prof. Hettie Lowe Jr.','+19717448824','hanna.schimmel@example.org','GG','Nevada','Walkerport','4412 Denis Tunnel',19,'59171-3885','shipping_address'),(20,'Prof. Hettie Lowe Jr.','+19717448824','hanna.schimmel@example.org','GG','Nevada','Walkerport','4412 Denis Tunnel',20,'59171-3885','shipping_address'); /*!40000 ALTER TABLE `ec_order_addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_histories` -- DROP TABLE IF EXISTS `ec_order_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_histories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int unsigned DEFAULT NULL, `order_id` int unsigned NOT NULL, `extras` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_histories` -- LOCK TABLES `ec_order_histories` WRITE; /*!40000 ALTER TABLE `ec_order_histories` DISABLE KEYS */; INSERT INTO `ec_order_histories` VALUES (1,'create_order_from_seeder','Order is created from the checkout page',NULL,1,NULL,'2023-01-05 16:10:05','2023-01-05 16:10:05'),(2,'confirm_order','Order was verified by %user_name%',0,1,NULL,'2023-01-05 16:10:05','2023-01-05 16:10:05'),(3,'confirm_payment','Payment was confirmed (amount $4,088.00) by %user_name%',0,1,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(4,'create_shipment','Created shipment for order',0,1,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(5,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,1,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(6,'create_order_from_seeder','Order is created from the checkout page',NULL,2,NULL,'2023-01-16 00:10:05','2023-01-16 00:10:05'),(7,'confirm_order','Order was verified by %user_name%',0,2,NULL,'2023-01-16 00:10:05','2023-01-16 00:10:05'),(8,'confirm_payment','Payment was confirmed (amount $1,029.25) by %user_name%',0,2,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(9,'create_shipment','Created shipment for order',0,2,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(10,'create_order_from_seeder','Order is created from the checkout page',NULL,3,NULL,'2023-01-07 08:10:05','2023-01-07 08:10:05'),(11,'confirm_order','Order was verified by %user_name%',0,3,NULL,'2023-01-07 08:10:05','2023-01-07 08:10:05'),(12,'confirm_payment','Payment was confirmed (amount $1,887.50) by %user_name%',0,3,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(13,'create_shipment','Created shipment for order',0,3,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(14,'create_order_from_seeder','Order is created from the checkout page',NULL,4,NULL,'2023-01-19 12:10:05','2023-01-19 12:10:05'),(15,'confirm_order','Order was verified by %user_name%',0,4,NULL,'2023-01-19 12:10:05','2023-01-19 12:10:05'),(16,'confirm_payment','Payment was confirmed (amount $8,331.00) by %user_name%',0,4,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(17,'create_shipment','Created shipment for order',0,4,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(18,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,4,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(19,'create_order_from_seeder','Order is created from the checkout page',NULL,5,NULL,'2023-01-11 16:10:05','2023-01-11 16:10:05'),(20,'confirm_order','Order was verified by %user_name%',0,5,NULL,'2023-01-11 16:10:05','2023-01-11 16:10:05'),(21,'confirm_payment','Payment was confirmed (amount $4,431.00) by %user_name%',0,5,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(22,'create_shipment','Created shipment for order',0,5,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(23,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,5,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(24,'create_order_from_seeder','Order is created from the checkout page',NULL,6,NULL,'2023-01-14 20:10:05','2023-01-14 20:10:05'),(25,'confirm_order','Order was verified by %user_name%',0,6,NULL,'2023-01-14 20:10:05','2023-01-14 20:10:05'),(26,'confirm_payment','Payment was confirmed (amount $8,256.00) by %user_name%',0,6,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(27,'create_shipment','Created shipment for order',0,6,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(28,'create_order_from_seeder','Order is created from the checkout page',NULL,7,NULL,'2023-01-21 04:10:05','2023-01-21 04:10:05'),(29,'confirm_order','Order was verified by %user_name%',0,7,NULL,'2023-01-21 04:10:05','2023-01-21 04:10:05'),(30,'create_shipment','Created shipment for order',0,7,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(31,'create_order_from_seeder','Order is created from the checkout page',NULL,8,NULL,'2023-01-16 22:10:05','2023-01-16 22:10:05'),(32,'confirm_order','Order was verified by %user_name%',0,8,NULL,'2023-01-16 22:10:05','2023-01-16 22:10:05'),(33,'confirm_payment','Payment was confirmed (amount $6,470.50) by %user_name%',0,8,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(34,'create_shipment','Created shipment for order',0,8,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(35,'create_order_from_seeder','Order is created from the checkout page',NULL,9,NULL,'2023-01-21 08:10:05','2023-01-21 08:10:05'),(36,'confirm_order','Order was verified by %user_name%',0,9,NULL,'2023-01-21 08:10:05','2023-01-21 08:10:05'),(37,'confirm_payment','Payment was confirmed (amount $5,969.00) by %user_name%',0,9,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(38,'create_shipment','Created shipment for order',0,9,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(39,'create_order_from_seeder','Order is created from the checkout page',NULL,10,NULL,'2023-01-18 16:10:05','2023-01-18 16:10:05'),(40,'confirm_order','Order was verified by %user_name%',0,10,NULL,'2023-01-18 16:10:05','2023-01-18 16:10:05'),(41,'create_shipment','Created shipment for order',0,10,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(42,'create_order_from_seeder','Order is created from the checkout page',NULL,11,NULL,'2023-01-16 12:10:05','2023-01-16 12:10:05'),(43,'confirm_order','Order was verified by %user_name%',0,11,NULL,'2023-01-16 12:10:05','2023-01-16 12:10:05'),(44,'confirm_payment','Payment was confirmed (amount $6,293.00) by %user_name%',0,11,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(45,'create_shipment','Created shipment for order',0,11,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(46,'create_order_from_seeder','Order is created from the checkout page',NULL,12,NULL,'2023-01-20 02:10:05','2023-01-20 02:10:05'),(47,'confirm_order','Order was verified by %user_name%',0,12,NULL,'2023-01-20 02:10:05','2023-01-20 02:10:05'),(48,'confirm_payment','Payment was confirmed (amount $2,351.00) by %user_name%',0,12,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(49,'create_shipment','Created shipment for order',0,12,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(50,'create_order_from_seeder','Order is created from the checkout page',NULL,13,NULL,'2023-01-18 08:10:05','2023-01-18 08:10:05'),(51,'confirm_order','Order was verified by %user_name%',0,13,NULL,'2023-01-18 08:10:05','2023-01-18 08:10:05'),(52,'confirm_payment','Payment was confirmed (amount $4,953.00) by %user_name%',0,13,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(53,'create_shipment','Created shipment for order',0,13,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(54,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,13,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(55,'create_order_from_seeder','Order is created from the checkout page',NULL,14,NULL,'2023-01-17 16:10:06','2023-01-17 16:10:06'),(56,'confirm_order','Order was verified by %user_name%',0,14,NULL,'2023-01-17 16:10:06','2023-01-17 16:10:06'),(57,'confirm_payment','Payment was confirmed (amount $1,979.00) by %user_name%',0,14,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(58,'create_shipment','Created shipment for order',0,14,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(59,'create_order_from_seeder','Order is created from the checkout page',NULL,15,NULL,'2023-01-18 08:10:06','2023-01-18 08:10:06'),(60,'confirm_order','Order was verified by %user_name%',0,15,NULL,'2023-01-18 08:10:06','2023-01-18 08:10:06'),(61,'confirm_payment','Payment was confirmed (amount $974.50) by %user_name%',0,15,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(62,'create_shipment','Created shipment for order',0,15,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(63,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,15,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(64,'create_order_from_seeder','Order is created from the checkout page',NULL,16,NULL,'2023-01-21 12:10:06','2023-01-21 12:10:06'),(65,'confirm_order','Order was verified by %user_name%',0,16,NULL,'2023-01-21 12:10:06','2023-01-21 12:10:06'),(66,'create_shipment','Created shipment for order',0,16,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(67,'create_order_from_seeder','Order is created from the checkout page',NULL,17,NULL,'2023-01-19 08:10:06','2023-01-19 08:10:06'),(68,'confirm_order','Order was verified by %user_name%',0,17,NULL,'2023-01-19 08:10:06','2023-01-19 08:10:06'),(69,'create_shipment','Created shipment for order',0,17,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(70,'create_order_from_seeder','Order is created from the checkout page',NULL,18,NULL,'2023-01-19 20:10:06','2023-01-19 20:10:06'),(71,'confirm_order','Order was verified by %user_name%',0,18,NULL,'2023-01-19 20:10:06','2023-01-19 20:10:06'),(72,'confirm_payment','Payment was confirmed (amount $4,841.00) by %user_name%',0,18,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(73,'create_shipment','Created shipment for order',0,18,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(74,'create_order_from_seeder','Order is created from the checkout page',NULL,19,NULL,'2023-01-21 12:10:06','2023-01-21 12:10:06'),(75,'confirm_order','Order was verified by %user_name%',0,19,NULL,'2023-01-21 12:10:06','2023-01-21 12:10:06'),(76,'create_shipment','Created shipment for order',0,19,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(77,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,19,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(78,'create_order_from_seeder','Order is created from the checkout page',NULL,20,NULL,'2023-01-22 02:10:06','2023-01-22 02:10:06'),(79,'confirm_order','Order was verified by %user_name%',0,20,NULL,'2023-01-22 02:10:06','2023-01-22 02:10:06'),(80,'confirm_payment','Payment was confirmed (amount $5,412.00) by %user_name%',0,20,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(81,'create_shipment','Created shipment for order',0,20,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(82,'update_status','Order confirmed by %user_name%',0,1,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(83,'update_status','Order confirmed by %user_name%',0,4,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(84,'update_status','Order confirmed by %user_name%',0,5,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(85,'update_status','Order confirmed by %user_name%',0,13,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(86,'update_status','Order confirmed by %user_name%',0,15,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06'); /*!40000 ALTER TABLE `ec_order_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_product` -- DROP TABLE IF EXISTS `ec_order_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_product` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_id` int unsigned NOT NULL, `qty` int NOT NULL, `price` decimal(15,2) NOT NULL, `tax_amount` decimal(15,2) NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `product_options` text COLLATE utf8mb4_unicode_ci COMMENT 'product option data', `product_id` int unsigned DEFAULT NULL, `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` double(8,2) DEFAULT '0.00', `restock_quantity` int unsigned DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `times_downloaded` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_product` -- LOCK TABLES `ec_order_product` WRITE; /*!40000 ALTER TABLE `ec_order_product` DISABLE KEYS */; INSERT INTO `ec_order_product` VALUES (1,1,2,561.00,0.00,'[]',NULL,101,'B&O Play Mini Bluetooth Speaker','products/14.jpg',1524.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(2,1,2,526.00,0.00,'[]',NULL,109,'Samsung Gear VR Virtual Reality Headset (Digital)','products/17.jpg',1180.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',2),(3,1,2,957.00,0.00,'[]',NULL,167,'Morrisons The Best Beef','products/42.jpg',1386.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(4,2,1,80.25,0.00,'[]',NULL,68,'Dual Camera 20MP (Digital)','products/1.jpg',790.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',9),(5,2,1,949.00,0.00,'[]',NULL,117,'NYX Beauty Couton Pallete Makeup 12','products/20.jpg',774.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(6,3,2,80.25,0.00,'[]',NULL,66,'Dual Camera 20MP (Digital)','products/1.jpg',1580.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',2),(7,3,1,1226.00,0.00,'[]',NULL,115,'NYX Beauty Couton Pallete Makeup 12','products/19-2.jpg',797.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(8,3,1,501.00,0.00,'[]',NULL,143,'Broccoli Crowns','products/31.jpg',655.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(9,4,3,508.00,0.00,'[]',NULL,87,'Samsung Smart Phone (Digital)','products/9-1.jpg',2433.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',1),(10,4,2,1263.00,0.00,'[]',NULL,132,'Soft Mochi & Galeto Ice Cream','products/27-1.jpg',1558.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(11,4,1,1221.00,0.00,'[]',NULL,183,'Arla Organic Free Range Milk','products/50.jpg',822.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(12,4,3,1020.00,0.00,'[]',NULL,201,'Ice Beck’s Beer 350ml x 24 Pieces','products/56-2.jpg',2667.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(13,5,1,555.00,0.00,'[]',NULL,98,'Sound Intone I65 Earphone White Version (Digital)','products/13-1.jpg',766.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',6),(14,5,1,519.00,0.00,'[]',NULL,102,'Apple MacBook Air Retina 13.3-Inch Laptop','products/15.jpg',747.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(15,5,3,1119.00,0.00,'[]',NULL,176,'Famart Farmhouse Soft White','products/47.jpg',2322.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(16,6,3,519.00,0.00,'[]',NULL,104,'Apple MacBook Air Retina 13.3-Inch Laptop','products/15.jpg',2241.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(17,6,1,588.00,0.00,'[]',NULL,105,'Apple MacBook Air Retina 12-Inch Laptop','products/16.jpg',663.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(18,6,3,739.00,0.00,'[]',NULL,153,'Extreme Budweiser Light Can','products/35-1.jpg',1947.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(19,6,3,1298.00,0.00,'[]',NULL,221,'Pice 94w Beasley Journal','products/64-1.jpg',1752.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(20,7,2,587.00,0.00,'[]',NULL,74,'Red & Black Headphone','products/4.jpg',1726.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(21,7,1,1116.00,0.00,'[]',NULL,161,'Wayfair Basics Dinner Plate Storage','products/39.jpg',897.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(22,7,3,1298.00,0.00,'[]',NULL,221,'Pice 94w Beasley Journal','products/64-1.jpg',1752.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(23,8,2,80.25,0.00,'[]',NULL,68,'Dual Camera 20MP (Digital)','products/1.jpg',1580.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',8),(24,8,1,1109.00,0.00,'[]',NULL,85,'Smart Televisions','products/8-2.jpg',521.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(25,8,3,1165.00,0.00,'[]',NULL,123,'Ciate Palemore Lipstick Bold Red Color','products/23.jpg',2460.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(26,8,2,853.00,0.00,'[]',NULL,210,'Iceland Soft Scoop Vanilla','products/59-1.jpg',1416.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(27,9,2,20.00,0.00,'[]',NULL,72,'Beat Headphone','products/3.jpg',1460.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(28,9,2,1263.00,0.00,'[]',NULL,132,'Soft Mochi & Galeto Ice Cream','products/27-1.jpg',1558.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(29,9,2,1142.00,0.00,'[]',NULL,145,'Häagen-Dazs Salted Caramel (Digital)','products/33.jpg',1692.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',5),(30,9,1,1119.00,0.00,'[]',NULL,178,'Famart Farmhouse Soft White','products/47.jpg',774.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(31,10,1,588.00,0.00,'[]',NULL,107,'Apple MacBook Air Retina 12-Inch Laptop','products/16.jpg',663.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(32,10,3,1165.00,0.00,'[]',NULL,123,'Ciate Palemore Lipstick Bold Red Color','products/23.jpg',2460.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(33,10,2,1142.00,0.00,'[]',NULL,145,'Häagen-Dazs Salted Caramel (Digital)','products/33.jpg',1692.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','digital',0),(34,11,3,519.00,0.00,'[]',NULL,104,'Apple MacBook Air Retina 13.3-Inch Laptop','products/15.jpg',2241.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(35,11,2,641.00,0.00,'[]',NULL,156,'Iceland Macaroni Cheese Traybake','products/36.jpg',1290.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(36,11,2,1221.00,0.00,'[]',NULL,185,'Arla Organic Free Range Milk','products/50.jpg',1644.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(37,11,2,506.00,0.00,'[]',NULL,205,'Iceland Luxury 4 Panini Rolls','products/58.jpg',1124.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(38,12,2,40.50,0.00,'[]',NULL,70,'Smart Watches','products/2.jpg',1266.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(39,12,2,1135.00,0.00,'[]',NULL,188,'Aptamil Follow On Baby Milk','products/51.jpg',1496.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','physical',0),(40,13,1,526.00,0.00,'[]',NULL,111,'Samsung Gear VR Virtual Reality Headset (Digital)','products/17-2.jpg',590.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','digital',9),(41,13,1,834.00,0.00,'[]',NULL,164,'Miko The Panda Water Bottle','products/40.jpg',849.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(42,13,3,853.00,0.00,'[]',NULL,210,'Iceland Soft Scoop Vanilla','products/59-1.jpg',2124.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(43,13,2,517.00,0.00,'[]',NULL,217,'Kit Kat Chunky Milk Chocolate','products/62.jpg',1260.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(44,14,1,401.00,0.00,'[]',NULL,80,'Nikon HD camera','products/6.jpg',562.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(45,14,3,526.00,0.00,'[]',NULL,111,'Samsung Gear VR Virtual Reality Headset (Digital)','products/17-2.jpg',1770.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','digital',7),(46,15,3,40.50,0.00,'[]',NULL,70,'Smart Watches','products/2.jpg',1899.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(47,15,1,853.00,0.00,'[]',NULL,211,'Iceland Soft Scoop Vanilla','products/59-2.jpg',708.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(48,16,2,519.00,0.00,'[]',NULL,104,'Apple MacBook Air Retina 13.3-Inch Laptop','products/15.jpg',1494.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(49,16,2,1217.00,0.00,'[]',NULL,151,'Iceland 3 Solo Exotic Burst','products/34.jpg',1110.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(50,16,2,931.00,0.00,'[]',NULL,160,'Sitema BakeIT Plastic Box','products/38.jpg',1014.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(51,17,3,739.00,0.00,'[]',NULL,153,'Extreme Budweiser Light Can','products/35-1.jpg',1947.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(52,17,2,1020.00,0.00,'[]',NULL,201,'Ice Beck’s Beer 350ml x 24 Pieces','products/56-2.jpg',1778.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(53,18,2,561.00,0.00,'[]',NULL,100,'B&O Play Mini Bluetooth Speaker','products/14.jpg',1524.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(54,18,1,1217.00,0.00,'[]',NULL,149,'Iceland 3 Solo Exotic Burst','products/34.jpg',555.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(55,18,3,834.00,0.00,'[]',NULL,163,'Miko The Panda Water Bottle','products/40-1.jpg',2547.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(56,19,2,20.00,0.00,'[]',NULL,73,'Beat Headphone','products/3.jpg',1460.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(57,19,2,560.00,0.00,'[]',NULL,95,'EPSION Plaster Printer','products/12-2.jpg',1494.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(58,19,2,1135.00,0.00,'[]',NULL,189,'Aptamil Follow On Baby Milk','products/51.jpg',1496.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(59,19,1,853.00,0.00,'[]',NULL,210,'Iceland Soft Scoop Vanilla','products/59-1.jpg',708.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(60,20,3,508.00,0.00,'[]',NULL,87,'Samsung Smart Phone (Digital)','products/9-1.jpg',2433.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','digital',6),(61,20,2,561.00,0.00,'[]',NULL,100,'B&O Play Mini Bluetooth Speaker','products/14.jpg',1524.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0),(62,20,1,1060.00,0.00,'[]',NULL,204,'Iceland 6 Hot Cross Buns (Digital)','products/57-1.jpg',853.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','digital',9),(63,20,2,853.00,0.00,'[]',NULL,209,'Iceland Soft Scoop Vanilla','products/59.jpg',1416.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','physical',0); /*!40000 ALTER TABLE `ec_order_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_referrals` -- DROP TABLE IF EXISTS `ec_order_referrals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_referrals` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_page` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_params` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referral` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gclid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fclid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_campaign` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_medium` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_term` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_content` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referrer_url` text COLLATE utf8mb4_unicode_ci, `referrer_domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_order_referrals_order_id_index` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_referrals` -- LOCK TABLES `ec_order_referrals` WRITE; /*!40000 ALTER TABLE `ec_order_referrals` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_referrals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_return_items` -- DROP TABLE IF EXISTS `ec_order_return_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_return_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_return_id` int unsigned NOT NULL COMMENT 'Order return id', `order_product_id` int unsigned NOT NULL COMMENT 'Order product id', `product_id` int unsigned NOT NULL COMMENT 'Product id', `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int NOT NULL COMMENT 'Quantity return', `price` decimal(15,2) NOT NULL COMMENT 'Price Product', `reason` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_return_items` -- LOCK TABLES `ec_order_return_items` WRITE; /*!40000 ALTER TABLE `ec_order_return_items` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_return_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_returns` -- DROP TABLE IF EXISTS `ec_order_returns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_returns` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int unsigned NOT NULL COMMENT 'Order ID', `store_id` int unsigned DEFAULT NULL COMMENT 'Store ID', `user_id` int unsigned NOT NULL COMMENT 'Customer ID', `reason` text COLLATE utf8mb4_unicode_ci COMMENT 'Reason return order', `order_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Order current status', `return_status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Return status', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_order_returns_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_returns` -- LOCK TABLES `ec_order_returns` WRITE; /*!40000 ALTER TABLE `ec_order_returns` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_returns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_orders` -- DROP TABLE IF EXISTS `ec_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_orders` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` int unsigned NOT NULL, `shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `amount` decimal(15,2) NOT NULL, `tax_amount` decimal(15,2) DEFAULT NULL, `shipping_amount` decimal(15,2) DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(15,2) DEFAULT NULL, `sub_total` decimal(15,2) NOT NULL, `is_confirmed` tinyint(1) NOT NULL DEFAULT '0', `discount_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_finished` tinyint(1) DEFAULT '0', `completed_at` timestamp NULL DEFAULT NULL, `token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_orders_code_unique` (`code`), KEY `ec_orders_user_id_status_created_at_index` (`user_id`,`status`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_orders` -- LOCK TABLES `ec_orders` WRITE; /*!40000 ALTER TABLE `ec_orders` DISABLE KEYS */; INSERT INTO `ec_orders` VALUES (1,'#10000001',6,'1','default','completed',4088.00,0.00,0.00,NULL,NULL,0.00,4088.00,1,NULL,1,'2023-01-22 08:10:06','9wZ6GkYWyb65QE1BnTNNJuvcEqdS4',1,'2023-01-05 16:10:05','2023-01-22 08:10:06'),(2,'#10000002',4,'1','default','pending',1029.25,0.00,0.00,NULL,NULL,0.00,1029.25,1,NULL,1,NULL,'6UQQgn6asm7w5X1Izj2F5nC5IUs50',2,'2023-01-16 00:10:05','2023-01-22 08:10:05'),(3,'#10000003',9,'1','default','pending',1887.50,0.00,0.00,NULL,NULL,0.00,1887.50,1,NULL,1,NULL,'rutIyzRRq7VAUMBNxcjGHCHkmSJAU',3,'2023-01-07 08:10:05','2023-01-22 08:10:05'),(4,'#10000004',6,'1','default','completed',8331.00,0.00,0.00,NULL,NULL,0.00,8331.00,1,NULL,1,'2023-01-22 08:10:06','VTNyvS4luoymhoriKncfU3MLs79SP',4,'2023-01-19 12:10:05','2023-01-22 08:10:06'),(5,'#10000005',8,'1','default','completed',4431.00,0.00,0.00,NULL,NULL,0.00,4431.00,1,NULL,1,'2023-01-22 08:10:06','p9mbjQVVDF5gYsXfoC491kJtuIO6K',5,'2023-01-11 16:10:05','2023-01-22 08:10:06'),(6,'#10000006',5,'1','default','pending',8256.00,0.00,0.00,NULL,NULL,0.00,8256.00,1,NULL,1,NULL,'HGWFkRgLxYne0NycgdNPquKGAHRUW',6,'2023-01-14 20:10:05','2023-01-22 08:10:05'),(7,'#10000007',8,'1','default','pending',6184.00,0.00,0.00,NULL,NULL,0.00,6184.00,1,NULL,1,NULL,'Pt03tRZnajAeyF0lcrpDKvLQGjKPq',7,'2023-01-21 04:10:05','2023-01-22 08:10:05'),(8,'#10000008',4,'1','default','pending',6470.50,0.00,0.00,NULL,NULL,0.00,6470.50,1,NULL,1,NULL,'2w7BqpmSsRnPF9GoDeuFDReullPh1',8,'2023-01-16 22:10:05','2023-01-22 08:10:05'),(9,'#10000009',8,'1','default','pending',5969.00,0.00,0.00,NULL,NULL,0.00,5969.00,1,NULL,1,NULL,'8lu2wPA4woFIgXzsYL5y6m0Jlbolk',9,'2023-01-21 08:10:05','2023-01-22 08:10:05'),(10,'#10000010',7,'1','default','pending',6367.00,0.00,0.00,NULL,NULL,0.00,6367.00,1,NULL,1,NULL,'N09k9mMG67iHJbdIhbz6GJp6Mxdtz',10,'2023-01-18 16:10:05','2023-01-22 08:10:05'),(11,'#10000011',7,'1','default','pending',6293.00,0.00,0.00,NULL,NULL,0.00,6293.00,1,NULL,1,NULL,'QPgzTudS8swj4aJGO5cEv31gv91nG',11,'2023-01-16 12:10:05','2023-01-22 08:10:05'),(12,'#10000012',1,'1','default','pending',2351.00,0.00,0.00,NULL,NULL,0.00,2351.00,1,NULL,1,NULL,'WhRG2LIECh7riv8yKp5i5JOEdOGEl',12,'2023-01-20 02:10:05','2023-01-22 08:10:05'),(13,'#10000013',4,'1','default','completed',4953.00,0.00,0.00,NULL,NULL,0.00,4953.00,1,NULL,1,'2023-01-22 08:10:06','XwaQG6lr6YsnHphBblL7F7MDZR4Jc',13,'2023-01-18 08:10:05','2023-01-22 08:10:06'),(14,'#10000014',1,'1','default','pending',1979.00,0.00,0.00,NULL,NULL,0.00,1979.00,1,NULL,1,NULL,'tGTX1j0Ymkfkh6bcNrNix0nzN9hvK',14,'2023-01-17 16:10:06','2023-01-22 08:10:06'),(15,'#10000015',9,'1','default','completed',974.50,0.00,0.00,NULL,NULL,0.00,974.50,1,NULL,1,'2023-01-22 08:10:06','pyZDVxKDBKP3WmThOPRWcCikybbEu',15,'2023-01-18 08:10:06','2023-01-22 08:10:06'),(16,'#10000016',2,'1','default','pending',5334.00,0.00,0.00,NULL,NULL,0.00,5334.00,1,NULL,1,NULL,'7DYTrLqqewJmLlBriy3z03AUuerJA',16,'2023-01-21 12:10:06','2023-01-22 08:10:06'),(17,'#10000017',8,'1','default','pending',4257.00,0.00,0.00,NULL,NULL,0.00,4257.00,1,NULL,1,NULL,'jEa0M51QofkGcXnxmusyx1QlEJleg',17,'2023-01-19 08:10:06','2023-01-22 08:10:06'),(18,'#10000018',6,'1','default','pending',4841.00,0.00,0.00,NULL,NULL,0.00,4841.00,1,NULL,1,NULL,'zWIiQ5Dj2d0EAJDBMZB1GAkBsFsCo',18,'2023-01-19 20:10:06','2023-01-22 08:10:06'),(19,'#10000019',9,'1','default','completed',4283.00,0.00,0.00,NULL,NULL,0.00,4283.00,1,NULL,1,'2023-01-22 08:10:06','E5zIROEyp5uH5QLM00VmQPmeUCxst',19,'2023-01-21 12:10:06','2023-01-22 08:10:06'),(20,'#10000020',9,'1','default','pending',5412.00,0.00,0.00,NULL,NULL,0.00,5412.00,1,NULL,1,NULL,'P5DZ2eK72tv4tH43qcvZCWYocq24N',20,'2023-01-22 02:10:06','2023-01-22 08:10:06'); /*!40000 ALTER TABLE `ec_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attribute_sets` -- DROP TABLE IF EXISTS `ec_product_attribute_sets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attribute_sets` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `display_layout` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'swatch_dropdown', `is_searchable` tinyint unsigned NOT NULL DEFAULT '1', `is_comparable` tinyint unsigned NOT NULL DEFAULT '1', `is_use_in_product_listing` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `use_image_from_product_variation` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attribute_sets` -- LOCK TABLES `ec_product_attribute_sets` WRITE; /*!40000 ALTER TABLE `ec_product_attribute_sets` DISABLE KEYS */; INSERT INTO `ec_product_attribute_sets` VALUES (1,'Color','color','visual',1,1,1,'published',0,'2023-01-22 08:09:59','2023-01-22 08:09:59',0),(2,'Size','size','text',1,1,1,'published',1,'2023-01-22 08:09:59','2023-01-22 08:09:59',0),(3,'Weight','weight','text',1,1,1,'published',0,'2023-01-22 08:09:59','2023-01-22 08:09:59',0),(4,'Boxes','boxes','text',1,1,1,'published',1,'2023-01-22 08:09:59','2023-01-22 08:09:59',0); /*!40000 ALTER TABLE `ec_product_attribute_sets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attribute_sets_translations` -- DROP TABLE IF EXISTS `ec_product_attribute_sets_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attribute_sets_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_attribute_sets_id` int NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_attribute_sets_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attribute_sets_translations` -- LOCK TABLES `ec_product_attribute_sets_translations` WRITE; /*!40000 ALTER TABLE `ec_product_attribute_sets_translations` DISABLE KEYS */; INSERT INTO `ec_product_attribute_sets_translations` VALUES ('vi',1,'Màu sắc'),('vi',2,'Kích thước'); /*!40000 ALTER TABLE `ec_product_attribute_sets_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attributes` -- DROP TABLE IF EXISTS `ec_product_attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attributes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `attribute_set_id` int unsigned NOT NULL, `title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `order` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_product_attributes_attribute_set_id_status_index` (`attribute_set_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attributes` -- LOCK TABLES `ec_product_attributes` WRITE; /*!40000 ALTER TABLE `ec_product_attributes` DISABLE KEYS */; INSERT INTO `ec_product_attributes` VALUES (1,1,'Green','green','#5FB7D4',NULL,1,1,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(2,1,'Blue','blue','#333333',NULL,0,2,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(3,1,'Red','red','#DA323F',NULL,0,3,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(4,1,'Black','back','#2F366C',NULL,0,4,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(5,1,'Brown','brown','#87554B',NULL,0,5,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(6,2,'S','s',NULL,NULL,1,1,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(7,2,'M','m',NULL,NULL,0,2,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(8,2,'L','l',NULL,NULL,0,3,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(9,2,'XL','xl',NULL,NULL,0,4,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(10,2,'XXL','xxl',NULL,NULL,0,5,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(11,3,'1KG','1kg',NULL,NULL,1,1,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(12,3,'2KG','2kg',NULL,NULL,0,2,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(13,3,'3KG','3kg',NULL,NULL,0,3,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(14,3,'4KG','4kg',NULL,NULL,0,4,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(15,3,'5KG','5kg',NULL,NULL,0,5,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(16,4,'1 Box','1box',NULL,NULL,1,1,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(17,4,'2 Boxes','2boxes',NULL,NULL,0,2,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(18,4,'3 Boxes','3boxes',NULL,NULL,0,3,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(19,4,'4 Boxes','4boxes',NULL,NULL,0,4,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'),(20,4,'5 Boxes','5boxes',NULL,NULL,0,5,'published','2023-01-22 08:09:59','2023-01-22 08:09:59'); /*!40000 ALTER TABLE `ec_product_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attributes_translations` -- DROP TABLE IF EXISTS `ec_product_attributes_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attributes_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_attributes_id` int NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_attributes_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attributes_translations` -- LOCK TABLES `ec_product_attributes_translations` WRITE; /*!40000 ALTER TABLE `ec_product_attributes_translations` DISABLE KEYS */; INSERT INTO `ec_product_attributes_translations` VALUES ('vi',1,'Xanh lá cây'),('vi',2,'Xanh da trời'),('vi',3,'Đỏ'),('vi',4,'Đen'),('vi',5,'Nâu'),('vi',6,'S'),('vi',7,'M'),('vi',8,'L'),('vi',9,'XL'),('vi',10,'XXL'),('vi',11,'1KG'),('vi',12,'2KG'),('vi',13,'3KG'),('vi',14,'4KG'),('vi',15,'5KG'),('vi',16,'1 Hộp'),('vi',17,'2 Hộp'),('vi',18,'3 Hộp'),('vi',19,'4 Hộp'),('vi',20,'5 Hộp'); /*!40000 ALTER TABLE `ec_product_attributes_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_categories` -- DROP TABLE IF EXISTS `ec_product_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` int unsigned NOT NULL DEFAULT '0', `description` mediumtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` int unsigned NOT NULL DEFAULT '0', `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_product_categories_parent_id_status_created_at_index` (`parent_id`,`status`,`created_at`), KEY `ec_product_categories_parent_id_status_index` (`parent_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_categories` -- LOCK TABLES `ec_product_categories` WRITE; /*!40000 ALTER TABLE `ec_product_categories` DISABLE KEYS */; INSERT INTO `ec_product_categories` VALUES (1,'Desktop PC',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',1,'product-categories/1.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(2,'Headphone',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',2,'product-categories/2.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(3,'Laptop',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',3,'product-categories/3.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(4,'Mobile Phone',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',4,'product-categories/4.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(5,'Printer',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',5,'product-categories/5.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(6,'Books',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',6,'product-categories/6.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(7,'Tablet',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',7,'product-categories/7.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(8,'USB Flash',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',8,'product-categories/8.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(9,'Game Mouse',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',9,'product-categories/9.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(10,'Security',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',10,'product-categories/10.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(11,'Watch',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',11,'product-categories/11.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'),(12,'Scaner',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',12,'product-categories/12.png',1,'2023-01-22 08:09:40','2023-01-22 08:09:40'); /*!40000 ALTER TABLE `ec_product_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_categories_translations` -- DROP TABLE IF EXISTS `ec_product_categories_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_categories_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_categories_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`ec_product_categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_categories_translations` -- LOCK TABLES `ec_product_categories_translations` WRITE; /*!40000 ALTER TABLE `ec_product_categories_translations` DISABLE KEYS */; INSERT INTO `ec_product_categories_translations` VALUES ('vi',1,'Máy tính để bàn','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',2,'Tai nghe','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',3,'Máy tính xách tay','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',4,'Điện thoại di động','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',5,'Máy in','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',6,'Sách','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',7,'Máy tính bảng','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',8,'Ổ USB','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',9,'Chuột chơi game','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',10,'Bảo mật','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',11,'Đồng hồ','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'),('vi',12,'Máy quét','Từ năm này qua năm khác, chúng tôi cố gắng phát minh ra công nghệ tiên tiến nhất được cả các doanh nghiệp nhỏ và doanh nghiệp vũ trụ sử dụng.'); /*!40000 ALTER TABLE `ec_product_categories_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_category_product` -- DROP TABLE IF EXISTS `ec_product_category_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_category_product` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `category_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_product_category_product_category_id_index` (`category_id`), KEY `ec_product_category_product_product_id_index` (`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=250 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_category_product` -- LOCK TABLES `ec_product_category_product` WRITE; /*!40000 ALTER TABLE `ec_product_category_product` DISABLE KEYS */; INSERT INTO `ec_product_category_product` VALUES (1,7,1),(2,26,1),(3,27,1),(4,17,1),(5,1,2),(6,28,2),(7,17,2),(8,37,3),(9,15,3),(10,22,3),(11,18,4),(12,11,4),(13,19,4),(14,15,4),(15,10,5),(16,27,5),(17,29,5),(18,31,5),(19,23,6),(20,26,6),(21,14,6),(22,15,6),(23,16,7),(24,1,7),(25,18,7),(26,22,8),(27,26,8),(28,29,8),(29,31,8),(30,14,9),(31,9,9),(32,16,9),(33,10,10),(34,35,10),(35,2,10),(36,29,10),(37,21,11),(38,6,11),(39,7,11),(40,36,11),(41,7,12),(42,32,12),(43,5,12),(44,37,12),(45,37,13),(46,27,13),(47,23,13),(48,31,14),(49,14,14),(50,29,14),(51,36,14),(52,10,15),(53,17,15),(54,15,15),(55,29,15),(56,18,16),(57,5,16),(58,6,16),(59,17,16),(60,19,17),(61,23,17),(62,21,17),(63,36,17),(64,13,18),(65,12,18),(66,7,18),(67,18,18),(68,30,19),(69,1,19),(70,3,19),(71,33,19),(72,12,20),(73,35,20),(74,19,20),(75,17,21),(76,22,21),(77,28,21),(78,27,21),(79,35,22),(80,34,22),(81,3,22),(82,17,22),(83,12,23),(84,9,23),(85,27,23),(86,31,23),(87,21,24),(88,6,24),(89,34,24),(90,32,24),(91,29,25),(92,5,25),(93,2,25),(94,21,25),(95,26,26),(96,2,26),(97,16,26),(98,6,27),(99,35,27),(100,8,27),(101,15,27),(102,34,28),(103,1,28),(104,12,28),(105,32,28),(106,25,29),(107,11,29),(108,12,29),(109,28,29),(110,35,30),(111,28,30),(112,21,30),(113,20,30),(114,31,31),(115,37,31),(116,3,31),(117,17,31),(118,36,32),(119,2,32),(120,37,32),(121,33,32),(122,36,33),(123,3,33),(124,7,33),(125,37,33),(126,5,34),(127,18,34),(128,21,34),(129,25,34),(130,10,35),(131,37,35),(132,27,35),(133,34,35),(134,37,36),(135,4,36),(136,26,36),(137,19,36),(138,31,37),(139,24,37),(140,12,37),(141,30,37),(142,20,38),(143,17,38),(144,13,38),(145,25,38),(146,29,39),(147,8,39),(148,31,39),(149,16,39),(150,36,40),(151,15,40),(152,18,40),(153,16,40),(154,25,41),(155,27,41),(156,4,41),(157,18,41),(158,2,42),(159,12,42),(160,8,42),(161,33,42),(162,5,43),(163,10,43),(164,11,43),(165,28,43),(166,35,44),(167,25,44),(168,5,44),(169,37,44),(170,15,45),(171,4,45),(172,30,45),(173,16,45),(174,10,46),(175,15,46),(176,19,46),(177,35,46),(178,31,47),(179,11,47),(180,3,47),(181,30,47),(182,16,48),(183,14,48),(184,30,48),(185,36,48),(186,26,49),(187,23,49),(188,37,49),(189,24,49),(190,28,50),(191,34,50),(192,11,50),(193,26,50),(194,12,51),(195,14,51),(196,37,51),(197,35,51),(198,32,52),(199,7,52),(200,2,52),(201,31,52),(202,23,53),(203,11,53),(204,10,53),(205,17,53),(206,34,54),(207,12,54),(208,23,54),(209,19,54),(210,3,55),(211,7,55),(212,16,55),(213,37,55),(214,14,56),(215,19,56),(216,9,56),(217,33,57),(218,31,57),(219,26,57),(220,6,58),(221,22,58),(222,37,58),(223,34,59),(224,22,59),(225,21,59),(226,17,60),(227,30,60),(228,28,60),(229,19,60),(230,28,61),(231,17,61),(232,8,61),(233,26,61),(234,27,62),(235,18,62),(236,12,62),(237,36,62),(238,28,63),(239,35,63),(240,1,63),(241,36,63),(242,36,64),(243,27,64),(244,15,64),(245,29,64),(246,29,65),(247,16,65),(248,8,65),(249,15,65); /*!40000 ALTER TABLE `ec_product_category_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_collection_products` -- DROP TABLE IF EXISTS `ec_product_collection_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_collection_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_collection_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_product_collection_products_product_collection_id_index` (`product_collection_id`), KEY `ec_product_collection_products_product_id_index` (`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_collection_products` -- LOCK TABLES `ec_product_collection_products` WRITE; /*!40000 ALTER TABLE `ec_product_collection_products` DISABLE KEYS */; INSERT INTO `ec_product_collection_products` VALUES (1,1,1),(2,1,2),(3,3,3),(4,2,4),(5,2,5),(6,3,6),(7,1,7),(8,1,8),(9,2,9),(10,2,10),(11,2,11),(12,2,12),(13,3,13),(14,3,14),(15,3,15),(16,2,16),(17,2,17),(18,2,18),(19,3,19),(20,3,20),(21,3,21),(22,2,22),(23,2,23),(24,1,24),(25,2,25),(26,2,26),(27,3,27),(28,3,28),(29,2,29),(30,1,30),(31,3,31),(32,1,32),(33,3,33),(34,3,34),(35,2,35),(36,2,36),(37,2,37),(38,1,38),(39,1,39),(40,1,40),(41,1,41),(42,2,42),(43,3,43),(44,1,44),(45,2,45),(46,1,46),(47,1,47),(48,2,48),(49,2,49),(50,1,50),(51,2,51),(52,3,52),(53,2,53),(54,3,54),(55,1,55),(56,3,56),(57,3,57),(58,3,58),(59,2,59),(60,2,60),(61,1,61),(62,2,62),(63,2,63),(64,2,64),(65,3,65); /*!40000 ALTER TABLE `ec_product_collection_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_collections` -- DROP TABLE IF EXISTS `ec_product_collections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_collections` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `is_featured` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_collections` -- LOCK TABLES `ec_product_collections` WRITE; /*!40000 ALTER TABLE `ec_product_collections` DISABLE KEYS */; INSERT INTO `ec_product_collections` VALUES (1,'New Arrival','new-arrival',NULL,NULL,'published','2023-01-22 08:09:40','2023-01-22 08:09:40',0),(2,'Best Sellers','best-sellers',NULL,NULL,'published','2023-01-22 08:09:40','2023-01-22 08:09:40',0),(3,'Special Offer','special-offer',NULL,NULL,'published','2023-01-22 08:09:40','2023-01-22 08:09:40',0); /*!40000 ALTER TABLE `ec_product_collections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_collections_translations` -- DROP TABLE IF EXISTS `ec_product_collections_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_collections_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_collections_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_collections_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_collections_translations` -- LOCK TABLES `ec_product_collections_translations` WRITE; /*!40000 ALTER TABLE `ec_product_collections_translations` DISABLE KEYS */; INSERT INTO `ec_product_collections_translations` VALUES ('vi',1,'Hàng mới về',NULL),('vi',2,'Bán chạy nhất',NULL),('vi',3,'Khuyến mãi đặc biệt',NULL); /*!40000 ALTER TABLE `ec_product_collections_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_cross_sale_relations` -- DROP TABLE IF EXISTS `ec_product_cross_sale_relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_cross_sale_relations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `from_product_id` int unsigned NOT NULL, `to_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_product_cross_sale_relations_from_product_id_index` (`from_product_id`), KEY `ec_product_cross_sale_relations_to_product_id_index` (`to_product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=389 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_cross_sale_relations` -- LOCK TABLES `ec_product_cross_sale_relations` WRITE; /*!40000 ALTER TABLE `ec_product_cross_sale_relations` DISABLE KEYS */; INSERT INTO `ec_product_cross_sale_relations` VALUES (1,1,7),(2,1,2),(3,1,16),(4,1,3),(5,1,10),(6,1,6),(7,1,4),(8,2,4),(9,2,12),(10,2,20),(11,2,16),(12,2,13),(13,2,7),(14,3,8),(15,3,14),(16,3,17),(17,3,11),(18,3,2),(19,4,7),(20,4,14),(21,4,1),(22,4,5),(23,4,3),(24,5,10),(25,5,14),(26,5,13),(27,5,9),(28,5,8),(29,5,4),(30,6,19),(31,6,11),(32,6,18),(33,6,5),(34,6,12),(35,6,8),(36,6,9),(37,7,13),(38,7,11),(39,7,15),(40,7,18),(41,7,8),(42,7,4),(43,8,1),(44,8,3),(45,8,11),(46,8,14),(47,8,17),(48,8,13),(49,9,3),(50,9,15),(51,9,10),(52,9,7),(53,9,8),(54,9,16),(55,10,13),(56,10,3),(57,10,5),(58,10,17),(59,10,18),(60,10,6),(61,11,14),(62,11,10),(63,11,2),(64,11,17),(65,11,13),(66,11,7),(67,12,3),(68,12,11),(69,12,2),(70,12,15),(71,12,16),(72,12,7),(73,12,10),(74,13,1),(75,13,12),(76,13,5),(77,13,14),(78,13,17),(79,13,11),(80,14,16),(81,14,6),(82,14,13),(83,14,20),(84,14,9),(85,14,15),(86,15,1),(87,15,17),(88,15,12),(89,15,4),(90,15,20),(91,15,16),(92,15,3),(93,16,18),(94,16,15),(95,16,11),(96,16,10),(97,16,17),(98,16,13),(99,17,14),(100,17,13),(101,17,12),(102,17,11),(103,17,6),(104,17,3),(105,18,13),(106,18,8),(107,18,16),(108,18,15),(109,18,10),(110,18,5),(111,19,9),(112,19,4),(113,19,7),(114,19,11),(115,19,15),(116,19,13),(117,20,18),(118,20,7),(119,20,14),(120,20,9),(121,20,16),(122,20,8),(123,21,10),(124,21,9),(125,21,18),(126,21,11),(127,21,1),(128,21,12),(129,22,18),(130,22,5),(131,22,9),(132,22,4),(133,22,10),(134,23,18),(135,23,12),(136,23,11),(137,23,14),(138,23,13),(139,23,4),(140,23,9),(141,24,6),(142,24,12),(143,24,9),(144,24,14),(145,24,5),(146,24,18),(147,25,4),(148,25,11),(149,25,16),(150,25,10),(151,25,8),(152,25,5),(153,26,10),(154,26,7),(155,26,9),(156,26,5),(157,26,12),(158,26,3),(159,27,1),(160,27,18),(161,27,6),(162,27,3),(163,27,13),(164,27,14),(165,28,13),(166,28,2),(167,28,9),(168,28,15),(169,28,18),(170,28,3),(171,28,10),(172,29,1),(173,29,7),(174,29,19),(175,29,10),(176,30,7),(177,30,16),(178,30,10),(179,30,15),(180,30,1),(181,30,8),(182,31,12),(183,31,5),(184,31,10),(185,31,19),(186,31,8),(187,31,17),(188,31,4),(189,32,12),(190,32,13),(191,32,1),(192,32,3),(193,33,12),(194,33,9),(195,33,3),(196,33,4),(197,33,16),(198,33,17),(199,33,5),(200,34,14),(201,34,9),(202,34,18),(203,34,13),(204,34,8),(205,35,3),(206,35,2),(207,35,18),(208,35,15),(209,35,12),(210,35,16),(211,36,19),(212,36,6),(213,36,13),(214,36,7),(215,36,12),(216,36,17),(217,37,4),(218,37,2),(219,37,1),(220,37,17),(221,37,13),(222,37,5),(223,38,16),(224,38,12),(225,38,14),(226,38,17),(227,38,6),(228,38,1),(229,38,18),(230,39,1),(231,39,4),(232,39,9),(233,39,11),(234,39,15),(235,40,13),(236,40,8),(237,40,11),(238,40,19),(239,40,3),(240,41,8),(241,41,5),(242,41,10),(243,41,9),(244,41,4),(245,41,19),(246,42,11),(247,42,13),(248,42,14),(249,42,7),(250,42,10),(251,43,9),(252,43,13),(253,43,11),(254,43,7),(255,43,4),(256,44,14),(257,44,1),(258,44,8),(259,44,17),(260,44,6),(261,45,12),(262,45,9),(263,45,4),(264,45,14),(265,45,16),(266,45,7),(267,46,7),(268,46,3),(269,46,9),(270,46,17),(271,46,8),(272,46,5),(273,46,13),(274,47,2),(275,47,7),(276,47,5),(277,47,6),(278,47,12),(279,47,4),(280,48,9),(281,48,16),(282,48,7),(283,48,19),(284,48,3),(285,48,6),(286,49,2),(287,49,13),(288,49,15),(289,49,17),(290,49,7),(291,49,9),(292,49,6),(293,50,19),(294,50,5),(295,50,10),(296,50,17),(297,50,15),(298,50,6),(299,51,6),(300,51,5),(301,51,4),(302,51,12),(303,51,19),(304,52,3),(305,52,15),(306,52,17),(307,52,13),(308,52,6),(309,53,7),(310,53,15),(311,53,2),(312,53,9),(313,53,17),(314,54,3),(315,54,9),(316,54,11),(317,54,8),(318,54,1),(319,54,19),(320,54,15),(321,55,5),(322,55,4),(323,55,2),(324,55,1),(325,55,6),(326,55,9),(327,56,19),(328,56,13),(329,56,14),(330,56,1),(331,56,10),(332,56,11),(333,57,1),(334,57,17),(335,57,9),(336,57,8),(337,57,14),(338,58,4),(339,58,8),(340,58,1),(341,58,3),(342,58,5),(343,58,10),(344,58,16),(345,59,18),(346,59,16),(347,59,9),(348,59,11),(349,59,8),(350,59,7),(351,60,12),(352,60,7),(353,60,19),(354,60,6),(355,60,5),(356,60,16),(357,61,17),(358,61,14),(359,61,7),(360,61,16),(361,61,10),(362,61,2),(363,61,12),(364,62,16),(365,62,13),(366,62,8),(367,62,5),(368,62,9),(369,62,4),(370,63,19),(371,63,7),(372,63,14),(373,63,11),(374,63,18),(375,63,1),(376,63,13),(377,64,4),(378,64,7),(379,64,18),(380,64,6),(381,64,19),(382,64,17),(383,65,4),(384,65,17),(385,65,1),(386,65,12),(387,65,5),(388,65,6); /*!40000 ALTER TABLE `ec_product_cross_sale_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_files` -- DROP TABLE IF EXISTS `ec_product_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_files` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` int DEFAULT NULL, `url` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `extras` mediumtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_product_files_product_id_index` (`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_files` -- LOCK TABLES `ec_product_files` WRITE; /*!40000 ALTER TABLE `ec_product_files` DISABLE KEYS */; INSERT INTO `ec_product_files` VALUES (1,66,'product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"1\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(2,67,'product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"1\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(3,68,'product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"1\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(4,69,'product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"1\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(5,76,'product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"5\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(6,76,'product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(7,76,'product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(8,76,'product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:56\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2023-01-22 08:09:56','2023-01-22 08:09:56'),(9,86,'product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(10,86,'product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(11,86,'product-files/9-2.jpg','{\"filename\":\"9-2.jpg\",\"url\":\"product-files\\/9-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(12,87,'product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(13,87,'product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(14,87,'product-files/9-2.jpg','{\"filename\":\"9-2.jpg\",\"url\":\"product-files\\/9-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(15,88,'product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(16,88,'product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(17,88,'product-files/9-2.jpg','{\"filename\":\"9-2.jpg\",\"url\":\"product-files\\/9-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(18,89,'product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(19,89,'product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(20,89,'product-files/9-2.jpg','{\"filename\":\"9-2.jpg\",\"url\":\"product-files\\/9-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"9-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(21,97,'product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"13\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(22,97,'product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(23,98,'product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"13\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(24,98,'product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(25,99,'product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"13\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(26,99,'product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(27,109,'product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(28,109,'product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(29,109,'product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(30,109,'product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(31,110,'product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(32,110,'product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(33,110,'product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(34,110,'product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(35,111,'product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(36,111,'product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(37,111,'product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(38,111,'product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(39,118,'product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(40,118,'product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(41,118,'product-files/21-2.jpg','{\"filename\":\"21-2.jpg\",\"url\":\"product-files\\/21-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(42,119,'product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(43,119,'product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(44,119,'product-files/21-2.jpg','{\"filename\":\"21-2.jpg\",\"url\":\"product-files\\/21-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(45,120,'product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(46,120,'product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(47,120,'product-files/21-2.jpg','{\"filename\":\"21-2.jpg\",\"url\":\"product-files\\/21-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"21-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(48,127,'product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"25\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(49,127,'product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(50,127,'product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(51,128,'product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"25\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(52,128,'product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(53,128,'product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(54,136,'product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"29\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(55,136,'product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(56,136,'product-files/29-2.jpg','{\"filename\":\"29-2.jpg\",\"url\":\"product-files\\/29-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"29-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(57,145,'product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"33\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(58,145,'product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:57\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:57','2023-01-22 08:09:57'),(59,145,'product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(60,146,'product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(61,146,'product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(62,146,'product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(63,147,'product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(64,147,'product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(65,147,'product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(66,148,'product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(67,148,'product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(68,148,'product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(69,157,'product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(70,157,'product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(71,157,'product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(72,158,'product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(73,158,'product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(74,158,'product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(75,159,'product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(76,159,'product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(77,159,'product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(78,165,'product-files/41.jpg','{\"filename\":\"41.jpg\",\"url\":\"product-files\\/41.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"41\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(79,165,'product-files/41-1.jpg','{\"filename\":\"41-1.jpg\",\"url\":\"product-files\\/41-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"41-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(80,165,'product-files/41-2.jpg','{\"filename\":\"41-2.jpg\",\"url\":\"product-files\\/41-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"41-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(81,166,'product-files/41.jpg','{\"filename\":\"41.jpg\",\"url\":\"product-files\\/41.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"41\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(82,166,'product-files/41-1.jpg','{\"filename\":\"41-1.jpg\",\"url\":\"product-files\\/41-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"41-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(83,166,'product-files/41-2.jpg','{\"filename\":\"41-2.jpg\",\"url\":\"product-files\\/41-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"41-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(84,173,'product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"45\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(85,173,'product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(86,180,'product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(87,180,'product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(88,180,'product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(89,181,'product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(90,181,'product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(91,181,'product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(92,182,'product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(93,182,'product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(94,182,'product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:58\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:58','2023-01-22 08:09:58'),(95,193,'product-files/53.jpg','{\"filename\":\"53.jpg\",\"url\":\"product-files\\/53.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"53\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(96,193,'product-files/53-1.jpg','{\"filename\":\"53-1.jpg\",\"url\":\"product-files\\/53-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"53-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(97,194,'product-files/53.jpg','{\"filename\":\"53.jpg\",\"url\":\"product-files\\/53.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"53\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(98,194,'product-files/53-1.jpg','{\"filename\":\"53-1.jpg\",\"url\":\"product-files\\/53-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"53-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(99,203,'product-files/57.jpg','{\"filename\":\"57.jpg\",\"url\":\"product-files\\/57.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"57\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(100,203,'product-files/57-1.jpg','{\"filename\":\"57-1.jpg\",\"url\":\"product-files\\/57-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"57-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(101,204,'product-files/57.jpg','{\"filename\":\"57.jpg\",\"url\":\"product-files\\/57.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"57\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(102,204,'product-files/57-1.jpg','{\"filename\":\"57-1.jpg\",\"url\":\"product-files\\/57-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"57-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(103,214,'product-files/61.jpg','{\"filename\":\"61.jpg\",\"url\":\"product-files\\/61.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"61\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(104,214,'product-files/61-1.jpg','{\"filename\":\"61-1.jpg\",\"url\":\"product-files\\/61-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"61-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(105,222,'product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(106,222,'product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(107,222,'product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(108,223,'product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(109,223,'product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(110,223,'product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(111,224,'product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(112,224,'product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'),(113,224,'product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":2165,\"modified\":\"2023-01-22 15:09:59\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2023-01-22 08:09:59','2023-01-22 08:09:59'); /*!40000 ALTER TABLE `ec_product_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_label_products` -- DROP TABLE IF EXISTS `ec_product_label_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_label_products` ( `product_label_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, PRIMARY KEY (`product_label_id`,`product_id`), KEY `ec_product_label_products_product_label_id_index` (`product_label_id`), KEY `ec_product_label_products_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_label_products` -- LOCK TABLES `ec_product_label_products` WRITE; /*!40000 ALTER TABLE `ec_product_label_products` DISABLE KEYS */; INSERT INTO `ec_product_label_products` VALUES (1,3),(1,9),(1,12),(1,18),(1,21),(1,24),(1,27),(1,33),(1,42),(1,45),(1,51),(1,63),(2,6),(2,30),(2,36),(2,60),(3,15),(3,39),(3,48),(3,54),(3,57); /*!40000 ALTER TABLE `ec_product_label_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_labels` -- DROP TABLE IF EXISTS `ec_product_labels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_labels` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `color` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_labels` -- LOCK TABLES `ec_product_labels` WRITE; /*!40000 ALTER TABLE `ec_product_labels` DISABLE KEYS */; INSERT INTO `ec_product_labels` VALUES (1,'Hot','#ec2434','published','2023-01-22 08:09:40','2023-01-22 08:09:40'),(2,'New','#00c9a7','published','2023-01-22 08:09:40','2023-01-22 08:09:40'),(3,'Sale','#fe9931','published','2023-01-22 08:09:40','2023-01-22 08:09:40'); /*!40000 ALTER TABLE `ec_product_labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_labels_translations` -- DROP TABLE IF EXISTS `ec_product_labels_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_labels_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_labels_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_labels_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_labels_translations` -- LOCK TABLES `ec_product_labels_translations` WRITE; /*!40000 ALTER TABLE `ec_product_labels_translations` DISABLE KEYS */; INSERT INTO `ec_product_labels_translations` VALUES ('vi',1,'Nổi bật',NULL),('vi',2,'Mới',NULL),('vi',3,'Giảm giá',NULL); /*!40000 ALTER TABLE `ec_product_labels_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_related_relations` -- DROP TABLE IF EXISTS `ec_product_related_relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_related_relations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `from_product_id` int unsigned NOT NULL, `to_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_product_related_relations_from_product_id_index` (`from_product_id`), KEY `ec_product_related_relations_to_product_id_index` (`to_product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_related_relations` -- LOCK TABLES `ec_product_related_relations` WRITE; /*!40000 ALTER TABLE `ec_product_related_relations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_related_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_tag_product` -- DROP TABLE IF EXISTS `ec_product_tag_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_tag_product` ( `product_id` int unsigned NOT NULL, `tag_id` int unsigned NOT NULL, PRIMARY KEY (`product_id`,`tag_id`), KEY `ec_product_tag_product_product_id_index` (`product_id`), KEY `ec_product_tag_product_tag_id_index` (`tag_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tag_product` -- LOCK TABLES `ec_product_tag_product` WRITE; /*!40000 ALTER TABLE `ec_product_tag_product` DISABLE KEYS */; INSERT INTO `ec_product_tag_product` VALUES (1,3),(1,4),(2,4),(2,5),(2,6),(3,4),(3,5),(3,6),(4,1),(4,4),(4,6),(5,1),(5,5),(6,1),(6,2),(6,3),(7,2),(7,4),(8,2),(8,4),(8,6),(9,1),(9,2),(9,4),(10,2),(10,3),(10,4),(11,3),(12,2),(12,3),(13,4),(13,5),(14,2),(14,3),(14,6),(15,4),(15,5),(15,6),(16,4),(16,5),(16,6),(17,3),(17,4),(18,1),(18,4),(18,5),(19,1),(19,3),(19,6),(20,1),(20,5),(20,6),(21,1),(21,2),(21,3),(22,3),(22,4),(22,5),(23,1),(23,2),(23,4),(24,1),(24,5),(24,6),(25,1),(25,2),(25,3),(26,1),(26,2),(26,5),(27,3),(27,6),(28,2),(28,4),(29,1),(29,2),(29,4),(30,1),(30,2),(30,3),(31,1),(31,4),(31,6),(32,1),(32,4),(32,6),(33,2),(33,5),(34,3),(34,4),(34,5),(35,1),(35,2),(36,2),(36,3),(36,4),(37,1),(37,4),(37,6),(38,1),(38,5),(38,6),(39,3),(39,5),(40,1),(40,5),(41,1),(41,4),(41,5),(42,4),(43,1),(43,3),(43,5),(44,1),(44,2),(45,2),(45,6),(46,2),(46,3),(46,5),(47,3),(47,5),(48,1),(48,4),(48,6),(49,3),(49,4),(50,2),(50,5),(50,6),(51,4),(51,5),(52,1),(52,2),(52,3),(53,2),(53,4),(54,2),(54,5),(54,6),(55,3),(55,4),(55,6),(56,2),(56,5),(57,1),(57,2),(58,4),(58,6),(59,2),(59,4),(60,2),(60,4),(60,6),(61,4),(61,6),(62,4),(62,5),(63,2),(63,4),(64,1),(64,4),(64,5),(65,3),(65,5); /*!40000 ALTER TABLE `ec_product_tag_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_tags` -- DROP TABLE IF EXISTS `ec_product_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_tags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tags` -- LOCK TABLES `ec_product_tags` WRITE; /*!40000 ALTER TABLE `ec_product_tags` DISABLE KEYS */; INSERT INTO `ec_product_tags` VALUES (1,'Electronic',NULL,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'),(2,'Mobile',NULL,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'),(3,'Iphone',NULL,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'),(4,'Printer',NULL,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'),(5,'Office',NULL,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'),(6,'IT',NULL,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_product_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_tags_translations` -- DROP TABLE IF EXISTS `ec_product_tags_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_tags_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_tags_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_tags_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tags_translations` -- LOCK TABLES `ec_product_tags_translations` WRITE; /*!40000 ALTER TABLE `ec_product_tags_translations` DISABLE KEYS */; INSERT INTO `ec_product_tags_translations` VALUES ('vi',1,'Electronic'),('vi',2,'Mobile'),('vi',3,'Iphone'),('vi',4,'Printer'),('vi',5,'Office'),('vi',6,'IT'); /*!40000 ALTER TABLE `ec_product_tags_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_up_sale_relations` -- DROP TABLE IF EXISTS `ec_product_up_sale_relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_up_sale_relations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `from_product_id` int unsigned NOT NULL, `to_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_product_up_sale_relations_from_product_id_index` (`from_product_id`), KEY `ec_product_up_sale_relations_to_product_id_index` (`to_product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_up_sale_relations` -- LOCK TABLES `ec_product_up_sale_relations` WRITE; /*!40000 ALTER TABLE `ec_product_up_sale_relations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_up_sale_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_variation_items` -- DROP TABLE IF EXISTS `ec_product_variation_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_variation_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `attribute_id` int unsigned NOT NULL, `variation_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_product_variation_items_attribute_id_variation_id_index` (`attribute_id`,`variation_id`) ) ENGINE=InnoDB AUTO_INCREMENT=319 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_variation_items` -- LOCK TABLES `ec_product_variation_items` WRITE; /*!40000 ALTER TABLE `ec_product_variation_items` DISABLE KEYS */; INSERT INTO `ec_product_variation_items` VALUES (1,1,1),(11,1,6),(15,1,8),(19,1,10),(21,1,11),(33,1,17),(35,1,18),(41,1,21),(49,1,25),(51,1,26),(59,1,30),(67,1,34),(69,1,35),(71,1,36),(75,1,38),(91,1,46),(107,1,54),(109,1,55),(111,1,56),(5,2,3),(9,2,5),(17,2,9),(23,2,12),(29,2,15),(37,2,19),(47,2,24),(57,2,29),(61,2,31),(81,2,41),(85,2,43),(93,2,47),(95,2,48),(119,2,60),(7,3,4),(63,3,32),(65,3,33),(77,3,39),(89,3,45),(99,3,50),(113,3,57),(115,3,58),(3,4,2),(13,4,7),(39,4,20),(43,4,22),(45,4,23),(55,4,28),(73,4,37),(79,4,40),(87,4,44),(101,4,51),(103,4,52),(105,4,53),(25,5,13),(27,5,14),(31,5,16),(53,5,27),(83,5,42),(97,5,49),(117,5,59),(10,6,5),(12,6,6),(14,6,7),(22,6,11),(30,6,15),(32,6,16),(40,6,20),(52,6,26),(76,6,38),(78,6,39),(90,6,45),(98,6,49),(102,6,51),(120,6,60),(16,7,8),(24,7,12),(50,7,25),(54,7,27),(64,7,32),(100,7,50),(104,7,52),(106,7,53),(116,7,58),(4,8,2),(6,8,3),(26,8,13),(38,8,19),(68,8,34),(72,8,36),(80,8,40),(82,8,41),(84,8,42),(2,9,1),(8,9,4),(20,9,10),(28,9,14),(34,9,17),(36,9,18),(42,9,21),(44,9,22),(58,9,29),(60,9,30),(70,9,35),(88,9,44),(92,9,46),(96,9,48),(108,9,54),(114,9,57),(118,9,59),(18,10,9),(46,10,23),(48,10,24),(56,10,28),(62,10,31),(66,10,33),(74,10,37),(86,10,43),(94,10,47),(110,10,55),(112,10,56),(145,11,73),(149,11,75),(153,11,77),(169,11,85),(183,11,92),(211,11,106),(219,11,110),(225,11,113),(229,11,115),(255,11,128),(259,11,130),(281,11,141),(287,11,144),(297,11,149),(303,11,152),(305,11,153),(313,11,157),(121,12,61),(125,12,63),(127,12,64),(131,12,66),(135,12,68),(137,12,69),(141,12,71),(159,12,80),(173,12,87),(185,12,93),(187,12,94),(199,12,100),(201,12,101),(203,12,102),(209,12,105),(213,12,107),(245,12,123),(283,12,142),(289,12,145),(299,12,150),(309,12,155),(123,13,62),(181,13,91),(193,13,97),(205,13,103),(215,13,108),(221,13,111),(247,13,124),(249,13,125),(263,13,132),(265,13,133),(269,13,135),(273,13,137),(277,13,139),(311,13,156),(315,13,158),(133,14,67),(151,14,76),(165,14,83),(179,14,90),(191,14,96),(195,14,98),(217,14,109),(227,14,114),(233,14,117),(239,14,120),(243,14,122),(257,14,129),(261,14,131),(267,14,134),(275,14,138),(291,14,146),(295,14,148),(301,14,151),(129,15,65),(139,15,70),(143,15,72),(147,15,74),(155,15,78),(157,15,79),(161,15,81),(163,15,82),(167,15,84),(171,15,86),(175,15,88),(177,15,89),(189,15,95),(197,15,99),(207,15,104),(223,15,112),(231,15,116),(235,15,118),(237,15,119),(241,15,121),(251,15,126),(253,15,127),(271,15,136),(279,15,140),(285,15,143),(293,15,147),(307,15,154),(317,15,159),(126,16,63),(136,16,68),(144,16,72),(168,16,84),(180,16,90),(190,16,95),(200,16,100),(212,16,106),(228,16,114),(242,16,121),(246,16,123),(252,16,126),(282,16,141),(310,16,155),(124,17,62),(142,17,71),(146,17,73),(154,17,77),(156,17,78),(164,17,82),(176,17,88),(184,17,92),(188,17,94),(194,17,97),(196,17,98),(218,17,109),(238,17,119),(256,17,128),(262,17,131),(272,17,136),(278,17,139),(286,17,143),(292,17,146),(308,17,154),(312,17,156),(314,17,157),(318,17,159),(130,18,65),(138,18,69),(148,18,74),(160,18,80),(162,18,81),(170,18,85),(172,18,86),(192,18,96),(216,18,108),(222,18,111),(236,18,118),(250,18,125),(254,18,127),(260,18,130),(264,18,132),(266,18,133),(276,18,138),(280,18,140),(296,18,148),(304,18,152),(306,18,153),(132,19,66),(140,19,70),(150,19,75),(158,19,79),(166,19,83),(174,19,87),(178,19,89),(186,19,93),(204,19,102),(208,19,104),(214,19,107),(220,19,110),(230,19,115),(234,19,117),(240,19,120),(270,19,135),(288,19,144),(300,19,150),(316,19,158),(122,20,61),(128,20,64),(134,20,67),(152,20,76),(182,20,91),(198,20,99),(202,20,101),(206,20,103),(210,20,105),(224,20,112),(226,20,113),(232,20,116),(244,20,122),(248,20,124),(258,20,129),(268,20,134),(274,20,137),(284,20,142),(290,20,145),(294,20,147),(298,20,149),(302,20,151); /*!40000 ALTER TABLE `ec_product_variation_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_variations` -- DROP TABLE IF EXISTS `ec_product_variations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_variations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` int unsigned DEFAULT NULL, `configurable_product_id` int unsigned NOT NULL, `is_default` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `ec_product_variations_product_id_configurable_product_id_index` (`product_id`,`configurable_product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=160 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_variations` -- LOCK TABLES `ec_product_variations` WRITE; /*!40000 ALTER TABLE `ec_product_variations` DISABLE KEYS */; INSERT INTO `ec_product_variations` VALUES (1,66,1,1),(2,67,1,0),(3,68,1,0),(4,69,1,0),(5,70,2,1),(6,71,2,0),(7,72,3,1),(8,73,3,0),(9,74,4,1),(10,75,4,0),(11,76,5,1),(12,77,6,1),(13,78,6,0),(14,79,6,0),(15,80,6,0),(16,81,7,1),(17,82,7,0),(18,83,8,1),(19,84,8,0),(20,85,8,0),(21,86,9,1),(22,87,9,0),(23,88,9,0),(24,89,9,0),(25,90,10,1),(26,91,10,0),(27,92,11,1),(28,93,12,1),(29,94,12,0),(30,95,12,0),(31,96,12,0),(32,97,13,1),(33,98,13,0),(34,99,13,0),(35,100,14,1),(36,101,14,0),(37,102,15,1),(38,103,15,0),(39,104,15,0),(40,105,16,1),(41,106,16,0),(42,107,16,0),(43,108,16,0),(44,109,17,1),(45,110,17,0),(46,111,17,0),(47,112,18,1),(48,113,19,1),(49,114,19,0),(50,115,19,0),(51,116,19,0),(52,117,20,1),(53,118,21,1),(54,119,21,0),(55,120,21,0),(56,121,22,1),(57,122,22,0),(58,123,23,1),(59,124,23,0),(60,125,23,0),(61,126,24,1),(62,127,25,1),(63,128,25,0),(64,129,26,1),(65,130,26,0),(66,131,27,1),(67,132,27,0),(68,133,28,1),(69,134,28,0),(70,135,28,0),(71,136,29,1),(72,137,30,1),(73,138,30,0),(74,139,30,0),(75,140,30,0),(76,141,31,1),(77,142,31,0),(78,143,31,0),(79,144,32,1),(80,145,33,1),(81,146,33,0),(82,147,33,0),(83,148,33,0),(84,149,34,1),(85,150,34,0),(86,151,34,0),(87,152,35,1),(88,153,35,0),(89,154,35,0),(90,155,35,0),(91,156,36,1),(92,157,37,1),(93,158,37,0),(94,159,37,0),(95,160,38,1),(96,161,39,1),(97,162,40,1),(98,163,40,0),(99,164,40,0),(100,165,41,1),(101,166,41,0),(102,167,42,1),(103,168,43,1),(104,169,43,0),(105,170,43,0),(106,171,44,1),(107,172,44,0),(108,173,45,1),(109,174,46,1),(110,175,46,0),(111,176,47,1),(112,177,47,0),(113,178,47,0),(114,179,48,1),(115,180,49,1),(116,181,49,0),(117,182,49,0),(118,183,50,1),(119,184,50,0),(120,185,50,0),(121,186,50,0),(122,187,51,1),(123,188,51,0),(124,189,51,0),(125,190,51,0),(126,191,52,1),(127,192,52,0),(128,193,53,1),(129,194,53,0),(130,195,54,1),(131,196,54,0),(132,197,55,1),(133,198,55,0),(134,199,56,1),(135,200,56,0),(136,201,56,0),(137,202,56,0),(138,203,57,1),(139,204,57,0),(140,205,58,1),(141,206,58,0),(142,207,58,0),(143,208,58,0),(144,209,59,1),(145,210,59,0),(146,211,59,0),(147,212,60,1),(148,213,60,0),(149,214,61,1),(150,215,62,1),(151,216,62,0),(152,217,62,0),(153,218,63,1),(154,219,63,0),(155,220,64,1),(156,221,64,0),(157,222,65,1),(158,223,65,0),(159,224,65,0); /*!40000 ALTER TABLE `ec_product_variations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_views` -- DROP TABLE IF EXISTS `ec_product_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_views` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` int unsigned NOT NULL, `views` int NOT NULL DEFAULT '1', `date` date NOT NULL DEFAULT '2023-01-22', PRIMARY KEY (`id`), UNIQUE KEY `ec_product_views_product_id_date_unique` (`product_id`,`date`), KEY `ec_product_views_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_views` -- LOCK TABLES `ec_product_views` WRITE; /*!40000 ALTER TABLE `ec_product_views` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_views` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_with_attribute_set` -- DROP TABLE IF EXISTS `ec_product_with_attribute_set`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_with_attribute_set` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `attribute_set_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, `order` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=131 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_with_attribute_set` -- LOCK TABLES `ec_product_with_attribute_set` WRITE; /*!40000 ALTER TABLE `ec_product_with_attribute_set` DISABLE KEYS */; INSERT INTO `ec_product_with_attribute_set` VALUES (1,1,1,0),(2,2,1,0),(3,1,2,0),(4,2,2,0),(5,1,3,0),(6,2,3,0),(7,1,4,0),(8,2,4,0),(9,1,5,0),(10,2,5,0),(11,1,6,0),(12,2,6,0),(13,1,7,0),(14,2,7,0),(15,1,8,0),(16,2,8,0),(17,1,9,0),(18,2,9,0),(19,1,10,0),(20,2,10,0),(21,1,11,0),(22,2,11,0),(23,1,12,0),(24,2,12,0),(25,1,13,0),(26,2,13,0),(27,1,14,0),(28,2,14,0),(29,1,15,0),(30,2,15,0),(31,1,16,0),(32,2,16,0),(33,1,17,0),(34,2,17,0),(35,1,18,0),(36,2,18,0),(37,1,19,0),(38,2,19,0),(39,1,20,0),(40,2,20,0),(41,1,21,0),(42,2,21,0),(43,1,22,0),(44,2,22,0),(45,1,23,0),(46,2,23,0),(47,3,24,0),(48,4,24,0),(49,3,25,0),(50,4,25,0),(51,3,26,0),(52,4,26,0),(53,3,27,0),(54,4,27,0),(55,3,28,0),(56,4,28,0),(57,3,29,0),(58,4,29,0),(59,3,30,0),(60,4,30,0),(61,3,31,0),(62,4,31,0),(63,3,32,0),(64,4,32,0),(65,3,33,0),(66,4,33,0),(67,3,34,0),(68,4,34,0),(69,3,35,0),(70,4,35,0),(71,3,36,0),(72,4,36,0),(73,3,37,0),(74,4,37,0),(75,3,38,0),(76,4,38,0),(77,3,39,0),(78,4,39,0),(79,3,40,0),(80,4,40,0),(81,3,41,0),(82,4,41,0),(83,3,42,0),(84,4,42,0),(85,3,43,0),(86,4,43,0),(87,3,44,0),(88,4,44,0),(89,3,45,0),(90,4,45,0),(91,3,46,0),(92,4,46,0),(93,3,47,0),(94,4,47,0),(95,3,48,0),(96,4,48,0),(97,3,49,0),(98,4,49,0),(99,3,50,0),(100,4,50,0),(101,3,51,0),(102,4,51,0),(103,3,52,0),(104,4,52,0),(105,3,53,0),(106,4,53,0),(107,3,54,0),(108,4,54,0),(109,3,55,0),(110,4,55,0),(111,3,56,0),(112,4,56,0),(113,3,57,0),(114,4,57,0),(115,3,58,0),(116,4,58,0),(117,3,59,0),(118,4,59,0),(119,3,60,0),(120,4,60,0),(121,3,61,0),(122,4,61,0),(123,3,62,0),(124,4,62,0),(125,3,63,0),(126,4,63,0),(127,3,64,0),(128,4,64,0),(129,3,65,0),(130,4,65,0); /*!40000 ALTER TABLE `ec_product_with_attribute_set` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_products` -- DROP TABLE IF EXISTS `ec_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `content` longtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `images` text COLLATE utf8mb4_unicode_ci, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` int unsigned NOT NULL DEFAULT '0', `quantity` int unsigned DEFAULT NULL, `allow_checkout_when_out_of_stock` tinyint unsigned NOT NULL DEFAULT '0', `with_storehouse_management` tinyint unsigned NOT NULL DEFAULT '0', `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `brand_id` int unsigned DEFAULT NULL, `is_variation` tinyint NOT NULL DEFAULT '0', `sale_type` tinyint NOT NULL DEFAULT '0', `price` double unsigned DEFAULT NULL, `sale_price` double unsigned DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `length` double(8,2) DEFAULT NULL, `wide` double(8,2) DEFAULT NULL, `height` double(8,2) DEFAULT NULL, `weight` double(8,2) DEFAULT NULL, `tax_id` int unsigned DEFAULT NULL, `views` bigint NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `stock_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'in_stock', `created_by_id` int DEFAULT '0', `created_by_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'physical', `barcode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost_per_item` double DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_products_barcode_unique` (`barcode`), KEY `ec_products_brand_id_status_is_variation_created_at_index` (`brand_id`,`status`,`is_variation`,`created_at`), KEY `ec_products_sale_type_index` (`sale_type`), KEY `ec_products_start_date_index` (`start_date`), KEY `ec_products_end_date_index` (`end_date`), KEY `ec_products_sale_price_index` (`sale_price`), KEY `ec_products_is_variation_index` (`is_variation`) ) ENGINE=InnoDB AUTO_INCREMENT=225 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_products` -- LOCK TABLES `ec_products` WRITE; /*!40000 ALTER TABLE `ec_products` DISABLE KEYS */; INSERT INTO `ec_products` VALUES (1,'Dual Camera 20MP (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/1.jpg\"]','SW-122-A0',0,11,0,1,1,2,0,0,80.25,NULL,NULL,NULL,20.00,11.00,16.00,790.00,NULL,162484,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(2,'Smart Watches','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/2.jpg\",\"products\\/2-1.jpg\",\"products\\/2-2.jpg\",\"products\\/2-3.jpg\"]','SW-101-A0',0,16,0,1,1,1,0,0,40.5,NULL,NULL,NULL,18.00,17.00,13.00,633.00,NULL,83721,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(3,'Beat Headphone','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/3.jpg\"]','SW-100-A0',0,14,0,1,1,5,0,0,20,NULL,NULL,NULL,15.00,19.00,20.00,730.00,NULL,45652,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(4,'Red & Black Headphone','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/4.jpg\",\"products\\/4-1.jpg\",\"products\\/4-2.jpg\",\"products\\/4-3.jpg\"]','SW-151-A0',0,11,0,1,1,3,0,0,587,493.08,NULL,NULL,13.00,15.00,17.00,863.00,NULL,124381,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(5,'Smart Watch External (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/5.jpg\",\"products\\/5-1.jpg\",\"products\\/5-2.jpg\",\"products\\/5-3.jpg\"]','SW-171-A0',0,11,0,1,1,5,0,0,790,NULL,NULL,NULL,18.00,15.00,19.00,814.00,NULL,49274,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(6,'Nikon HD camera','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/6.jpg\"]','SW-123-A0',0,15,0,1,1,3,0,0,401,NULL,NULL,NULL,18.00,20.00,12.00,562.00,NULL,125875,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(7,'Audio Equipment','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/7.jpg\"]','SW-109-A0',0,18,0,1,1,4,0,0,553,NULL,NULL,NULL,10.00,11.00,13.00,705.00,NULL,166427,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(8,'Smart Televisions','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/8.jpg\",\"products\\/8-1.jpg\",\"products\\/8-2.jpg\",\"products\\/8-3.jpg\"]','SW-138-A0',0,19,0,1,1,2,0,0,1109,809.57,NULL,NULL,10.00,18.00,14.00,521.00,NULL,151454,'2023-01-22 08:09:55','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(9,'Samsung Smart Phone (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/9.jpg\",\"products\\/9-1.jpg\",\"products\\/9-2.jpg\"]','SW-147-A0',0,13,0,1,1,1,0,0,508,NULL,NULL,NULL,15.00,14.00,12.00,811.00,NULL,20201,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(10,'Herschel Leather Duffle Bag In Brown Color','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/10.jpg\",\"products\\/10-1.jpg\",\"products\\/10-2.jpg\"]','SW-155-A0',0,14,0,1,0,1,0,0,1273,NULL,NULL,NULL,16.00,15.00,19.00,603.00,NULL,10385,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(11,'Xbox One Wireless Controller Black Color','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/11.jpg\",\"products\\/11-1.jpg\",\"products\\/11-2.jpg\",\"products\\/11-3.jpg\"]','SW-194-A0',0,20,0,1,0,4,0,0,1154,NULL,NULL,NULL,19.00,20.00,15.00,504.00,NULL,37324,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(12,'EPSION Plaster Printer','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/12.jpg\",\"products\\/12-1.jpg\",\"products\\/12-2.jpg\",\"products\\/12-3.jpg\"]','SW-143-A0',0,20,0,1,0,4,0,0,560,420,NULL,NULL,19.00,13.00,16.00,747.00,NULL,16989,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(13,'Sound Intone I65 Earphone White Version (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/13.jpg\",\"products\\/13-1.jpg\"]','SW-109-A0',0,15,0,1,0,5,0,0,555,NULL,NULL,NULL,17.00,18.00,12.00,766.00,NULL,188863,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(14,'B&O Play Mini Bluetooth Speaker','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/14.jpg\"]','SW-115-A0',0,10,0,1,0,2,0,0,561,NULL,NULL,NULL,17.00,17.00,12.00,762.00,NULL,34111,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(15,'Apple MacBook Air Retina 13.3-Inch Laptop','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/15.jpg\",\"products\\/15-1.jpg\"]','SW-176-A0',0,19,0,1,0,1,0,0,519,NULL,NULL,NULL,19.00,16.00,19.00,747.00,NULL,22409,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(16,'Apple MacBook Air Retina 12-Inch Laptop','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/16.jpg\"]','SW-148-A0',0,18,0,1,0,2,0,0,588,429.24,NULL,NULL,15.00,16.00,13.00,663.00,NULL,116548,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(17,'Samsung Gear VR Virtual Reality Headset (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/17.jpg\",\"products\\/17-1.jpg\",\"products\\/17-2.jpg\",\"products\\/17-3.jpg\"]','SW-148-A0',0,18,0,1,0,4,0,0,526,NULL,NULL,NULL,16.00,11.00,15.00,590.00,NULL,104100,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(18,'Aveeno Moisturizing Body Shower 450ml','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/18.jpg\",\"products\\/18-1.jpg\",\"products\\/18-2.jpg\",\"products\\/18-3.jpg\"]','SW-145-A0',0,20,0,1,0,1,0,0,1249,NULL,NULL,NULL,13.00,13.00,10.00,711.00,NULL,173602,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(19,'NYX Beauty Couton Pallete Makeup 12','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/19.jpg\",\"products\\/19-1.jpg\",\"products\\/19-2.jpg\",\"products\\/19-3.jpg\"]','SW-102-A0',0,16,0,1,0,2,0,0,1226,NULL,NULL,NULL,14.00,17.00,17.00,797.00,NULL,134819,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(20,'NYX Beauty Couton Pallete Makeup 12','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/20.jpg\",\"products\\/20-1.jpg\",\"products\\/20-2.jpg\",\"products\\/20-3.jpg\"]','SW-135-A0',0,20,0,1,0,4,0,0,949,768.69,NULL,NULL,17.00,19.00,16.00,774.00,NULL,111696,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(21,'MVMTH Classical Leather Watch In Black (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/21.jpg\",\"products\\/21-1.jpg\",\"products\\/21-2.jpg\"]','SW-178-A0',0,18,0,1,0,3,0,0,744,NULL,NULL,NULL,13.00,13.00,16.00,696.00,NULL,23685,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(22,'Baxter Care Hair Kit For Bearded Mens','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/22.jpg\",\"products\\/22-1.jpg\",\"products\\/22-2.jpg\",\"products\\/22-3.jpg\"]','SW-125-A0',0,14,0,1,0,4,0,0,583,NULL,NULL,NULL,20.00,13.00,14.00,772.00,NULL,89774,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(23,'Ciate Palemore Lipstick Bold Red Color','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/23.jpg\",\"products\\/23-1.jpg\",\"products\\/23-2.jpg\",\"products\\/23-3.jpg\"]','SW-120-A0',0,19,0,1,0,2,0,0,1165,NULL,NULL,NULL,15.00,10.00,12.00,820.00,NULL,2893,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(24,'Vimto Squash Remix Apple 1.5 Litres','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/24.jpg\",\"products\\/24-1.jpg\",\"products\\/24-2.jpg\"]','SW-192-A0',0,12,0,1,0,4,0,0,1182,1063.8,NULL,NULL,15.00,10.00,11.00,563.00,NULL,162833,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(25,'Crock Pot Slow Cooker (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/25.jpg\",\"products\\/25-1.jpg\",\"products\\/25-2.jpg\"]','SW-137-A0',0,13,0,1,0,1,0,0,925,NULL,NULL,NULL,12.00,15.00,20.00,506.00,NULL,80108,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(26,'Taylors of Harrogate Yorkshire Coffee','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/26.jpg\",\"products\\/26-1.jpg\"]','SW-123-A0',0,12,0,1,0,4,0,0,873,NULL,NULL,NULL,10.00,11.00,16.00,871.00,NULL,171977,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(27,'Soft Mochi & Galeto Ice Cream','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/27.jpg\",\"products\\/27-1.jpg\"]','SW-137-A0',0,13,0,1,0,4,0,0,1263,NULL,NULL,NULL,13.00,12.00,20.00,779.00,NULL,67800,'2023-01-22 08:09:55','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(28,'Naked Noodle Egg Noodles Singapore','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/28.jpg\",\"products\\/28-1.jpg\",\"products\\/28-2.jpg\"]','SW-154-A0',0,11,0,1,0,1,0,0,736,529.92,NULL,NULL,20.00,14.00,20.00,765.00,NULL,182745,'2023-01-22 08:09:56','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(29,'Saute Pan Silver (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/29.jpg\",\"products\\/29-1.jpg\",\"products\\/29-2.jpg\"]','SW-183-A0',0,10,0,1,0,1,0,0,924,NULL,NULL,NULL,10.00,11.00,20.00,746.00,NULL,4341,'2023-01-22 08:09:56','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(30,'Bar S – Classic Bun Length Franks','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/30.jpg\",\"products\\/30-1.jpg\",\"products\\/30-2.jpg\"]','SW-139-A0',0,10,0,1,0,2,0,0,657,NULL,NULL,NULL,19.00,20.00,15.00,730.00,NULL,79368,'2023-01-22 08:09:56','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(31,'Broccoli Crowns','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/31.jpg\",\"products\\/31-1.jpg\"]','SW-104-A0',0,15,0,1,0,4,0,0,501,NULL,NULL,NULL,13.00,16.00,17.00,655.00,NULL,174894,'2023-01-22 08:09:56','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(32,'Slimming World Vegan Mac Greens','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/32.jpg\",\"products\\/32-1.jpg\",\"products\\/32-2.jpg\"]','SW-121-A0',0,14,0,1,0,3,0,0,742,526.82,NULL,NULL,12.00,19.00,11.00,587.00,NULL,116980,'2023-01-22 08:09:56','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(33,'Häagen-Dazs Salted Caramel (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/33.jpg\",\"products\\/33-1.jpg\",\"products\\/33-2.jpg\"]','SW-189-A0',0,16,0,1,0,3,0,0,1142,NULL,NULL,NULL,19.00,20.00,18.00,846.00,NULL,40857,'2023-01-22 08:09:56','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(34,'Iceland 3 Solo Exotic Burst','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/34.jpg\",\"products\\/34-1.jpg\"]','SW-163-A0',0,20,0,1,0,3,0,0,1217,NULL,NULL,NULL,19.00,13.00,20.00,555.00,NULL,75844,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(35,'Extreme Budweiser Light Can','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/35.jpg\",\"products\\/35-1.jpg\"]','SW-188-A0',0,16,0,1,0,3,0,0,739,NULL,NULL,NULL,10.00,20.00,15.00,649.00,NULL,81603,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(36,'Iceland Macaroni Cheese Traybake','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/36.jpg\",\"products\\/36-1.jpg\",\"products\\/36-2.jpg\"]','SW-120-A0',0,17,0,1,0,5,0,0,641,538.44,NULL,NULL,10.00,17.00,16.00,645.00,NULL,189028,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(37,'Dolmio Bolognese Pasta Sauce (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/37.jpg\",\"products\\/37-1.jpg\",\"products\\/37-2.jpg\"]','SW-136-A0',0,17,0,1,0,3,0,0,897,NULL,NULL,NULL,20.00,16.00,12.00,769.00,NULL,20731,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(38,'Sitema BakeIT Plastic Box','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/38.jpg\",\"products\\/38-1.jpg\",\"products\\/38-2.jpg\",\"products\\/38-3.jpg\"]','SW-132-A0',0,15,0,1,0,3,0,0,931,NULL,NULL,NULL,18.00,13.00,10.00,507.00,NULL,187344,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(39,'Wayfair Basics Dinner Plate Storage','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/39.jpg\",\"products\\/39-1.jpg\",\"products\\/39-2.jpg\"]','SW-139-A0',0,12,0,1,0,3,0,0,1116,NULL,NULL,NULL,16.00,11.00,20.00,897.00,NULL,12819,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(40,'Miko The Panda Water Bottle','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/40.jpg\",\"products\\/40-1.jpg\"]','SW-195-A0',0,19,0,1,0,2,0,0,834,617.16,NULL,NULL,11.00,19.00,10.00,849.00,NULL,152666,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(41,'Sesame Seed Bread (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/41.jpg\",\"products\\/41-1.jpg\",\"products\\/41-2.jpg\"]','SW-106-A0',0,13,0,1,0,4,0,0,1243,NULL,NULL,NULL,10.00,15.00,18.00,677.00,NULL,167842,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(42,'Morrisons The Best Beef','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/42.jpg\",\"products\\/42-1.jpg\",\"products\\/42-2.jpg\"]','SW-110-A0',0,15,0,1,0,5,0,0,957,NULL,NULL,NULL,13.00,10.00,12.00,693.00,NULL,42525,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(43,'Avocado, Hass Large','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/43.jpg\",\"products\\/43-1.jpg\",\"products\\/43-2.jpg\"]','SW-161-A0',0,18,0,1,0,4,0,0,502,NULL,NULL,NULL,15.00,16.00,17.00,648.00,NULL,171416,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(44,'Italia Beef Lasagne','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/44.jpg\",\"products\\/44-1.jpg\",\"products\\/44-2.jpg\"]','SW-192-A0',0,16,0,1,0,2,0,0,1247,1097.36,NULL,NULL,13.00,15.00,19.00,631.00,NULL,16416,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(45,'Maxwell House Classic Roast Mocha (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/45.jpg\",\"products\\/45-1.jpg\"]','SW-179-A0',0,18,0,1,0,3,0,0,1254,NULL,NULL,NULL,10.00,14.00,13.00,629.00,NULL,108724,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(46,'Bottled Pure Water 500ml','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/46.jpg\",\"products\\/46-1.jpg\"]','SW-174-A0',0,12,0,1,0,1,0,0,946,NULL,NULL,NULL,20.00,16.00,15.00,847.00,NULL,161290,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(47,'Famart Farmhouse Soft White','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/47.jpg\",\"products\\/47-1.jpg\"]','SW-120-A0',0,16,0,1,0,3,0,0,1119,NULL,NULL,NULL,13.00,10.00,19.00,774.00,NULL,32580,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(48,'Coca-Cola Original Taste','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/48.jpg\",\"products\\/48-1.jpg\",\"products\\/48-2.jpg\"]','SW-117-A0',0,20,0,1,0,2,0,0,569,477.96,NULL,NULL,19.00,17.00,14.00,751.00,NULL,47711,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(49,'Casillero Diablo Cabernet Sauvignon (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/49.jpg\",\"products\\/49-1.jpg\",\"products\\/49-2.jpg\"]','SW-133-A0',0,11,0,1,0,2,0,0,1092,NULL,NULL,NULL,14.00,12.00,12.00,551.00,NULL,102281,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(50,'Arla Organic Free Range Milk','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/50.jpg\",\"products\\/50-1.jpg\"]','SW-121-A0',0,10,0,1,0,3,0,0,1221,NULL,NULL,NULL,12.00,19.00,13.00,822.00,NULL,148378,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(51,'Aptamil Follow On Baby Milk','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/51.jpg\"]','SW-200-A0',0,19,0,1,0,2,0,0,1135,NULL,NULL,NULL,20.00,17.00,14.00,748.00,NULL,120745,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(52,'Cuisinart Chef’S Classic Hard-Anodized','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/52.jpg\",\"products\\/52-1.jpg\",\"products\\/52-2.jpg\"]','SW-189-A0',0,19,0,1,0,3,0,0,752,571.52,NULL,NULL,13.00,13.00,18.00,671.00,NULL,41411,'2023-01-22 08:09:56','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(53,'Corn, Yellow Sweet (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/53.jpg\",\"products\\/53-1.jpg\"]','SW-151-A0',0,20,0,1,0,1,0,0,841,NULL,NULL,NULL,20.00,19.00,18.00,710.00,NULL,147379,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(54,'Hobnobs The Nobbly Biscuit','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/54.jpg\",\"products\\/54-1.jpg\"]','SW-112-A0',0,18,0,1,0,1,0,0,864,NULL,NULL,NULL,14.00,12.00,19.00,843.00,NULL,116442,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(55,'Honest Organic Still Lemonade','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/55.jpg\",\"products\\/55-1.jpg\",\"products\\/55-2.jpg\"]','SW-160-A0',0,10,0,1,0,5,0,0,556,NULL,NULL,NULL,20.00,12.00,19.00,734.00,NULL,139962,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(56,'Ice Beck’s Beer 350ml x 24 Pieces','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/56.jpg\",\"products\\/56-1.jpg\",\"products\\/56-2.jpg\"]','SW-186-A0',0,12,0,1,0,3,0,0,1020,734.4,NULL,NULL,12.00,13.00,19.00,889.00,NULL,13872,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(57,'Iceland 6 Hot Cross Buns (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/57.jpg\",\"products\\/57-1.jpg\"]','SW-107-A0',0,18,0,1,0,3,0,0,1060,NULL,NULL,NULL,14.00,19.00,11.00,853.00,NULL,131081,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(58,'Iceland Luxury 4 Panini Rolls','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/58.jpg\",\"products\\/58-1.jpg\",\"products\\/58-2.jpg\"]','SW-165-A0',0,16,0,1,0,5,0,0,506,NULL,NULL,NULL,17.00,20.00,12.00,562.00,NULL,191527,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(59,'Iceland Soft Scoop Vanilla','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/59.jpg\",\"products\\/59-1.jpg\",\"products\\/59-2.jpg\",\"products\\/59-3.jpg\"]','SW-135-A0',0,19,0,1,0,4,0,0,853,NULL,NULL,NULL,12.00,15.00,15.00,708.00,NULL,4000,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(60,'Iceland Spaghetti Bolognese','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/60.jpg\",\"products\\/60-1.jpg\",\"products\\/60-2.jpg\"]','SW-135-A0',0,11,0,1,0,2,0,0,1123,864.71,NULL,NULL,13.00,12.00,14.00,500.00,NULL,59582,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(61,'Kellogg’s Coco Pops Cereal (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/61.jpg\",\"products\\/61-1.jpg\"]','SW-127-A0',0,18,0,1,0,3,0,0,733,NULL,NULL,NULL,10.00,10.00,16.00,746.00,NULL,134797,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(62,'Kit Kat Chunky Milk Chocolate','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/62.jpg\",\"products\\/62-1.jpg\"]','SW-126-A0',0,18,0,1,0,3,0,0,517,NULL,NULL,NULL,10.00,18.00,11.00,630.00,NULL,198649,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(63,'Large Green Bell Pepper','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/63.jpg\",\"products\\/63-1.jpg\"]','SW-105-A0',0,18,0,1,0,5,0,0,505,NULL,NULL,NULL,13.00,20.00,19.00,586.00,NULL,193744,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(64,'Pice 94w Beasley Journal','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/64.jpg\",\"products\\/64-1.jpg\"]','SW-134-A0',0,19,0,1,0,5,0,0,1298,1051.38,NULL,NULL,12.00,11.00,12.00,584.00,NULL,80726,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(65,'Province Piece Glass Drinking Glass (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/65.jpg\",\"products\\/65-1.jpg\",\"products\\/65-2.jpg\"]','SW-122-A0',0,13,0,1,0,1,0,0,1121,NULL,NULL,NULL,15.00,10.00,11.00,534.00,NULL,21654,'2023-01-22 08:09:56','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(66,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/1.jpg\"]','SW-122-A0',0,11,0,1,0,2,1,0,80.25,NULL,NULL,NULL,20.00,11.00,16.00,790.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(67,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/1.jpg\"]','SW-122-A0-A1',0,11,0,1,0,2,1,0,80.25,NULL,NULL,NULL,20.00,11.00,16.00,790.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(68,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/1.jpg\"]','SW-122-A0-A2',0,11,0,1,0,2,1,0,80.25,NULL,NULL,NULL,20.00,11.00,16.00,790.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(69,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/1.jpg\"]','SW-122-A0-A3',0,11,0,1,0,2,1,0,80.25,NULL,NULL,NULL,20.00,11.00,16.00,790.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(70,'Smart Watches',NULL,NULL,'published','[\"products\\/2.jpg\"]','SW-101-A0',0,16,0,1,0,1,1,0,40.5,NULL,NULL,NULL,18.00,17.00,13.00,633.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(71,'Smart Watches',NULL,NULL,'published','[\"products\\/2-1.jpg\"]','SW-101-A0-A1',0,16,0,1,0,1,1,0,40.5,NULL,NULL,NULL,18.00,17.00,13.00,633.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(72,'Beat Headphone',NULL,NULL,'published','[\"products\\/3.jpg\"]','SW-100-A0',0,14,0,1,0,5,1,0,20,NULL,NULL,NULL,15.00,19.00,20.00,730.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(73,'Beat Headphone',NULL,NULL,'published','[\"products\\/3.jpg\"]','SW-100-A0-A1',0,14,0,1,0,5,1,0,20,NULL,NULL,NULL,15.00,19.00,20.00,730.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(74,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/4.jpg\"]','SW-151-A0',0,11,0,1,0,3,1,0,587,493.08,NULL,NULL,13.00,15.00,17.00,863.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(75,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/4-1.jpg\"]','SW-151-A0-A1',0,11,0,1,0,3,1,0,587,522.43,NULL,NULL,13.00,15.00,17.00,863.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(76,'Smart Watch External (Digital)',NULL,NULL,'published','[\"products\\/5.jpg\"]','SW-171-A0',0,11,0,1,0,5,1,0,790,NULL,NULL,NULL,18.00,15.00,19.00,814.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(77,'Nikon HD camera',NULL,NULL,'published','[\"products\\/6.jpg\"]','SW-123-A0',0,15,0,1,0,3,1,0,401,NULL,NULL,NULL,18.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(78,'Nikon HD camera',NULL,NULL,'published','[\"products\\/6.jpg\"]','SW-123-A0-A1',0,15,0,1,0,3,1,0,401,NULL,NULL,NULL,18.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(79,'Nikon HD camera',NULL,NULL,'published','[\"products\\/6.jpg\"]','SW-123-A0-A2',0,15,0,1,0,3,1,0,401,NULL,NULL,NULL,18.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(80,'Nikon HD camera',NULL,NULL,'published','[\"products\\/6.jpg\"]','SW-123-A0-A3',0,15,0,1,0,3,1,0,401,NULL,NULL,NULL,18.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(81,'Audio Equipment',NULL,NULL,'published','[\"products\\/7.jpg\"]','SW-109-A0',0,18,0,1,0,4,1,0,553,NULL,NULL,NULL,10.00,11.00,13.00,705.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(82,'Audio Equipment',NULL,NULL,'published','[\"products\\/7.jpg\"]','SW-109-A0-A1',0,18,0,1,0,4,1,0,553,NULL,NULL,NULL,10.00,11.00,13.00,705.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(83,'Smart Televisions',NULL,NULL,'published','[\"products\\/8.jpg\"]','SW-138-A0',0,19,0,1,0,2,1,0,1109,809.57,NULL,NULL,10.00,18.00,14.00,521.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(84,'Smart Televisions',NULL,NULL,'published','[\"products\\/8-1.jpg\"]','SW-138-A0-A1',0,19,0,1,0,2,1,0,1109,931.56,NULL,NULL,10.00,18.00,14.00,521.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(85,'Smart Televisions',NULL,NULL,'published','[\"products\\/8-2.jpg\"]','SW-138-A0-A2',0,19,0,1,0,2,1,0,1109,820.66,NULL,NULL,10.00,18.00,14.00,521.00,NULL,0,'2023-01-22 08:09:56','2023-01-22 08:09:56','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(86,'Samsung Smart Phone (Digital)',NULL,NULL,'published','[\"products\\/9.jpg\"]','SW-147-A0',0,13,0,1,0,1,1,0,508,NULL,NULL,NULL,15.00,14.00,12.00,811.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(87,'Samsung Smart Phone (Digital)',NULL,NULL,'published','[\"products\\/9-1.jpg\"]','SW-147-A0-A1',0,13,0,1,0,1,1,0,508,NULL,NULL,NULL,15.00,14.00,12.00,811.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(88,'Samsung Smart Phone (Digital)',NULL,NULL,'published','[\"products\\/9-2.jpg\"]','SW-147-A0-A2',0,13,0,1,0,1,1,0,508,NULL,NULL,NULL,15.00,14.00,12.00,811.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(89,'Samsung Smart Phone (Digital)',NULL,NULL,'published','[\"products\\/9.jpg\"]','SW-147-A0-A3',0,13,0,1,0,1,1,0,508,NULL,NULL,NULL,15.00,14.00,12.00,811.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(90,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,'published','[\"products\\/10.jpg\"]','SW-155-A0',0,14,0,1,0,1,1,0,1273,NULL,NULL,NULL,16.00,15.00,19.00,603.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(91,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,'published','[\"products\\/10-1.jpg\"]','SW-155-A0-A1',0,14,0,1,0,1,1,0,1273,NULL,NULL,NULL,16.00,15.00,19.00,603.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(92,'Xbox One Wireless Controller Black Color',NULL,NULL,'published','[\"products\\/11.jpg\"]','SW-194-A0',0,20,0,1,0,4,1,0,1154,NULL,NULL,NULL,19.00,20.00,15.00,504.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(93,'EPSION Plaster Printer',NULL,NULL,'published','[\"products\\/12.jpg\"]','SW-143-A0',0,20,0,1,0,4,1,0,560,420,NULL,NULL,19.00,13.00,16.00,747.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(94,'EPSION Plaster Printer',NULL,NULL,'published','[\"products\\/12-1.jpg\"]','SW-143-A0-A1',0,20,0,1,0,4,1,0,560,498.4,NULL,NULL,19.00,13.00,16.00,747.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(95,'EPSION Plaster Printer',NULL,NULL,'published','[\"products\\/12-2.jpg\"]','SW-143-A0-A2',0,20,0,1,0,4,1,0,560,481.6,NULL,NULL,19.00,13.00,16.00,747.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(96,'EPSION Plaster Printer',NULL,NULL,'published','[\"products\\/12-3.jpg\"]','SW-143-A0-A3',0,20,0,1,0,4,1,0,560,470.4,NULL,NULL,19.00,13.00,16.00,747.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(97,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,'published','[\"products\\/13.jpg\"]','SW-109-A0',0,15,0,1,0,5,1,0,555,NULL,NULL,NULL,17.00,18.00,12.00,766.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(98,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,'published','[\"products\\/13-1.jpg\"]','SW-109-A0-A1',0,15,0,1,0,5,1,0,555,NULL,NULL,NULL,17.00,18.00,12.00,766.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(99,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,'published','[\"products\\/13.jpg\"]','SW-109-A0-A2',0,15,0,1,0,5,1,0,555,NULL,NULL,NULL,17.00,18.00,12.00,766.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(100,'B&O Play Mini Bluetooth Speaker',NULL,NULL,'published','[\"products\\/14.jpg\"]','SW-115-A0',0,10,0,1,0,2,1,0,561,NULL,NULL,NULL,17.00,17.00,12.00,762.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(101,'B&O Play Mini Bluetooth Speaker',NULL,NULL,'published','[\"products\\/14.jpg\"]','SW-115-A0-A1',0,10,0,1,0,2,1,0,561,NULL,NULL,NULL,17.00,17.00,12.00,762.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(102,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL,'published','[\"products\\/15.jpg\"]','SW-176-A0',0,19,0,1,0,1,1,0,519,NULL,NULL,NULL,19.00,16.00,19.00,747.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(103,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL,'published','[\"products\\/15-1.jpg\"]','SW-176-A0-A1',0,19,0,1,0,1,1,0,519,NULL,NULL,NULL,19.00,16.00,19.00,747.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(104,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL,'published','[\"products\\/15.jpg\"]','SW-176-A0-A2',0,19,0,1,0,1,1,0,519,NULL,NULL,NULL,19.00,16.00,19.00,747.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(105,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,'published','[\"products\\/16.jpg\"]','SW-148-A0',0,18,0,1,0,2,1,0,588,429.24,NULL,NULL,15.00,16.00,13.00,663.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(106,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,'published','[\"products\\/16.jpg\"]','SW-148-A0-A1',0,18,0,1,0,2,1,0,588,429.24,NULL,NULL,15.00,16.00,13.00,663.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(107,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,'published','[\"products\\/16.jpg\"]','SW-148-A0-A2',0,18,0,1,0,2,1,0,588,482.16,NULL,NULL,15.00,16.00,13.00,663.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(108,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,'published','[\"products\\/16.jpg\"]','SW-148-A0-A3',0,18,0,1,0,2,1,0,588,476.28,NULL,NULL,15.00,16.00,13.00,663.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(109,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,'published','[\"products\\/17.jpg\"]','SW-148-A0',0,18,0,1,0,4,1,0,526,NULL,NULL,NULL,16.00,11.00,15.00,590.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(110,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,'published','[\"products\\/17-1.jpg\"]','SW-148-A0-A1',0,18,0,1,0,4,1,0,526,NULL,NULL,NULL,16.00,11.00,15.00,590.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(111,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,'published','[\"products\\/17-2.jpg\"]','SW-148-A0-A2',0,18,0,1,0,4,1,0,526,NULL,NULL,NULL,16.00,11.00,15.00,590.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(112,'Aveeno Moisturizing Body Shower 450ml',NULL,NULL,'published','[\"products\\/18.jpg\"]','SW-145-A0',0,20,0,1,0,1,1,0,1249,NULL,NULL,NULL,13.00,13.00,10.00,711.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(113,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19.jpg\"]','SW-102-A0',0,16,0,1,0,2,1,0,1226,NULL,NULL,NULL,14.00,17.00,17.00,797.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(114,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19-1.jpg\"]','SW-102-A0-A1',0,16,0,1,0,2,1,0,1226,NULL,NULL,NULL,14.00,17.00,17.00,797.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(115,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19-2.jpg\"]','SW-102-A0-A2',0,16,0,1,0,2,1,0,1226,NULL,NULL,NULL,14.00,17.00,17.00,797.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(116,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19-3.jpg\"]','SW-102-A0-A3',0,16,0,1,0,2,1,0,1226,NULL,NULL,NULL,14.00,17.00,17.00,797.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(117,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/20.jpg\"]','SW-135-A0',0,20,0,1,0,4,1,0,949,768.69,NULL,NULL,17.00,19.00,16.00,774.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(118,'MVMTH Classical Leather Watch In Black (Digital)',NULL,NULL,'published','[\"products\\/21.jpg\"]','SW-178-A0',0,18,0,1,0,3,1,0,744,NULL,NULL,NULL,13.00,13.00,16.00,696.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(119,'MVMTH Classical Leather Watch In Black (Digital)',NULL,NULL,'published','[\"products\\/21-1.jpg\"]','SW-178-A0-A1',0,18,0,1,0,3,1,0,744,NULL,NULL,NULL,13.00,13.00,16.00,696.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(120,'MVMTH Classical Leather Watch In Black (Digital)',NULL,NULL,'published','[\"products\\/21-2.jpg\"]','SW-178-A0-A2',0,18,0,1,0,3,1,0,744,NULL,NULL,NULL,13.00,13.00,16.00,696.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(121,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL,'published','[\"products\\/22.jpg\"]','SW-125-A0',0,14,0,1,0,4,1,0,583,NULL,NULL,NULL,20.00,13.00,14.00,772.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(122,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL,'published','[\"products\\/22-1.jpg\"]','SW-125-A0-A1',0,14,0,1,0,4,1,0,583,NULL,NULL,NULL,20.00,13.00,14.00,772.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(123,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL,'published','[\"products\\/23.jpg\"]','SW-120-A0',0,19,0,1,0,2,1,0,1165,NULL,NULL,NULL,15.00,10.00,12.00,820.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(124,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL,'published','[\"products\\/23-1.jpg\"]','SW-120-A0-A1',0,19,0,1,0,2,1,0,1165,NULL,NULL,NULL,15.00,10.00,12.00,820.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(125,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL,'published','[\"products\\/23-2.jpg\"]','SW-120-A0-A2',0,19,0,1,0,2,1,0,1165,NULL,NULL,NULL,15.00,10.00,12.00,820.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(126,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL,'published','[\"products\\/24.jpg\"]','SW-192-A0',0,12,0,1,0,4,1,0,1182,1063.8,NULL,NULL,15.00,10.00,11.00,563.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(127,'Crock Pot Slow Cooker (Digital)',NULL,NULL,'published','[\"products\\/25.jpg\"]','SW-137-A0',0,13,0,1,0,1,1,0,925,NULL,NULL,NULL,12.00,15.00,20.00,506.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(128,'Crock Pot Slow Cooker (Digital)',NULL,NULL,'published','[\"products\\/25-1.jpg\"]','SW-137-A0-A1',0,13,0,1,0,1,1,0,925,NULL,NULL,NULL,12.00,15.00,20.00,506.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(129,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,'published','[\"products\\/26.jpg\"]','SW-123-A0',0,12,0,1,0,4,1,0,873,NULL,NULL,NULL,10.00,11.00,16.00,871.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(130,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,'published','[\"products\\/26-1.jpg\"]','SW-123-A0-A1',0,12,0,1,0,4,1,0,873,NULL,NULL,NULL,10.00,11.00,16.00,871.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(131,'Soft Mochi & Galeto Ice Cream',NULL,NULL,'published','[\"products\\/27.jpg\"]','SW-137-A0',0,13,0,1,0,4,1,0,1263,NULL,NULL,NULL,13.00,12.00,20.00,779.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(132,'Soft Mochi & Galeto Ice Cream',NULL,NULL,'published','[\"products\\/27-1.jpg\"]','SW-137-A0-A1',0,13,0,1,0,4,1,0,1263,NULL,NULL,NULL,13.00,12.00,20.00,779.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(133,'Naked Noodle Egg Noodles Singapore',NULL,NULL,'published','[\"products\\/28.jpg\"]','SW-154-A0',0,11,0,1,0,1,1,0,736,529.92,NULL,NULL,20.00,14.00,20.00,765.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(134,'Naked Noodle Egg Noodles Singapore',NULL,NULL,'published','[\"products\\/28-1.jpg\"]','SW-154-A0-A1',0,11,0,1,0,1,1,0,736,522.56,NULL,NULL,20.00,14.00,20.00,765.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(135,'Naked Noodle Egg Noodles Singapore',NULL,NULL,'published','[\"products\\/28-2.jpg\"]','SW-154-A0-A2',0,11,0,1,0,1,1,0,736,559.36,NULL,NULL,20.00,14.00,20.00,765.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(136,'Saute Pan Silver (Digital)',NULL,NULL,'published','[\"products\\/29.jpg\"]','SW-183-A0',0,10,0,1,0,1,1,0,924,NULL,NULL,NULL,10.00,11.00,20.00,746.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(137,'Bar S – Classic Bun Length Franks',NULL,NULL,'published','[\"products\\/30.jpg\"]','SW-139-A0',0,10,0,1,0,2,1,0,657,NULL,NULL,NULL,19.00,20.00,15.00,730.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(138,'Bar S – Classic Bun Length Franks',NULL,NULL,'published','[\"products\\/30-1.jpg\"]','SW-139-A0-A1',0,10,0,1,0,2,1,0,657,NULL,NULL,NULL,19.00,20.00,15.00,730.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(139,'Bar S – Classic Bun Length Franks',NULL,NULL,'published','[\"products\\/30-2.jpg\"]','SW-139-A0-A2',0,10,0,1,0,2,1,0,657,NULL,NULL,NULL,19.00,20.00,15.00,730.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(140,'Bar S – Classic Bun Length Franks',NULL,NULL,'published','[\"products\\/30.jpg\"]','SW-139-A0-A3',0,10,0,1,0,2,1,0,657,NULL,NULL,NULL,19.00,20.00,15.00,730.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(141,'Broccoli Crowns',NULL,NULL,'published','[\"products\\/31.jpg\"]','SW-104-A0',0,15,0,1,0,4,1,0,501,NULL,NULL,NULL,13.00,16.00,17.00,655.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(142,'Broccoli Crowns',NULL,NULL,'published','[\"products\\/31-1.jpg\"]','SW-104-A0-A1',0,15,0,1,0,4,1,0,501,NULL,NULL,NULL,13.00,16.00,17.00,655.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(143,'Broccoli Crowns',NULL,NULL,'published','[\"products\\/31.jpg\"]','SW-104-A0-A2',0,15,0,1,0,4,1,0,501,NULL,NULL,NULL,13.00,16.00,17.00,655.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(144,'Slimming World Vegan Mac Greens',NULL,NULL,'published','[\"products\\/32.jpg\"]','SW-121-A0',0,14,0,1,0,3,1,0,742,526.82,NULL,NULL,12.00,19.00,11.00,587.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(145,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33.jpg\"]','SW-189-A0',0,16,0,1,0,3,1,0,1142,NULL,NULL,NULL,19.00,20.00,18.00,846.00,NULL,0,'2023-01-22 08:09:57','2023-01-22 08:09:57','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(146,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33-1.jpg\"]','SW-189-A0-A1',0,16,0,1,0,3,1,0,1142,NULL,NULL,NULL,19.00,20.00,18.00,846.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(147,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33-2.jpg\"]','SW-189-A0-A2',0,16,0,1,0,3,1,0,1142,NULL,NULL,NULL,19.00,20.00,18.00,846.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(148,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33.jpg\"]','SW-189-A0-A3',0,16,0,1,0,3,1,0,1142,NULL,NULL,NULL,19.00,20.00,18.00,846.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(149,'Iceland 3 Solo Exotic Burst',NULL,NULL,'published','[\"products\\/34.jpg\"]','SW-163-A0',0,20,0,1,0,3,1,0,1217,NULL,NULL,NULL,19.00,13.00,20.00,555.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(150,'Iceland 3 Solo Exotic Burst',NULL,NULL,'published','[\"products\\/34-1.jpg\"]','SW-163-A0-A1',0,20,0,1,0,3,1,0,1217,NULL,NULL,NULL,19.00,13.00,20.00,555.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(151,'Iceland 3 Solo Exotic Burst',NULL,NULL,'published','[\"products\\/34.jpg\"]','SW-163-A0-A2',0,20,0,1,0,3,1,0,1217,NULL,NULL,NULL,19.00,13.00,20.00,555.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(152,'Extreme Budweiser Light Can',NULL,NULL,'published','[\"products\\/35.jpg\"]','SW-188-A0',0,16,0,1,0,3,1,0,739,NULL,NULL,NULL,10.00,20.00,15.00,649.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(153,'Extreme Budweiser Light Can',NULL,NULL,'published','[\"products\\/35-1.jpg\"]','SW-188-A0-A1',0,16,0,1,0,3,1,0,739,NULL,NULL,NULL,10.00,20.00,15.00,649.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(154,'Extreme Budweiser Light Can',NULL,NULL,'published','[\"products\\/35.jpg\"]','SW-188-A0-A2',0,16,0,1,0,3,1,0,739,NULL,NULL,NULL,10.00,20.00,15.00,649.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(155,'Extreme Budweiser Light Can',NULL,NULL,'published','[\"products\\/35.jpg\"]','SW-188-A0-A3',0,16,0,1,0,3,1,0,739,NULL,NULL,NULL,10.00,20.00,15.00,649.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(156,'Iceland Macaroni Cheese Traybake',NULL,NULL,'published','[\"products\\/36.jpg\"]','SW-120-A0',0,17,0,1,0,5,1,0,641,538.44,NULL,NULL,10.00,17.00,16.00,645.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(157,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,'published','[\"products\\/37.jpg\"]','SW-136-A0',0,17,0,1,0,3,1,0,897,NULL,NULL,NULL,20.00,16.00,12.00,769.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(158,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,'published','[\"products\\/37-1.jpg\"]','SW-136-A0-A1',0,17,0,1,0,3,1,0,897,NULL,NULL,NULL,20.00,16.00,12.00,769.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(159,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,'published','[\"products\\/37-2.jpg\"]','SW-136-A0-A2',0,17,0,1,0,3,1,0,897,NULL,NULL,NULL,20.00,16.00,12.00,769.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(160,'Sitema BakeIT Plastic Box',NULL,NULL,'published','[\"products\\/38.jpg\"]','SW-132-A0',0,15,0,1,0,3,1,0,931,NULL,NULL,NULL,18.00,13.00,10.00,507.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(161,'Wayfair Basics Dinner Plate Storage',NULL,NULL,'published','[\"products\\/39.jpg\"]','SW-139-A0',0,12,0,1,0,3,1,0,1116,NULL,NULL,NULL,16.00,11.00,20.00,897.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(162,'Miko The Panda Water Bottle',NULL,NULL,'published','[\"products\\/40.jpg\"]','SW-195-A0',0,19,0,1,0,2,1,0,834,617.16,NULL,NULL,11.00,19.00,10.00,849.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(163,'Miko The Panda Water Bottle',NULL,NULL,'published','[\"products\\/40-1.jpg\"]','SW-195-A0-A1',0,19,0,1,0,2,1,0,834,700.56,NULL,NULL,11.00,19.00,10.00,849.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(164,'Miko The Panda Water Bottle',NULL,NULL,'published','[\"products\\/40.jpg\"]','SW-195-A0-A2',0,19,0,1,0,2,1,0,834,617.16,NULL,NULL,11.00,19.00,10.00,849.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(165,'Sesame Seed Bread (Digital)',NULL,NULL,'published','[\"products\\/41.jpg\"]','SW-106-A0',0,13,0,1,0,4,1,0,1243,NULL,NULL,NULL,10.00,15.00,18.00,677.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(166,'Sesame Seed Bread (Digital)',NULL,NULL,'published','[\"products\\/41-1.jpg\"]','SW-106-A0-A1',0,13,0,1,0,4,1,0,1243,NULL,NULL,NULL,10.00,15.00,18.00,677.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(167,'Morrisons The Best Beef',NULL,NULL,'published','[\"products\\/42.jpg\"]','SW-110-A0',0,15,0,1,0,5,1,0,957,NULL,NULL,NULL,13.00,10.00,12.00,693.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(168,'Avocado, Hass Large',NULL,NULL,'published','[\"products\\/43.jpg\"]','SW-161-A0',0,18,0,1,0,4,1,0,502,NULL,NULL,NULL,15.00,16.00,17.00,648.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(169,'Avocado, Hass Large',NULL,NULL,'published','[\"products\\/43-1.jpg\"]','SW-161-A0-A1',0,18,0,1,0,4,1,0,502,NULL,NULL,NULL,15.00,16.00,17.00,648.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(170,'Avocado, Hass Large',NULL,NULL,'published','[\"products\\/43-2.jpg\"]','SW-161-A0-A2',0,18,0,1,0,4,1,0,502,NULL,NULL,NULL,15.00,16.00,17.00,648.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(171,'Italia Beef Lasagne',NULL,NULL,'published','[\"products\\/44.jpg\"]','SW-192-A0',0,16,0,1,0,2,1,0,1247,1097.36,NULL,NULL,13.00,15.00,19.00,631.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(172,'Italia Beef Lasagne',NULL,NULL,'published','[\"products\\/44-1.jpg\"]','SW-192-A0-A1',0,16,0,1,0,2,1,0,1247,972.66,NULL,NULL,13.00,15.00,19.00,631.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(173,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,'published','[\"products\\/45.jpg\"]','SW-179-A0',0,18,0,1,0,3,1,0,1254,NULL,NULL,NULL,10.00,14.00,13.00,629.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(174,'Bottled Pure Water 500ml',NULL,NULL,'published','[\"products\\/46.jpg\"]','SW-174-A0',0,12,0,1,0,1,1,0,946,NULL,NULL,NULL,20.00,16.00,15.00,847.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(175,'Bottled Pure Water 500ml',NULL,NULL,'published','[\"products\\/46-1.jpg\"]','SW-174-A0-A1',0,12,0,1,0,1,1,0,946,NULL,NULL,NULL,20.00,16.00,15.00,847.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(176,'Famart Farmhouse Soft White',NULL,NULL,'published','[\"products\\/47.jpg\"]','SW-120-A0',0,16,0,1,0,3,1,0,1119,NULL,NULL,NULL,13.00,10.00,19.00,774.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(177,'Famart Farmhouse Soft White',NULL,NULL,'published','[\"products\\/47-1.jpg\"]','SW-120-A0-A1',0,16,0,1,0,3,1,0,1119,NULL,NULL,NULL,13.00,10.00,19.00,774.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(178,'Famart Farmhouse Soft White',NULL,NULL,'published','[\"products\\/47.jpg\"]','SW-120-A0-A2',0,16,0,1,0,3,1,0,1119,NULL,NULL,NULL,13.00,10.00,19.00,774.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(179,'Coca-Cola Original Taste',NULL,NULL,'published','[\"products\\/48.jpg\"]','SW-117-A0',0,20,0,1,0,2,1,0,569,477.96,NULL,NULL,19.00,17.00,14.00,751.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(180,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,'published','[\"products\\/49.jpg\"]','SW-133-A0',0,11,0,1,0,2,1,0,1092,NULL,NULL,NULL,14.00,12.00,12.00,551.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(181,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,'published','[\"products\\/49-1.jpg\"]','SW-133-A0-A1',0,11,0,1,0,2,1,0,1092,NULL,NULL,NULL,14.00,12.00,12.00,551.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(182,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,'published','[\"products\\/49-2.jpg\"]','SW-133-A0-A2',0,11,0,1,0,2,1,0,1092,NULL,NULL,NULL,14.00,12.00,12.00,551.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(183,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50.jpg\"]','SW-121-A0',0,10,0,1,0,3,1,0,1221,NULL,NULL,NULL,12.00,19.00,13.00,822.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(184,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50-1.jpg\"]','SW-121-A0-A1',0,10,0,1,0,3,1,0,1221,NULL,NULL,NULL,12.00,19.00,13.00,822.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(185,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50.jpg\"]','SW-121-A0-A2',0,10,0,1,0,3,1,0,1221,NULL,NULL,NULL,12.00,19.00,13.00,822.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(186,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50.jpg\"]','SW-121-A0-A3',0,10,0,1,0,3,1,0,1221,NULL,NULL,NULL,12.00,19.00,13.00,822.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(187,'Aptamil Follow On Baby Milk',NULL,NULL,'published','[\"products\\/51.jpg\"]','SW-200-A0',0,19,0,1,0,2,1,0,1135,NULL,NULL,NULL,20.00,17.00,14.00,748.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(188,'Aptamil Follow On Baby Milk',NULL,NULL,'published','[\"products\\/51.jpg\"]','SW-200-A0-A1',0,19,0,1,0,2,1,0,1135,NULL,NULL,NULL,20.00,17.00,14.00,748.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(189,'Aptamil Follow On Baby Milk',NULL,NULL,'published','[\"products\\/51.jpg\"]','SW-200-A0-A2',0,19,0,1,0,2,1,0,1135,NULL,NULL,NULL,20.00,17.00,14.00,748.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(190,'Aptamil Follow On Baby Milk',NULL,NULL,'published','[\"products\\/51.jpg\"]','SW-200-A0-A3',0,19,0,1,0,2,1,0,1135,NULL,NULL,NULL,20.00,17.00,14.00,748.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(191,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,'published','[\"products\\/52.jpg\"]','SW-189-A0',0,19,0,1,0,3,1,0,752,571.52,NULL,NULL,13.00,13.00,18.00,671.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(192,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,'published','[\"products\\/52-1.jpg\"]','SW-189-A0-A1',0,19,0,1,0,3,1,0,752,639.2,NULL,NULL,13.00,13.00,18.00,671.00,NULL,0,'2023-01-22 08:09:58','2023-01-22 08:09:58','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(193,'Corn, Yellow Sweet (Digital)',NULL,NULL,'published','[\"products\\/53.jpg\"]','SW-151-A0',0,20,0,1,0,1,1,0,841,NULL,NULL,NULL,20.00,19.00,18.00,710.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(194,'Corn, Yellow Sweet (Digital)',NULL,NULL,'published','[\"products\\/53-1.jpg\"]','SW-151-A0-A1',0,20,0,1,0,1,1,0,841,NULL,NULL,NULL,20.00,19.00,18.00,710.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(195,'Hobnobs The Nobbly Biscuit',NULL,NULL,'published','[\"products\\/54.jpg\"]','SW-112-A0',0,18,0,1,0,1,1,0,864,NULL,NULL,NULL,14.00,12.00,19.00,843.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(196,'Hobnobs The Nobbly Biscuit',NULL,NULL,'published','[\"products\\/54-1.jpg\"]','SW-112-A0-A1',0,18,0,1,0,1,1,0,864,NULL,NULL,NULL,14.00,12.00,19.00,843.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(197,'Honest Organic Still Lemonade',NULL,NULL,'published','[\"products\\/55.jpg\"]','SW-160-A0',0,10,0,1,0,5,1,0,556,NULL,NULL,NULL,20.00,12.00,19.00,734.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(198,'Honest Organic Still Lemonade',NULL,NULL,'published','[\"products\\/55-1.jpg\"]','SW-160-A0-A1',0,10,0,1,0,5,1,0,556,NULL,NULL,NULL,20.00,12.00,19.00,734.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(199,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,'published','[\"products\\/56.jpg\"]','SW-186-A0',0,12,0,1,0,3,1,0,1020,734.4,NULL,NULL,12.00,13.00,19.00,889.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(200,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,'published','[\"products\\/56-1.jpg\"]','SW-186-A0-A1',0,12,0,1,0,3,1,0,1020,805.8,NULL,NULL,12.00,13.00,19.00,889.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(201,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,'published','[\"products\\/56-2.jpg\"]','SW-186-A0-A2',0,12,0,1,0,3,1,0,1020,826.2,NULL,NULL,12.00,13.00,19.00,889.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(202,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,'published','[\"products\\/56.jpg\"]','SW-186-A0-A3',0,12,0,1,0,3,1,0,1020,744.6,NULL,NULL,12.00,13.00,19.00,889.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(203,'Iceland 6 Hot Cross Buns (Digital)',NULL,NULL,'published','[\"products\\/57.jpg\"]','SW-107-A0',0,18,0,1,0,3,1,0,1060,NULL,NULL,NULL,14.00,19.00,11.00,853.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(204,'Iceland 6 Hot Cross Buns (Digital)',NULL,NULL,'published','[\"products\\/57-1.jpg\"]','SW-107-A0-A1',0,18,0,1,0,3,1,0,1060,NULL,NULL,NULL,14.00,19.00,11.00,853.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(205,'Iceland Luxury 4 Panini Rolls',NULL,NULL,'published','[\"products\\/58.jpg\"]','SW-165-A0',0,16,0,1,0,5,1,0,506,NULL,NULL,NULL,17.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(206,'Iceland Luxury 4 Panini Rolls',NULL,NULL,'published','[\"products\\/58-1.jpg\"]','SW-165-A0-A1',0,16,0,1,0,5,1,0,506,NULL,NULL,NULL,17.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(207,'Iceland Luxury 4 Panini Rolls',NULL,NULL,'published','[\"products\\/58-2.jpg\"]','SW-165-A0-A2',0,16,0,1,0,5,1,0,506,NULL,NULL,NULL,17.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(208,'Iceland Luxury 4 Panini Rolls',NULL,NULL,'published','[\"products\\/58.jpg\"]','SW-165-A0-A3',0,16,0,1,0,5,1,0,506,NULL,NULL,NULL,17.00,20.00,12.00,562.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(209,'Iceland Soft Scoop Vanilla',NULL,NULL,'published','[\"products\\/59.jpg\"]','SW-135-A0',0,19,0,1,0,4,1,0,853,NULL,NULL,NULL,12.00,15.00,15.00,708.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(210,'Iceland Soft Scoop Vanilla',NULL,NULL,'published','[\"products\\/59-1.jpg\"]','SW-135-A0-A1',0,19,0,1,0,4,1,0,853,NULL,NULL,NULL,12.00,15.00,15.00,708.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(211,'Iceland Soft Scoop Vanilla',NULL,NULL,'published','[\"products\\/59-2.jpg\"]','SW-135-A0-A2',0,19,0,1,0,4,1,0,853,NULL,NULL,NULL,12.00,15.00,15.00,708.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(212,'Iceland Spaghetti Bolognese',NULL,NULL,'published','[\"products\\/60.jpg\"]','SW-135-A0',0,11,0,1,0,2,1,0,1123,864.71,NULL,NULL,13.00,12.00,14.00,500.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(213,'Iceland Spaghetti Bolognese',NULL,NULL,'published','[\"products\\/60-1.jpg\"]','SW-135-A0-A1',0,11,0,1,0,2,1,0,1123,797.33,NULL,NULL,13.00,12.00,14.00,500.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(214,'Kellogg’s Coco Pops Cereal (Digital)',NULL,NULL,'published','[\"products\\/61.jpg\"]','SW-127-A0',0,18,0,1,0,3,1,0,733,NULL,NULL,NULL,10.00,10.00,16.00,746.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(215,'Kit Kat Chunky Milk Chocolate',NULL,NULL,'published','[\"products\\/62.jpg\"]','SW-126-A0',0,18,0,1,0,3,1,0,517,NULL,NULL,NULL,10.00,18.00,11.00,630.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(216,'Kit Kat Chunky Milk Chocolate',NULL,NULL,'published','[\"products\\/62-1.jpg\"]','SW-126-A0-A1',0,18,0,1,0,3,1,0,517,NULL,NULL,NULL,10.00,18.00,11.00,630.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(217,'Kit Kat Chunky Milk Chocolate',NULL,NULL,'published','[\"products\\/62.jpg\"]','SW-126-A0-A2',0,18,0,1,0,3,1,0,517,NULL,NULL,NULL,10.00,18.00,11.00,630.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(218,'Large Green Bell Pepper',NULL,NULL,'published','[\"products\\/63.jpg\"]','SW-105-A0',0,18,0,1,0,5,1,0,505,NULL,NULL,NULL,13.00,20.00,19.00,586.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(219,'Large Green Bell Pepper',NULL,NULL,'published','[\"products\\/63-1.jpg\"]','SW-105-A0-A1',0,18,0,1,0,5,1,0,505,NULL,NULL,NULL,13.00,20.00,19.00,586.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(220,'Pice 94w Beasley Journal',NULL,NULL,'published','[\"products\\/64.jpg\"]','SW-134-A0',0,19,0,1,0,5,1,0,1298,1051.38,NULL,NULL,12.00,11.00,12.00,584.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(221,'Pice 94w Beasley Journal',NULL,NULL,'published','[\"products\\/64-1.jpg\"]','SW-134-A0-A1',0,19,0,1,0,5,1,0,1298,908.6,NULL,NULL,12.00,11.00,12.00,584.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL),(222,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,'published','[\"products\\/65.jpg\"]','SW-122-A0',0,13,0,1,0,1,1,0,1121,NULL,NULL,NULL,15.00,10.00,11.00,534.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(223,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,'published','[\"products\\/65-1.jpg\"]','SW-122-A0-A1',0,13,0,1,0,1,1,0,1121,NULL,NULL,NULL,15.00,10.00,11.00,534.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL),(224,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,'published','[\"products\\/65-2.jpg\"]','SW-122-A0-A2',0,13,0,1,0,1,1,0,1121,NULL,NULL,NULL,15.00,10.00,11.00,534.00,NULL,0,'2023-01-22 08:09:59','2023-01-22 08:09:59','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL); /*!40000 ALTER TABLE `ec_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_products_translations` -- DROP TABLE IF EXISTS `ec_products_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_products_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_products_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `content` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`ec_products_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_products_translations` -- LOCK TABLES `ec_products_translations` WRITE; /*!40000 ALTER TABLE `ec_products_translations` DISABLE KEYS */; INSERT INTO `ec_products_translations` VALUES ('vi',1,'Dual Camera 20MP',NULL,NULL),('vi',2,'Smart Watches',NULL,NULL),('vi',3,'Beat Headphone',NULL,NULL),('vi',4,'Red & Black Headphone',NULL,NULL),('vi',5,'Smart Watch External',NULL,NULL),('vi',6,'Nikon HD camera',NULL,NULL),('vi',7,'Audio Equipment',NULL,NULL),('vi',8,'Smart Televisions',NULL,NULL),('vi',9,'Samsung Smart Phone',NULL,NULL),('vi',10,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL),('vi',11,'Xbox One Wireless Controller Black Color',NULL,NULL),('vi',12,'EPSION Plaster Printer',NULL,NULL),('vi',13,'Sound Intone I65 Earphone White Version',NULL,NULL),('vi',14,'B&O Play Mini Bluetooth Speaker',NULL,NULL),('vi',15,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL),('vi',16,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL),('vi',17,'Samsung Gear VR Virtual Reality Headset',NULL,NULL),('vi',18,'Aveeno Moisturizing Body Shower 450ml',NULL,NULL),('vi',19,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL),('vi',20,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL),('vi',21,'MVMTH Classical Leather Watch In Black',NULL,NULL),('vi',22,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL),('vi',23,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL),('vi',24,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL),('vi',25,'Crock Pot Slow Cooker',NULL,NULL),('vi',26,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL),('vi',27,'Soft Mochi & Galeto Ice Cream',NULL,NULL),('vi',28,'Naked Noodle Egg Noodles Singapore',NULL,NULL),('vi',29,'Saute Pan Silver',NULL,NULL),('vi',30,'Bar S – Classic Bun Length Franks',NULL,NULL),('vi',31,'Broccoli Crowns',NULL,NULL),('vi',32,'Slimming World Vegan Mac Greens',NULL,NULL),('vi',33,'Häagen-Dazs Salted Caramel',NULL,NULL),('vi',34,'Iceland 3 Solo Exotic Burst',NULL,NULL),('vi',35,'Extreme Budweiser Light Can',NULL,NULL),('vi',36,'Iceland Macaroni Cheese Traybake',NULL,NULL),('vi',37,'Dolmio Bolognese Pasta Sauce',NULL,NULL),('vi',38,'Sitema BakeIT Plastic Box',NULL,NULL),('vi',39,'Wayfair Basics Dinner Plate Storage',NULL,NULL),('vi',40,'Miko The Panda Water Bottle',NULL,NULL),('vi',41,'Sesame Seed Bread',NULL,NULL),('vi',42,'Morrisons The Best Beef',NULL,NULL),('vi',43,'Avocado, Hass Large',NULL,NULL),('vi',44,'Italia Beef Lasagne',NULL,NULL),('vi',45,'Maxwell House Classic Roast Mocha',NULL,NULL),('vi',46,'Bottled Pure Water 500ml',NULL,NULL),('vi',66,'Dual Camera 20MP',NULL,NULL),('vi',67,'Dual Camera 20MP',NULL,NULL),('vi',68,'Dual Camera 20MP',NULL,NULL),('vi',69,'Dual Camera 20MP',NULL,NULL),('vi',70,'Smart Watches',NULL,NULL),('vi',71,'Smart Watches',NULL,NULL),('vi',72,'Beat Headphone',NULL,NULL),('vi',73,'Beat Headphone',NULL,NULL),('vi',74,'Red & Black Headphone',NULL,NULL),('vi',75,'Red & Black Headphone',NULL,NULL),('vi',76,'Smart Watch External',NULL,NULL),('vi',77,'Nikon HD camera',NULL,NULL),('vi',78,'Nikon HD camera',NULL,NULL),('vi',79,'Nikon HD camera',NULL,NULL),('vi',80,'Nikon HD camera',NULL,NULL),('vi',81,'Audio Equipment',NULL,NULL),('vi',82,'Audio Equipment',NULL,NULL),('vi',83,'Smart Televisions',NULL,NULL),('vi',84,'Smart Televisions',NULL,NULL),('vi',85,'Smart Televisions',NULL,NULL),('vi',86,'Samsung Smart Phone',NULL,NULL),('vi',87,'Samsung Smart Phone',NULL,NULL),('vi',88,'Samsung Smart Phone',NULL,NULL),('vi',89,'Samsung Smart Phone',NULL,NULL),('vi',90,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL),('vi',91,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL),('vi',92,'Xbox One Wireless Controller Black Color',NULL,NULL),('vi',93,'EPSION Plaster Printer',NULL,NULL),('vi',94,'EPSION Plaster Printer',NULL,NULL),('vi',95,'EPSION Plaster Printer',NULL,NULL),('vi',96,'EPSION Plaster Printer',NULL,NULL),('vi',97,'Sound Intone I65 Earphone White Version',NULL,NULL),('vi',98,'Sound Intone I65 Earphone White Version',NULL,NULL),('vi',99,'Sound Intone I65 Earphone White Version',NULL,NULL),('vi',100,'B&O Play Mini Bluetooth Speaker',NULL,NULL),('vi',101,'B&O Play Mini Bluetooth Speaker',NULL,NULL),('vi',102,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL),('vi',103,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL),('vi',104,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL),('vi',105,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL),('vi',106,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL),('vi',107,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL),('vi',108,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL),('vi',109,'Samsung Gear VR Virtual Reality Headset',NULL,NULL),('vi',110,'Samsung Gear VR Virtual Reality Headset',NULL,NULL),('vi',111,'Samsung Gear VR Virtual Reality Headset',NULL,NULL),('vi',112,'Aveeno Moisturizing Body Shower 450ml',NULL,NULL),('vi',113,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL),('vi',114,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL),('vi',115,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL),('vi',116,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL),('vi',117,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL),('vi',118,'MVMTH Classical Leather Watch In Black',NULL,NULL),('vi',119,'MVMTH Classical Leather Watch In Black',NULL,NULL),('vi',120,'MVMTH Classical Leather Watch In Black',NULL,NULL),('vi',121,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL),('vi',122,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL),('vi',123,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL),('vi',124,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL),('vi',125,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL),('vi',126,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL),('vi',127,'Crock Pot Slow Cooker',NULL,NULL),('vi',128,'Crock Pot Slow Cooker',NULL,NULL),('vi',129,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL),('vi',130,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL),('vi',131,'Soft Mochi & Galeto Ice Cream',NULL,NULL),('vi',132,'Soft Mochi & Galeto Ice Cream',NULL,NULL),('vi',133,'Naked Noodle Egg Noodles Singapore',NULL,NULL),('vi',134,'Naked Noodle Egg Noodles Singapore',NULL,NULL),('vi',135,'Naked Noodle Egg Noodles Singapore',NULL,NULL),('vi',136,'Saute Pan Silver',NULL,NULL),('vi',137,'Bar S – Classic Bun Length Franks',NULL,NULL),('vi',138,'Bar S – Classic Bun Length Franks',NULL,NULL),('vi',139,'Bar S – Classic Bun Length Franks',NULL,NULL),('vi',140,'Bar S – Classic Bun Length Franks',NULL,NULL),('vi',141,'Broccoli Crowns',NULL,NULL),('vi',142,'Broccoli Crowns',NULL,NULL),('vi',143,'Broccoli Crowns',NULL,NULL),('vi',144,'Slimming World Vegan Mac Greens',NULL,NULL),('vi',145,'Häagen-Dazs Salted Caramel',NULL,NULL),('vi',146,'Häagen-Dazs Salted Caramel',NULL,NULL),('vi',147,'Häagen-Dazs Salted Caramel',NULL,NULL),('vi',148,'Häagen-Dazs Salted Caramel',NULL,NULL),('vi',149,'Iceland 3 Solo Exotic Burst',NULL,NULL),('vi',150,'Iceland 3 Solo Exotic Burst',NULL,NULL),('vi',151,'Iceland 3 Solo Exotic Burst',NULL,NULL),('vi',152,'Extreme Budweiser Light Can',NULL,NULL),('vi',153,'Extreme Budweiser Light Can',NULL,NULL),('vi',154,'Extreme Budweiser Light Can',NULL,NULL),('vi',155,'Extreme Budweiser Light Can',NULL,NULL),('vi',156,'Iceland Macaroni Cheese Traybake',NULL,NULL),('vi',157,'Dolmio Bolognese Pasta Sauce',NULL,NULL),('vi',158,'Dolmio Bolognese Pasta Sauce',NULL,NULL),('vi',159,'Dolmio Bolognese Pasta Sauce',NULL,NULL),('vi',160,'Sitema BakeIT Plastic Box',NULL,NULL),('vi',161,'Wayfair Basics Dinner Plate Storage',NULL,NULL),('vi',162,'Miko The Panda Water Bottle',NULL,NULL),('vi',163,'Miko The Panda Water Bottle',NULL,NULL),('vi',164,'Miko The Panda Water Bottle',NULL,NULL),('vi',165,'Sesame Seed Bread',NULL,NULL),('vi',166,'Sesame Seed Bread',NULL,NULL),('vi',167,'Morrisons The Best Beef',NULL,NULL),('vi',168,'Avocado, Hass Large',NULL,NULL),('vi',169,'Avocado, Hass Large',NULL,NULL),('vi',170,'Avocado, Hass Large',NULL,NULL),('vi',171,'Italia Beef Lasagne',NULL,NULL),('vi',172,'Italia Beef Lasagne',NULL,NULL),('vi',173,'Maxwell House Classic Roast Mocha',NULL,NULL),('vi',174,'Bottled Pure Water 500ml',NULL,NULL),('vi',175,'Bottled Pure Water 500ml',NULL,NULL); /*!40000 ALTER TABLE `ec_products_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_reviews` -- DROP TABLE IF EXISTS `ec_reviews`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_reviews` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, `star` double(8,2) NOT NULL, `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `images` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `ec_reviews_product_id_customer_id_status_created_at_index` (`product_id`,`customer_id`,`status`,`created_at`), KEY `ec_reviews_product_id_customer_id_status_index` (`product_id`,`customer_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_reviews` -- LOCK TABLES `ec_reviews` WRITE; /*!40000 ALTER TABLE `ec_reviews` DISABLE KEYS */; INSERT INTO `ec_reviews` VALUES (1,8,40,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/24.jpg\",\"products\\/40.jpg\",\"products\\/56.jpg\"]'),(2,7,12,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/16.jpg\",\"products\\/42.jpg\"]'),(3,7,15,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\",\"products\\/37.jpg\"]'),(4,2,30,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/43.jpg\"]'),(5,9,14,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\"]'),(6,7,55,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/19.jpg\"]'),(7,9,53,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/30.jpg\",\"products\\/62.jpg\"]'),(8,1,50,4.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/2.jpg\",\"products\\/41.jpg\"]'),(9,1,5,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/25.jpg\",\"products\\/32.jpg\"]'),(10,9,47,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/16.jpg\"]'),(11,1,20,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\",\"products\\/36.jpg\"]'),(12,7,39,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\"]'),(13,8,6,1.00,'Clean & perfect source code','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/18.jpg\"]'),(14,2,64,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/2.jpg\",\"products\\/44.jpg\"]'),(15,7,60,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/17.jpg\",\"products\\/37.jpg\"]'),(16,2,9,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\",\"products\\/61.jpg\"]'),(17,2,60,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\",\"products\\/42.jpg\"]'),(18,9,21,5.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/26.jpg\",\"products\\/47.jpg\"]'),(19,1,28,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/19.jpg\",\"products\\/34.jpg\"]'),(20,6,41,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/7.jpg\"]'),(21,3,36,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/24.jpg\",\"products\\/51.jpg\"]'),(22,3,20,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/7.jpg\",\"products\\/39.jpg\",\"products\\/63.jpg\"]'),(23,7,47,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\"]'),(24,8,65,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\",\"products\\/31.jpg\"]'),(25,3,15,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/11.jpg\",\"products\\/45.jpg\"]'),(26,7,15,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/8.jpg\"]'),(27,7,19,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/4.jpg\",\"products\\/38.jpg\",\"products\\/58.jpg\"]'),(28,6,43,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/46.jpg\"]'),(29,5,27,2.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/6.jpg\",\"products\\/39.jpg\"]'),(30,8,22,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/24.jpg\"]'),(31,3,22,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\",\"products\\/36.jpg\",\"products\\/62.jpg\"]'),(32,2,26,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/49.jpg\"]'),(33,2,44,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/6.jpg\",\"products\\/40.jpg\"]'),(34,1,62,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/19.jpg\",\"products\\/45.jpg\"]'),(35,4,16,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/5.jpg\",\"products\\/44.jpg\",\"products\\/51.jpg\"]'),(36,6,48,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/4.jpg\",\"products\\/35.jpg\"]'),(37,2,24,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\",\"products\\/61.jpg\"]'),(38,7,21,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\",\"products\\/47.jpg\"]'),(39,5,30,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\",\"products\\/46.jpg\"]'),(40,7,61,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\",\"products\\/52.jpg\"]'),(41,3,35,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/6.jpg\",\"products\\/44.jpg\"]'),(42,7,22,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/11.jpg\",\"products\\/48.jpg\"]'),(43,2,2,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/20.jpg\",\"products\\/32.jpg\"]'),(44,3,56,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/13.jpg\",\"products\\/36.jpg\"]'),(45,5,42,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/18.jpg\"]'),(46,2,16,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\",\"products\\/62.jpg\"]'),(47,5,23,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/18.jpg\"]'),(48,4,45,3.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/6.jpg\",\"products\\/31.jpg\",\"products\\/56.jpg\"]'),(49,3,58,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/11.jpg\",\"products\\/39.jpg\"]'),(50,4,7,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/11.jpg\",\"products\\/38.jpg\",\"products\\/52.jpg\"]'),(51,4,5,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/26.jpg\",\"products\\/41.jpg\"]'),(52,8,58,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/30.jpg\"]'),(53,2,19,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\",\"products\\/34.jpg\"]'),(54,5,49,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/2.jpg\",\"products\\/49.jpg\"]'),(55,5,21,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\"]'),(56,7,44,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/7.jpg\",\"products\\/42.jpg\"]'),(57,9,24,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/7.jpg\",\"products\\/46.jpg\",\"products\\/55.jpg\"]'),(58,5,62,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/33.jpg\"]'),(59,5,46,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/24.jpg\",\"products\\/48.jpg\"]'),(60,5,42,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\",\"products\\/42.jpg\"]'),(61,4,23,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/30.jpg\"]'),(62,7,65,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\",\"products\\/38.jpg\",\"products\\/53.jpg\"]'),(63,4,51,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/31.jpg\",\"products\\/60.jpg\"]'),(64,7,17,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\",\"products\\/32.jpg\"]'),(65,3,34,1.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/30.jpg\",\"products\\/37.jpg\"]'),(66,8,11,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/5.jpg\",\"products\\/46.jpg\",\"products\\/56.jpg\"]'),(67,7,42,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/48.jpg\"]'),(68,9,49,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/19.jpg\"]'),(69,5,2,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/4.jpg\",\"products\\/63.jpg\"]'),(70,9,57,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/13.jpg\",\"products\\/42.jpg\",\"products\\/60.jpg\"]'),(71,2,9,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/20.jpg\",\"products\\/51.jpg\"]'),(72,7,57,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\"]'),(73,4,37,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/26.jpg\",\"products\\/34.jpg\"]'),(74,8,59,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/33.jpg\",\"products\\/55.jpg\"]'),(75,8,46,1.00,'Clean & perfect source code','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\"]'),(76,7,43,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/17.jpg\",\"products\\/60.jpg\"]'),(77,6,54,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/2.jpg\",\"products\\/43.jpg\"]'),(78,6,38,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/2.jpg\",\"products\\/35.jpg\",\"products\\/58.jpg\"]'),(79,5,10,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/23.jpg\",\"products\\/36.jpg\"]'),(80,3,24,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\",\"products\\/33.jpg\"]'),(81,2,49,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/46.jpg\"]'),(82,4,22,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/57.jpg\"]'),(83,2,20,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/16.jpg\",\"products\\/37.jpg\",\"products\\/53.jpg\"]'),(84,4,9,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\",\"products\\/47.jpg\"]'),(85,4,26,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\",\"products\\/54.jpg\"]'),(86,1,45,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\",\"products\\/41.jpg\"]'),(87,1,11,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/6.jpg\"]'),(88,5,57,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\"]'),(89,6,43,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/58.jpg\"]'),(90,7,52,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/7.jpg\"]'),(91,6,52,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/16.jpg\",\"products\\/41.jpg\",\"products\\/63.jpg\"]'),(92,9,37,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\"]'),(93,8,14,1.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/30.jpg\",\"products\\/51.jpg\"]'),(94,6,52,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/40.jpg\",\"products\\/55.jpg\"]'),(95,9,53,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\",\"products\\/43.jpg\"]'),(96,9,62,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\",\"products\\/39.jpg\"]'),(97,7,4,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/8.jpg\",\"products\\/55.jpg\"]'),(98,9,51,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/43.jpg\"]'),(99,2,2,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/37.jpg\"]'),(100,9,51,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\",\"products\\/45.jpg\"]'),(101,3,44,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\"]'),(102,2,63,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/24.jpg\",\"products\\/43.jpg\"]'),(103,8,13,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/12.jpg\",\"products\\/34.jpg\",\"products\\/56.jpg\"]'),(104,3,7,1.00,'Clean & perfect source code','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/20.jpg\"]'),(105,6,23,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/20.jpg\"]'),(106,4,37,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\",\"products\\/43.jpg\",\"products\\/55.jpg\"]'),(107,1,63,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/14.jpg\"]'),(108,6,58,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\",\"products\\/43.jpg\",\"products\\/61.jpg\"]'),(109,2,19,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\",\"products\\/47.jpg\"]'),(110,8,23,4.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/5.jpg\",\"products\\/39.jpg\"]'),(111,3,50,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/20.jpg\"]'),(112,9,56,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/19.jpg\",\"products\\/50.jpg\"]'),(113,6,62,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\"]'),(114,7,40,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/13.jpg\",\"products\\/31.jpg\",\"products\\/64.jpg\"]'),(115,1,17,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/25.jpg\",\"products\\/47.jpg\",\"products\\/60.jpg\"]'),(116,5,63,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/26.jpg\",\"products\\/32.jpg\",\"products\\/54.jpg\"]'),(117,3,17,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\",\"products\\/49.jpg\",\"products\\/52.jpg\"]'),(118,7,47,3.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/7.jpg\",\"products\\/31.jpg\"]'),(119,2,33,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\",\"products\\/43.jpg\"]'),(120,1,65,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/17.jpg\",\"products\\/53.jpg\"]'),(121,9,46,5.00,'Clean & perfect source code','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\"]'),(122,7,46,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/27.jpg\",\"products\\/45.jpg\"]'),(123,4,13,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/24.jpg\",\"products\\/58.jpg\"]'),(124,4,16,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/27.jpg\",\"products\\/39.jpg\"]'),(125,1,22,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/42.jpg\",\"products\\/60.jpg\"]'),(126,5,12,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/25.jpg\",\"products\\/38.jpg\",\"products\\/64.jpg\"]'),(127,5,30,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/34.jpg\"]'),(128,2,63,3.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\",\"products\\/32.jpg\",\"products\\/55.jpg\"]'),(129,9,34,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\",\"products\\/39.jpg\",\"products\\/63.jpg\"]'),(130,7,45,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\"]'),(131,6,16,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\",\"products\\/42.jpg\"]'),(132,1,58,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/43.jpg\"]'),(133,5,7,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/12.jpg\",\"products\\/50.jpg\",\"products\\/52.jpg\"]'),(134,2,20,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/21.jpg\",\"products\\/45.jpg\"]'),(135,3,48,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/23.jpg\",\"products\\/49.jpg\"]'),(136,3,9,3.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/21.jpg\"]'),(137,5,18,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/12.jpg\",\"products\\/43.jpg\"]'),(138,8,2,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\"]'),(139,8,52,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/4.jpg\",\"products\\/37.jpg\"]'),(140,6,4,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/26.jpg\",\"products\\/35.jpg\",\"products\\/62.jpg\"]'),(141,9,2,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/62.jpg\"]'),(142,7,38,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\"]'),(143,6,41,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\",\"products\\/61.jpg\"]'),(144,3,35,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/13.jpg\",\"products\\/49.jpg\"]'),(145,7,22,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/17.jpg\"]'),(146,9,12,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/16.jpg\",\"products\\/48.jpg\"]'),(147,3,49,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\",\"products\\/63.jpg\"]'),(148,5,3,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/2.jpg\",\"products\\/48.jpg\"]'),(149,4,34,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/39.jpg\",\"products\\/63.jpg\"]'),(150,8,43,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\"]'),(151,7,35,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/23.jpg\"]'),(152,3,22,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/22.jpg\",\"products\\/64.jpg\"]'),(153,1,58,3.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/14.jpg\",\"products\\/38.jpg\"]'),(154,9,60,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/13.jpg\",\"products\\/42.jpg\"]'),(155,4,9,2.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/16.jpg\"]'),(156,4,26,1.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/3.jpg\",\"products\\/36.jpg\"]'),(157,4,34,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\",\"products\\/41.jpg\",\"products\\/56.jpg\"]'),(158,1,21,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/28.jpg\"]'),(159,5,25,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/25.jpg\",\"products\\/37.jpg\",\"products\\/60.jpg\"]'),(160,5,1,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/2.jpg\"]'),(161,5,47,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\"]'),(162,4,8,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/19.jpg\",\"products\\/59.jpg\"]'),(163,7,1,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/18.jpg\",\"products\\/44.jpg\"]'),(164,9,45,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\"]'),(165,9,29,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/9.jpg\",\"products\\/61.jpg\"]'),(166,5,10,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\",\"products\\/45.jpg\",\"products\\/65.jpg\"]'),(167,7,24,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/12.jpg\"]'),(168,3,34,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/23.jpg\",\"products\\/44.jpg\",\"products\\/65.jpg\"]'),(169,5,10,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/1.jpg\",\"products\\/62.jpg\"]'),(170,6,36,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/11.jpg\",\"products\\/35.jpg\"]'),(171,8,21,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/10.jpg\"]'),(172,1,34,3.00,'Clean & perfect source code','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/20.jpg\"]'),(173,5,14,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/15.jpg\",\"products\\/45.jpg\"]'),(174,4,19,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/29.jpg\",\"products\\/55.jpg\"]'),(175,5,17,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/12.jpg\",\"products\\/46.jpg\",\"products\\/60.jpg\"]'),(176,5,36,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:01','2023-01-22 08:10:01','[\"products\\/5.jpg\",\"products\\/52.jpg\"]'),(177,9,18,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/37.jpg\"]'),(178,5,2,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/36.jpg\",\"products\\/63.jpg\"]'),(179,7,9,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/60.jpg\"]'),(180,6,7,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/39.jpg\"]'),(181,2,52,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\"]'),(182,7,1,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/45.jpg\"]'),(183,6,3,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\",\"products\\/50.jpg\",\"products\\/52.jpg\"]'),(184,2,50,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/46.jpg\",\"products\\/61.jpg\"]'),(185,3,34,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/41.jpg\"]'),(186,6,51,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/43.jpg\"]'),(187,6,29,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\"]'),(188,1,11,2.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/43.jpg\"]'),(189,4,25,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/50.jpg\"]'),(190,4,55,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/47.jpg\"]'),(191,3,11,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/38.jpg\"]'),(192,4,50,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\"]'),(193,5,39,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/50.jpg\",\"products\\/57.jpg\"]'),(194,6,22,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/45.jpg\"]'),(195,3,55,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/43.jpg\",\"products\\/56.jpg\"]'),(196,8,30,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/32.jpg\"]'),(197,3,58,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/46.jpg\"]'),(198,1,45,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\"]'),(199,9,31,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/32.jpg\"]'),(200,8,40,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\"]'),(201,6,28,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/35.jpg\"]'),(202,6,62,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/33.jpg\"]'),(203,2,29,4.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\",\"products\\/61.jpg\"]'),(204,4,61,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\"]'),(205,9,5,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/35.jpg\",\"products\\/60.jpg\"]'),(206,8,8,1.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/59.jpg\"]'),(207,5,36,2.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/40.jpg\"]'),(208,4,53,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/45.jpg\"]'),(209,5,65,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/37.jpg\",\"products\\/61.jpg\"]'),(210,6,35,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/41.jpg\",\"products\\/62.jpg\"]'),(211,5,7,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\",\"products\\/32.jpg\"]'),(212,2,38,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/63.jpg\"]'),(213,2,8,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/39.jpg\",\"products\\/60.jpg\"]'),(214,3,18,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/38.jpg\"]'),(215,5,62,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\"]'),(216,2,34,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/37.jpg\"]'),(217,3,3,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\"]'),(218,8,16,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/50.jpg\"]'),(219,7,36,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/44.jpg\",\"products\\/55.jpg\"]'),(220,1,14,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/46.jpg\"]'),(221,3,7,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\",\"products\\/54.jpg\"]'),(222,3,56,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/41.jpg\"]'),(223,6,12,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/42.jpg\"]'),(224,7,47,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/45.jpg\"]'),(225,9,17,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/39.jpg\"]'),(226,1,15,4.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/34.jpg\"]'),(227,5,50,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/39.jpg\"]'),(228,8,64,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/35.jpg\"]'),(229,5,29,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\"]'),(230,2,53,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/35.jpg\",\"products\\/63.jpg\"]'),(231,5,42,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/43.jpg\"]'),(232,8,31,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/37.jpg\",\"products\\/61.jpg\"]'),(233,5,23,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/47.jpg\"]'),(234,2,49,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\"]'),(235,8,26,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/50.jpg\"]'),(236,4,4,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/44.jpg\"]'),(237,9,18,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/58.jpg\"]'),(238,6,64,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/43.jpg\",\"products\\/59.jpg\"]'),(239,9,18,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/34.jpg\"]'),(240,7,59,4.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\"]'),(241,7,16,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\"]'),(242,8,13,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/49.jpg\",\"products\\/56.jpg\"]'),(243,5,48,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/48.jpg\",\"products\\/62.jpg\"]'),(244,3,14,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\"]'),(245,7,37,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/39.jpg\"]'),(246,3,15,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/65.jpg\"]'),(247,4,3,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/54.jpg\"]'),(248,4,42,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\"]'),(249,4,6,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\"]'),(250,7,18,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/37.jpg\"]'),(251,2,50,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/49.jpg\"]'),(252,5,17,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/49.jpg\"]'),(253,3,54,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/39.jpg\"]'),(254,6,42,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\"]'),(255,3,65,2.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\",\"products\\/38.jpg\"]'),(256,2,13,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\"]'),(257,5,57,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\"]'),(258,7,20,2.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\"]'),(259,8,59,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/34.jpg\",\"products\\/53.jpg\"]'),(260,7,49,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\"]'),(261,8,27,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/49.jpg\"]'),(262,1,42,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/42.jpg\",\"products\\/62.jpg\"]'),(263,4,41,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/40.jpg\"]'),(264,3,10,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\",\"products\\/33.jpg\"]'),(265,4,9,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\"]'),(266,5,27,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\"]'),(267,9,6,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/49.jpg\",\"products\\/51.jpg\"]'),(268,1,3,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/47.jpg\"]'),(269,8,24,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/41.jpg\"]'),(270,6,22,1.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/48.jpg\",\"products\\/51.jpg\"]'),(271,8,28,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/38.jpg\"]'),(272,1,42,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/48.jpg\"]'),(273,5,56,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/36.jpg\"]'),(274,7,29,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/36.jpg\",\"products\\/64.jpg\"]'),(275,5,48,3.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/42.jpg\"]'),(276,8,26,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/35.jpg\"]'),(277,4,12,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/36.jpg\"]'),(278,7,19,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/46.jpg\",\"products\\/57.jpg\"]'),(279,2,9,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/48.jpg\"]'),(280,7,57,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/40.jpg\"]'),(281,4,49,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/32.jpg\"]'),(282,9,5,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/46.jpg\",\"products\\/62.jpg\"]'),(283,3,34,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/51.jpg\"]'),(284,5,33,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/38.jpg\",\"products\\/57.jpg\"]'),(285,7,6,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/31.jpg\"]'),(286,9,59,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\"]'),(287,8,58,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/46.jpg\",\"products\\/62.jpg\"]'),(288,7,38,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/40.jpg\"]'),(289,7,54,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/40.jpg\",\"products\\/56.jpg\"]'),(290,5,16,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/42.jpg\",\"products\\/54.jpg\"]'),(291,6,44,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/34.jpg\"]'),(292,8,29,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/54.jpg\"]'),(293,9,20,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/34.jpg\"]'),(294,8,7,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\"]'),(295,5,58,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/36.jpg\",\"products\\/52.jpg\"]'),(296,5,52,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/33.jpg\",\"products\\/51.jpg\"]'),(297,9,30,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\"]'),(298,2,56,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/43.jpg\"]'),(299,3,60,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/35.jpg\"]'),(300,4,50,2.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/35.jpg\"]'),(301,6,43,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/62.jpg\"]'),(302,7,30,5.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/33.jpg\"]'),(303,7,7,4.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/48.jpg\",\"products\\/57.jpg\"]'),(304,5,65,5.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/46.jpg\"]'),(305,6,22,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/41.jpg\"]'),(306,6,10,4.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/56.jpg\"]'),(307,5,10,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/54.jpg\"]'),(308,3,38,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/58.jpg\"]'),(309,1,1,4.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\"]'),(310,1,61,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/31.jpg\"]'),(311,5,20,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/48.jpg\"]'),(312,9,37,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/44.jpg\"]'),(313,2,52,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/57.jpg\"]'),(314,6,13,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/53.jpg\"]'),(315,2,39,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\"]'),(316,1,15,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/62.jpg\"]'),(317,2,30,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/36.jpg\"]'),(318,3,32,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/31.jpg\",\"products\\/60.jpg\"]'),(319,4,55,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/36.jpg\"]'),(320,5,34,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\"]'),(321,3,17,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/33.jpg\"]'),(322,1,45,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/45.jpg\",\"products\\/53.jpg\"]'),(323,5,35,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/38.jpg\",\"products\\/63.jpg\"]'),(324,4,12,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/44.jpg\",\"products\\/53.jpg\"]'),(325,9,33,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\"]'),(326,9,9,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/34.jpg\"]'),(327,2,28,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/61.jpg\"]'),(328,5,63,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/50.jpg\"]'),(329,8,50,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\"]'),(330,7,6,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/42.jpg\"]'),(331,9,56,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/57.jpg\"]'),(332,1,38,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/42.jpg\"]'),(333,9,8,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/36.jpg\",\"products\\/56.jpg\"]'),(334,8,37,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/40.jpg\"]'),(335,2,65,5.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/46.jpg\"]'),(336,7,61,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\",\"products\\/43.jpg\",\"products\\/65.jpg\"]'),(337,8,45,5.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/36.jpg\"]'),(338,2,60,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/46.jpg\",\"products\\/62.jpg\"]'),(339,7,63,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/54.jpg\"]'),(340,6,51,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/59.jpg\"]'),(341,6,55,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\"]'),(342,5,37,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\"]'),(343,8,10,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\",\"products\\/52.jpg\"]'),(344,2,14,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/38.jpg\",\"products\\/51.jpg\"]'),(345,5,52,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\"]'),(346,2,30,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\",\"products\\/32.jpg\",\"products\\/56.jpg\"]'),(347,5,48,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/32.jpg\"]'),(348,7,54,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/36.jpg\",\"products\\/55.jpg\"]'),(349,4,15,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/35.jpg\"]'),(350,3,16,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/41.jpg\"]'),(351,5,62,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/43.jpg\",\"products\\/54.jpg\"]'),(352,6,5,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/43.jpg\"]'),(353,4,56,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\"]'),(354,4,15,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/39.jpg\"]'),(355,7,30,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/43.jpg\"]'),(356,2,22,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\"]'),(357,7,38,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/34.jpg\"]'),(358,5,60,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/40.jpg\"]'),(359,7,13,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/43.jpg\"]'),(360,9,34,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/36.jpg\",\"products\\/64.jpg\"]'),(361,9,26,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/36.jpg\",\"products\\/65.jpg\"]'),(362,1,31,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/50.jpg\"]'),(363,2,42,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/44.jpg\",\"products\\/62.jpg\"]'),(364,6,16,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\"]'),(365,8,57,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/40.jpg\"]'),(366,1,55,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/49.jpg\",\"products\\/51.jpg\"]'),(367,8,38,2.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\"]'),(368,3,50,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/32.jpg\"]'),(369,5,22,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/64.jpg\"]'),(370,5,18,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/38.jpg\"]'),(371,1,21,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\"]'),(372,3,49,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/31.jpg\",\"products\\/58.jpg\"]'),(373,3,44,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\"]'),(374,3,25,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/64.jpg\"]'),(375,7,43,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\"]'),(376,9,40,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/49.jpg\"]'),(377,7,37,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/33.jpg\",\"products\\/61.jpg\"]'),(378,7,25,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/39.jpg\"]'),(379,7,18,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/50.jpg\"]'),(380,9,63,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\"]'),(381,7,21,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/46.jpg\",\"products\\/61.jpg\"]'),(382,7,5,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/51.jpg\"]'),(383,8,65,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/44.jpg\",\"products\\/62.jpg\"]'),(384,7,20,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/34.jpg\"]'),(385,2,50,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\"]'),(386,8,39,2.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/36.jpg\"]'),(387,4,11,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\"]'),(388,5,62,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/33.jpg\"]'),(389,5,16,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\"]'),(390,1,55,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/40.jpg\",\"products\\/54.jpg\"]'),(391,5,58,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/50.jpg\",\"products\\/59.jpg\"]'),(392,5,58,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/65.jpg\"]'),(393,6,46,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/64.jpg\"]'),(394,8,34,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/34.jpg\",\"products\\/53.jpg\"]'),(395,5,21,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\"]'),(396,8,14,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\"]'),(397,7,54,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/31.jpg\"]'),(398,3,13,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\"]'),(399,1,17,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/37.jpg\",\"products\\/54.jpg\"]'),(400,9,61,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\"]'),(401,4,3,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/59.jpg\"]'),(402,8,53,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/42.jpg\",\"products\\/57.jpg\"]'),(403,3,44,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/43.jpg\",\"products\\/61.jpg\"]'),(404,3,17,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/48.jpg\"]'),(405,9,47,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/37.jpg\"]'),(406,9,33,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/45.jpg\",\"products\\/53.jpg\"]'),(407,8,55,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/49.jpg\"]'),(408,2,32,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\"]'),(409,7,57,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/33.jpg\"]'),(410,8,17,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/44.jpg\"]'),(411,4,32,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\"]'),(412,5,65,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/32.jpg\"]'),(413,5,31,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\"]'),(414,9,20,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/33.jpg\",\"products\\/56.jpg\"]'),(415,1,10,5.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/46.jpg\",\"products\\/57.jpg\"]'),(416,3,61,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/47.jpg\"]'),(417,6,31,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/42.jpg\"]'),(418,1,47,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/53.jpg\"]'),(419,2,19,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/47.jpg\"]'),(420,8,38,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\"]'),(421,4,61,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/32.jpg\",\"products\\/58.jpg\"]'),(422,7,61,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/60.jpg\"]'),(423,9,36,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/37.jpg\"]'),(424,4,17,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\"]'),(425,3,65,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/45.jpg\"]'),(426,9,13,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/45.jpg\",\"products\\/54.jpg\"]'),(427,5,5,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/37.jpg\"]'),(428,2,24,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/37.jpg\"]'),(429,1,25,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\"]'),(430,8,35,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/45.jpg\",\"products\\/52.jpg\"]'),(431,7,55,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/44.jpg\"]'),(432,9,11,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/48.jpg\"]'),(433,2,60,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/43.jpg\"]'),(434,1,2,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\"]'),(435,7,55,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/32.jpg\"]'),(436,2,56,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/50.jpg\"]'),(437,6,13,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/50.jpg\"]'),(438,8,8,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\"]'),(439,9,62,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\"]'),(440,5,57,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/43.jpg\"]'),(441,7,45,3.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\",\"products\\/38.jpg\"]'),(442,1,41,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/49.jpg\",\"products\\/58.jpg\"]'),(443,7,27,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/45.jpg\",\"products\\/57.jpg\"]'),(444,9,29,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/47.jpg\"]'),(445,7,55,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/41.jpg\"]'),(446,1,20,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/59.jpg\"]'),(447,6,5,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\",\"products\\/35.jpg\",\"products\\/63.jpg\"]'),(448,2,52,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/37.jpg\"]'),(449,1,19,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/43.jpg\",\"products\\/53.jpg\"]'),(450,9,49,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/44.jpg\",\"products\\/57.jpg\"]'),(451,2,7,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/41.jpg\",\"products\\/63.jpg\"]'),(452,5,44,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/40.jpg\",\"products\\/57.jpg\"]'),(453,5,46,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\"]'),(454,2,29,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/35.jpg\",\"products\\/63.jpg\"]'),(455,6,17,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/38.jpg\",\"products\\/56.jpg\"]'),(456,2,55,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\"]'),(457,7,4,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/52.jpg\"]'),(458,6,39,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\"]'),(459,7,4,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/46.jpg\"]'),(460,2,41,2.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/47.jpg\",\"products\\/51.jpg\"]'),(461,5,59,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\"]'),(462,4,39,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/43.jpg\",\"products\\/64.jpg\"]'),(463,5,19,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/35.jpg\",\"products\\/53.jpg\"]'),(464,1,8,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/50.jpg\"]'),(465,7,15,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/34.jpg\"]'),(466,7,34,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/39.jpg\"]'),(467,8,27,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\",\"products\\/61.jpg\"]'),(468,2,34,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/63.jpg\"]'),(469,2,37,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\"]'),(470,4,36,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/47.jpg\"]'),(471,8,50,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/39.jpg\"]'),(472,7,7,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/40.jpg\"]'),(473,1,3,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\",\"products\\/31.jpg\",\"products\\/56.jpg\"]'),(474,5,25,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/46.jpg\"]'),(475,8,35,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\"]'),(476,1,55,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/54.jpg\"]'),(477,9,41,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/42.jpg\"]'),(478,6,4,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/31.jpg\",\"products\\/57.jpg\"]'),(479,4,62,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/42.jpg\"]'),(480,2,13,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/43.jpg\"]'),(481,3,40,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/40.jpg\",\"products\\/61.jpg\"]'),(482,7,57,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/31.jpg\"]'),(483,7,16,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/39.jpg\"]'),(484,8,39,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\",\"products\\/38.jpg\"]'),(485,8,37,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/59.jpg\"]'),(486,7,41,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\",\"products\\/44.jpg\"]'),(487,5,47,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/41.jpg\"]'),(488,8,37,3.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/39.jpg\",\"products\\/62.jpg\"]'),(489,5,56,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/49.jpg\"]'),(490,4,22,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/49.jpg\",\"products\\/53.jpg\"]'),(491,8,35,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/60.jpg\"]'),(492,5,55,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\"]'),(493,9,55,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/57.jpg\"]'),(494,3,45,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\"]'),(495,9,56,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/46.jpg\"]'),(496,6,65,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/31.jpg\"]'),(497,4,27,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/36.jpg\"]'),(498,1,56,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/43.jpg\",\"products\\/63.jpg\"]'),(499,3,47,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/42.jpg\"]'),(500,4,62,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/39.jpg\"]'),(501,3,55,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/43.jpg\"]'),(502,6,17,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/35.jpg\"]'),(503,2,44,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\"]'),(504,4,59,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/48.jpg\"]'),(505,4,61,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\"]'),(506,6,28,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\"]'),(507,3,12,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/50.jpg\",\"products\\/60.jpg\"]'),(508,6,7,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/23.jpg\",\"products\\/46.jpg\"]'),(509,1,22,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/49.jpg\",\"products\\/56.jpg\"]'),(510,6,48,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/50.jpg\"]'),(511,3,43,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\"]'),(512,5,45,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/32.jpg\"]'),(513,5,6,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\"]'),(514,3,37,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/37.jpg\"]'),(515,4,26,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\"]'),(516,9,33,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\"]'),(517,2,42,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/45.jpg\"]'),(518,3,18,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/37.jpg\"]'),(519,9,28,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/39.jpg\"]'),(520,9,54,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\"]'),(521,5,40,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/63.jpg\"]'),(522,2,39,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/31.jpg\"]'),(523,5,30,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/59.jpg\"]'),(524,9,50,2.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/38.jpg\"]'),(525,2,38,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/43.jpg\",\"products\\/58.jpg\"]'),(526,5,36,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\"]'),(527,5,57,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/32.jpg\"]'),(528,7,63,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/34.jpg\",\"products\\/61.jpg\"]'),(529,8,28,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/39.jpg\"]'),(530,7,38,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\"]'),(531,5,10,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\",\"products\\/48.jpg\"]'),(532,5,18,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\"]'),(533,8,38,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/42.jpg\",\"products\\/57.jpg\"]'),(534,8,34,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/59.jpg\"]'),(535,6,27,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/36.jpg\"]'),(536,8,7,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/36.jpg\",\"products\\/52.jpg\"]'),(537,7,9,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/31.jpg\",\"products\\/57.jpg\"]'),(538,6,57,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/47.jpg\"]'),(539,8,27,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/51.jpg\"]'),(540,8,29,3.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/37.jpg\",\"products\\/54.jpg\"]'),(541,3,20,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\"]'),(542,5,7,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/40.jpg\"]'),(543,6,13,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/58.jpg\"]'),(544,1,2,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\"]'),(545,1,49,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\"]'),(546,8,16,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\"]'),(547,8,62,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/33.jpg\",\"products\\/59.jpg\"]'),(548,2,38,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\"]'),(549,4,60,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/42.jpg\",\"products\\/57.jpg\"]'),(550,8,63,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\"]'),(551,9,9,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/39.jpg\"]'),(552,5,46,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/42.jpg\"]'),(553,7,20,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/54.jpg\"]'),(554,8,61,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/46.jpg\"]'),(555,9,52,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\"]'),(556,2,24,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\"]'),(557,4,5,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/38.jpg\"]'),(558,4,31,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/50.jpg\",\"products\\/51.jpg\"]'),(559,1,15,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\"]'),(560,7,54,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/55.jpg\"]'),(561,9,19,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/48.jpg\"]'),(562,2,29,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/61.jpg\"]'),(563,6,38,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/41.jpg\"]'),(564,4,40,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\"]'),(565,3,5,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/22.jpg\",\"products\\/54.jpg\"]'),(566,3,29,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/46.jpg\"]'),(567,7,37,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/41.jpg\"]'),(568,7,5,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/41.jpg\"]'),(569,6,25,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/43.jpg\"]'),(570,4,12,4.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/49.jpg\",\"products\\/55.jpg\"]'),(571,7,52,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\"]'),(572,4,32,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/51.jpg\"]'),(573,9,31,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/59.jpg\"]'),(574,4,55,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/50.jpg\"]'),(575,9,3,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/37.jpg\"]'),(576,1,33,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\"]'),(577,4,16,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/54.jpg\"]'),(578,7,1,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/65.jpg\"]'),(579,8,5,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\"]'),(580,7,3,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\"]'),(581,6,58,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/46.jpg\"]'),(582,1,6,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/5.jpg\",\"products\\/49.jpg\"]'),(583,2,63,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/48.jpg\",\"products\\/54.jpg\"]'),(584,4,60,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/61.jpg\"]'),(585,5,28,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\"]'),(586,5,63,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\"]'),(587,1,8,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/36.jpg\"]'),(588,3,57,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/52.jpg\"]'),(589,1,42,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\",\"products\\/34.jpg\"]'),(590,6,20,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\"]'),(591,7,4,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\"]'),(592,5,34,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\",\"products\\/37.jpg\"]'),(593,9,53,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/43.jpg\"]'),(594,4,25,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\"]'),(595,5,40,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\"]'),(596,6,20,5.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/45.jpg\"]'),(597,7,15,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/36.jpg\"]'),(598,5,32,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/52.jpg\"]'),(599,8,40,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\"]'),(600,1,43,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/31.jpg\"]'),(601,7,36,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\"]'),(602,5,18,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/12.jpg\",\"products\\/45.jpg\"]'),(603,7,47,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/34.jpg\"]'),(604,1,27,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\"]'),(605,8,3,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\"]'),(606,6,14,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\"]'),(607,3,27,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/60.jpg\"]'),(608,1,24,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/34.jpg\",\"products\\/64.jpg\"]'),(609,8,53,3.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/40.jpg\"]'),(610,7,63,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/38.jpg\"]'),(611,3,58,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/32.jpg\"]'),(612,4,13,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\"]'),(613,6,25,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/43.jpg\",\"products\\/51.jpg\"]'),(614,9,9,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\"]'),(615,1,23,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\"]'),(616,7,56,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/41.jpg\",\"products\\/53.jpg\"]'),(617,5,39,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/34.jpg\"]'),(618,8,40,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/32.jpg\",\"products\\/62.jpg\"]'),(619,7,54,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\",\"products\\/46.jpg\",\"products\\/63.jpg\"]'),(620,4,26,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\"]'),(621,1,4,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/32.jpg\"]'),(622,4,28,3.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/58.jpg\"]'),(623,9,33,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\"]'),(624,8,49,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\",\"products\\/61.jpg\"]'),(625,7,54,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/11.jpg\"]'),(626,4,49,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\",\"products\\/49.jpg\"]'),(627,6,3,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/39.jpg\"]'),(628,2,46,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/8.jpg\",\"products\\/46.jpg\"]'),(629,9,36,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\",\"products\\/34.jpg\"]'),(630,2,21,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\",\"products\\/42.jpg\"]'),(631,1,31,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/3.jpg\",\"products\\/40.jpg\",\"products\\/54.jpg\"]'),(632,9,51,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/64.jpg\"]'),(633,1,61,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/30.jpg\",\"products\\/45.jpg\"]'),(634,9,17,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/50.jpg\",\"products\\/60.jpg\"]'),(635,1,60,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/38.jpg\",\"products\\/51.jpg\"]'),(636,5,2,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/29.jpg\"]'),(637,2,47,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\",\"products\\/36.jpg\",\"products\\/60.jpg\"]'),(638,3,47,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\"]'),(639,1,23,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/6.jpg\"]'),(640,1,33,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/19.jpg\"]'),(641,1,33,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\",\"products\\/46.jpg\",\"products\\/60.jpg\"]'),(642,3,23,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/32.jpg\"]'),(643,5,60,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/49.jpg\"]'),(644,4,43,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/31.jpg\"]'),(645,9,49,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/10.jpg\",\"products\\/37.jpg\"]'),(646,4,4,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/33.jpg\",\"products\\/52.jpg\"]'),(647,5,43,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\"]'),(648,6,48,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/26.jpg\"]'),(649,3,39,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/39.jpg\"]'),(650,6,54,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/43.jpg\"]'),(651,6,46,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/42.jpg\",\"products\\/58.jpg\"]'),(652,2,43,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/14.jpg\",\"products\\/50.jpg\"]'),(653,3,36,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/50.jpg\",\"products\\/62.jpg\"]'),(654,1,33,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/17.jpg\"]'),(655,1,47,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\"]'),(656,8,20,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/32.jpg\",\"products\\/55.jpg\"]'),(657,7,13,1.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/4.jpg\",\"products\\/37.jpg\"]'),(658,5,52,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/47.jpg\"]'),(659,3,45,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/9.jpg\",\"products\\/41.jpg\"]'),(660,9,11,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/27.jpg\"]'),(661,4,47,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/50.jpg\",\"products\\/56.jpg\"]'),(662,6,15,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/57.jpg\"]'),(663,1,57,1.00,'Clean & perfect source code','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/24.jpg\",\"products\\/33.jpg\",\"products\\/59.jpg\"]'),(664,1,65,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\",\"products\\/57.jpg\"]'),(665,4,60,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/28.jpg\",\"products\\/50.jpg\"]'),(666,4,38,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/1.jpg\",\"products\\/61.jpg\"]'),(667,8,55,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/7.jpg\",\"products\\/60.jpg\"]'),(668,8,7,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/31.jpg\",\"products\\/61.jpg\"]'),(669,3,47,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/15.jpg\"]'),(670,5,10,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/37.jpg\"]'),(671,3,44,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/45.jpg\"]'),(672,1,18,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/25.jpg\",\"products\\/50.jpg\",\"products\\/54.jpg\"]'),(673,2,32,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/13.jpg\",\"products\\/39.jpg\"]'),(674,5,6,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/21.jpg\",\"products\\/43.jpg\"]'),(675,9,54,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/18.jpg\"]'),(676,6,56,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/20.jpg\",\"products\\/45.jpg\"]'),(677,5,64,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/16.jpg\",\"products\\/31.jpg\"]'),(678,3,9,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:02','2023-01-22 08:10:02','[\"products\\/2.jpg\"]'),(679,9,45,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/41.jpg\"]'),(680,7,19,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/44.jpg\",\"products\\/51.jpg\"]'),(681,2,2,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/39.jpg\",\"products\\/62.jpg\"]'),(682,4,7,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/44.jpg\",\"products\\/53.jpg\"]'),(683,8,60,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/4.jpg\",\"products\\/38.jpg\"]'),(684,4,13,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/38.jpg\"]'),(685,9,16,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/40.jpg\"]'),(686,9,51,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/40.jpg\",\"products\\/62.jpg\"]'),(687,7,39,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/38.jpg\"]'),(688,3,11,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/36.jpg\"]'),(689,6,18,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/15.jpg\",\"products\\/41.jpg\"]'),(690,4,8,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/42.jpg\"]'),(691,5,11,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/15.jpg\"]'),(692,9,24,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/46.jpg\",\"products\\/65.jpg\"]'),(693,4,54,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/47.jpg\"]'),(694,8,25,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\"]'),(695,4,56,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/61.jpg\"]'),(696,6,39,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/1.jpg\",\"products\\/34.jpg\"]'),(697,1,49,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/31.jpg\"]'),(698,4,50,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/26.jpg\"]'),(699,7,18,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\",\"products\\/43.jpg\",\"products\\/52.jpg\"]'),(700,1,29,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/48.jpg\",\"products\\/63.jpg\"]'),(701,9,24,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/21.jpg\",\"products\\/46.jpg\",\"products\\/65.jpg\"]'),(702,7,52,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/48.jpg\"]'),(703,7,49,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\",\"products\\/47.jpg\"]'),(704,6,29,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/47.jpg\"]'),(705,5,17,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\"]'),(706,2,56,3.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\"]'),(707,4,46,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/9.jpg\"]'),(708,5,10,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\"]'),(709,6,57,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/28.jpg\",\"products\\/41.jpg\",\"products\\/56.jpg\"]'),(710,1,26,2.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/39.jpg\"]'),(711,5,4,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\"]'),(712,3,40,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\"]'),(713,5,18,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/50.jpg\",\"products\\/58.jpg\"]'),(714,5,43,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\",\"products\\/38.jpg\"]'),(715,2,59,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/39.jpg\"]'),(716,6,64,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\"]'),(717,5,38,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/1.jpg\",\"products\\/47.jpg\"]'),(718,1,5,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/8.jpg\",\"products\\/45.jpg\"]'),(719,5,34,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/37.jpg\"]'),(720,3,2,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/9.jpg\",\"products\\/37.jpg\"]'),(721,2,11,5.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\",\"products\\/46.jpg\"]'),(722,1,60,1.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/38.jpg\"]'),(723,1,23,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\"]'),(724,4,23,1.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/21.jpg\",\"products\\/42.jpg\"]'),(725,4,38,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\",\"products\\/49.jpg\"]'),(726,7,3,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\",\"products\\/38.jpg\"]'),(727,5,5,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\",\"products\\/46.jpg\",\"products\\/59.jpg\"]'),(728,5,14,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/36.jpg\"]'),(729,5,32,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\",\"products\\/64.jpg\"]'),(730,5,38,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/16.jpg\"]'),(731,9,35,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/63.jpg\"]'),(732,7,52,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/8.jpg\",\"products\\/31.jpg\"]'),(733,3,16,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/44.jpg\"]'),(734,6,5,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/58.jpg\"]'),(735,9,37,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/28.jpg\",\"products\\/31.jpg\"]'),(736,4,14,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\"]'),(737,4,29,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/48.jpg\"]'),(738,1,31,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/44.jpg\"]'),(739,3,51,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\",\"products\\/36.jpg\"]'),(740,6,63,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/43.jpg\"]'),(741,4,65,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\"]'),(742,4,56,1.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/40.jpg\",\"products\\/58.jpg\"]'),(743,5,59,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/44.jpg\"]'),(744,7,61,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\"]'),(745,8,30,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/44.jpg\"]'),(746,3,52,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/50.jpg\"]'),(747,7,15,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\",\"products\\/50.jpg\"]'),(748,3,16,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/8.jpg\",\"products\\/48.jpg\"]'),(749,3,33,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\",\"products\\/34.jpg\"]'),(750,7,26,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/1.jpg\",\"products\\/40.jpg\",\"products\\/51.jpg\"]'),(751,1,27,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/16.jpg\",\"products\\/33.jpg\"]'),(752,4,40,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/2.jpg\",\"products\\/57.jpg\"]'),(753,2,12,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\"]'),(754,5,18,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\"]'),(755,4,37,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/36.jpg\"]'),(756,2,36,1.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/50.jpg\"]'),(757,2,1,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\"]'),(758,5,55,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/16.jpg\",\"products\\/60.jpg\"]'),(759,2,32,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/49.jpg\"]'),(760,8,2,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\"]'),(761,4,18,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/1.jpg\"]'),(762,2,58,2.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/48.jpg\"]'),(763,8,21,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/45.jpg\"]'),(764,9,37,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\",\"products\\/51.jpg\"]'),(765,9,62,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/52.jpg\"]'),(766,1,48,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/38.jpg\"]'),(767,7,48,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\"]'),(768,2,11,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/14.jpg\",\"products\\/47.jpg\"]'),(769,1,58,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/28.jpg\",\"products\\/37.jpg\"]'),(770,6,3,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/26.jpg\",\"products\\/35.jpg\"]'),(771,9,62,2.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/47.jpg\",\"products\\/64.jpg\"]'),(772,6,55,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/43.jpg\"]'),(773,6,49,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\",\"products\\/33.jpg\",\"products\\/63.jpg\"]'),(774,3,42,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/50.jpg\"]'),(775,8,53,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/23.jpg\",\"products\\/45.jpg\"]'),(776,7,17,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/46.jpg\"]'),(777,9,17,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/38.jpg\",\"products\\/55.jpg\"]'),(778,6,10,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\",\"products\\/53.jpg\"]'),(779,5,14,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\",\"products\\/48.jpg\"]'),(780,8,28,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/26.jpg\",\"products\\/31.jpg\"]'),(781,7,22,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/43.jpg\"]'),(782,1,11,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\",\"products\\/45.jpg\"]'),(783,8,34,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/9.jpg\",\"products\\/36.jpg\"]'),(784,6,2,1.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/1.jpg\",\"products\\/49.jpg\"]'),(785,7,22,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\",\"products\\/60.jpg\"]'),(786,8,22,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\",\"products\\/62.jpg\"]'),(787,9,57,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/62.jpg\"]'),(788,6,43,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/1.jpg\",\"products\\/60.jpg\"]'),(789,4,20,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\",\"products\\/36.jpg\",\"products\\/53.jpg\"]'),(790,4,36,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/23.jpg\",\"products\\/35.jpg\",\"products\\/56.jpg\"]'),(791,8,10,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\"]'),(792,5,30,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/23.jpg\"]'),(793,4,34,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/21.jpg\",\"products\\/34.jpg\"]'),(794,3,65,2.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\"]'),(795,5,41,3.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\"]'),(796,4,57,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\"]'),(797,5,50,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/16.jpg\",\"products\\/31.jpg\"]'),(798,9,25,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\"]'),(799,4,18,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/14.jpg\"]'),(800,4,29,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/54.jpg\"]'),(801,8,13,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/49.jpg\",\"products\\/59.jpg\"]'),(802,3,7,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\",\"products\\/49.jpg\"]'),(803,4,33,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\",\"products\\/44.jpg\"]'),(804,9,63,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/2.jpg\",\"products\\/41.jpg\",\"products\\/64.jpg\"]'),(805,9,29,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\"]'),(806,3,7,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/40.jpg\"]'),(807,9,38,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/15.jpg\",\"products\\/49.jpg\"]'),(808,6,35,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/16.jpg\",\"products\\/37.jpg\"]'),(809,3,9,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/37.jpg\"]'),(810,7,60,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/26.jpg\"]'),(811,5,22,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/58.jpg\"]'),(812,3,50,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/38.jpg\"]'),(813,5,25,1.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/51.jpg\"]'),(814,4,63,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\"]'),(815,1,25,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\",\"products\\/31.jpg\",\"products\\/57.jpg\"]'),(816,3,21,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/46.jpg\"]'),(817,2,61,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\"]'),(818,1,17,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/31.jpg\",\"products\\/52.jpg\"]'),(819,1,64,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/46.jpg\"]'),(820,2,47,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/14.jpg\",\"products\\/32.jpg\",\"products\\/64.jpg\"]'),(821,1,27,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\",\"products\\/35.jpg\"]'),(822,7,25,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/63.jpg\"]'),(823,9,14,2.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\"]'),(824,6,34,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/28.jpg\",\"products\\/37.jpg\"]'),(825,5,40,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/48.jpg\"]'),(826,3,49,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/2.jpg\",\"products\\/49.jpg\"]'),(827,1,37,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\"]'),(828,1,31,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/49.jpg\",\"products\\/58.jpg\"]'),(829,4,63,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/43.jpg\"]'),(830,2,12,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\"]'),(831,8,39,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\",\"products\\/39.jpg\"]'),(832,2,5,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\",\"products\\/48.jpg\"]'),(833,8,19,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\",\"products\\/50.jpg\"]'),(834,8,45,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/8.jpg\",\"products\\/43.jpg\"]'),(835,9,40,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/54.jpg\"]'),(836,9,44,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/21.jpg\",\"products\\/35.jpg\",\"products\\/52.jpg\"]'),(837,5,25,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/14.jpg\",\"products\\/46.jpg\",\"products\\/55.jpg\"]'),(838,6,19,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\",\"products\\/36.jpg\"]'),(839,7,58,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/21.jpg\",\"products\\/58.jpg\"]'),(840,2,7,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/2.jpg\",\"products\\/42.jpg\",\"products\\/59.jpg\"]'),(841,4,64,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/15.jpg\"]'),(842,3,58,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/43.jpg\"]'),(843,7,6,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\",\"products\\/35.jpg\"]'),(844,3,33,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/44.jpg\"]'),(845,5,1,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\",\"products\\/34.jpg\"]'),(846,2,47,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\",\"products\\/50.jpg\"]'),(847,8,17,3.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/26.jpg\",\"products\\/36.jpg\"]'),(848,7,14,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/53.jpg\"]'),(849,9,16,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/45.jpg\"]'),(850,6,27,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/15.jpg\",\"products\\/41.jpg\"]'),(851,4,9,5.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/40.jpg\",\"products\\/58.jpg\"]'),(852,9,7,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/43.jpg\",\"products\\/58.jpg\"]'),(853,7,11,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\",\"products\\/31.jpg\",\"products\\/62.jpg\"]'),(854,7,2,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\"]'),(855,9,56,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/45.jpg\"]'),(856,3,27,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/15.jpg\",\"products\\/34.jpg\",\"products\\/53.jpg\"]'),(857,2,15,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/13.jpg\"]'),(858,8,18,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\",\"products\\/33.jpg\"]'),(859,3,65,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/22.jpg\",\"products\\/46.jpg\"]'),(860,2,8,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/44.jpg\"]'),(861,7,8,5.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/48.jpg\"]'),(862,4,60,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/33.jpg\"]'),(863,1,1,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/16.jpg\",\"products\\/35.jpg\",\"products\\/63.jpg\"]'),(864,8,41,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\"]'),(865,8,19,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\",\"products\\/35.jpg\",\"products\\/65.jpg\"]'),(866,8,6,2.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/43.jpg\"]'),(867,9,4,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/2.jpg\",\"products\\/34.jpg\"]'),(868,5,58,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\"]'),(869,3,37,2.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/2.jpg\",\"products\\/50.jpg\"]'),(870,7,58,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/44.jpg\"]'),(871,1,27,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\",\"products\\/45.jpg\",\"products\\/57.jpg\"]'),(872,4,18,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/26.jpg\",\"products\\/43.jpg\",\"products\\/53.jpg\"]'),(873,6,14,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/43.jpg\",\"products\\/59.jpg\"]'),(874,3,5,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/28.jpg\",\"products\\/33.jpg\"]'),(875,4,38,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\"]'),(876,6,30,2.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/25.jpg\",\"products\\/50.jpg\"]'),(877,9,24,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\",\"products\\/39.jpg\",\"products\\/62.jpg\"]'),(878,6,37,1.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/28.jpg\",\"products\\/34.jpg\",\"products\\/55.jpg\"]'),(879,1,9,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/9.jpg\",\"products\\/44.jpg\"]'),(880,6,23,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/40.jpg\"]'),(881,4,43,2.00,'Clean & perfect source code','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/4.jpg\",\"products\\/46.jpg\"]'),(882,5,29,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/7.jpg\"]'),(883,6,34,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/59.jpg\"]'),(884,1,35,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\",\"products\\/63.jpg\"]'),(885,6,15,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\"]'),(886,7,38,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\",\"products\\/32.jpg\"]'),(887,6,63,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/21.jpg\",\"products\\/48.jpg\"]'),(888,2,57,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/8.jpg\",\"products\\/54.jpg\"]'),(889,8,40,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/43.jpg\",\"products\\/63.jpg\"]'),(890,6,64,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/19.jpg\",\"products\\/34.jpg\"]'),(891,3,8,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/18.jpg\"]'),(892,3,19,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/6.jpg\",\"products\\/44.jpg\"]'),(893,9,54,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/4.jpg\",\"products\\/63.jpg\"]'),(894,1,24,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\",\"products\\/48.jpg\",\"products\\/56.jpg\"]'),(895,7,24,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\"]'),(896,2,45,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/9.jpg\"]'),(897,6,1,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/2.jpg\",\"products\\/47.jpg\"]'),(898,3,38,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/34.jpg\"]'),(899,2,23,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\"]'),(900,8,7,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\"]'),(901,4,41,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/26.jpg\",\"products\\/44.jpg\"]'),(902,3,41,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/3.jpg\",\"products\\/41.jpg\"]'),(903,1,12,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/11.jpg\",\"products\\/39.jpg\",\"products\\/62.jpg\"]'),(904,8,23,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/5.jpg\",\"products\\/50.jpg\"]'),(905,2,15,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/10.jpg\",\"products\\/35.jpg\"]'),(906,4,42,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/38.jpg\"]'),(907,8,23,4.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/15.jpg\",\"products\\/38.jpg\",\"products\\/63.jpg\"]'),(908,8,56,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/22.jpg\",\"products\\/46.jpg\"]'),(909,1,25,2.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/36.jpg\",\"products\\/62.jpg\"]'),(910,3,32,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/27.jpg\",\"products\\/59.jpg\"]'),(911,2,54,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/22.jpg\"]'),(912,2,65,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/17.jpg\",\"products\\/46.jpg\",\"products\\/57.jpg\"]'),(913,2,49,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/9.jpg\",\"products\\/54.jpg\"]'),(914,9,11,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/1.jpg\",\"products\\/48.jpg\"]'),(915,1,35,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/29.jpg\",\"products\\/36.jpg\"]'),(916,4,14,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/12.jpg\",\"products\\/40.jpg\",\"products\\/51.jpg\"]'),(917,5,12,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/30.jpg\",\"products\\/43.jpg\",\"products\\/61.jpg\"]'),(918,1,55,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/23.jpg\",\"products\\/41.jpg\"]'),(919,2,55,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/22.jpg\"]'),(920,4,2,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/28.jpg\"]'),(921,3,39,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/4.jpg\"]'),(922,2,9,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/20.jpg\",\"products\\/50.jpg\",\"products\\/53.jpg\"]'),(923,8,17,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:03','2023-01-22 08:10:03','[\"products\\/24.jpg\",\"products\\/49.jpg\",\"products\\/63.jpg\"]'),(924,3,43,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/29.jpg\"]'),(925,4,26,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/9.jpg\",\"products\\/31.jpg\"]'),(926,2,31,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/21.jpg\",\"products\\/41.jpg\"]'),(927,9,55,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/12.jpg\",\"products\\/32.jpg\",\"products\\/56.jpg\"]'),(928,9,25,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/13.jpg\",\"products\\/65.jpg\"]'),(929,4,42,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/15.jpg\",\"products\\/57.jpg\"]'),(930,7,54,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/20.jpg\",\"products\\/38.jpg\"]'),(931,5,10,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/22.jpg\",\"products\\/44.jpg\"]'),(932,3,60,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/18.jpg\",\"products\\/44.jpg\",\"products\\/55.jpg\"]'),(933,7,3,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/26.jpg\",\"products\\/33.jpg\"]'),(934,9,2,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/13.jpg\",\"products\\/33.jpg\",\"products\\/52.jpg\"]'),(935,3,55,3.00,'Clean & perfect source code','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/14.jpg\",\"products\\/46.jpg\"]'),(936,3,59,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/22.jpg\",\"products\\/47.jpg\",\"products\\/58.jpg\"]'),(937,4,43,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/17.jpg\"]'),(938,7,14,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/12.jpg\"]'),(939,4,24,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/24.jpg\",\"products\\/40.jpg\"]'),(940,9,42,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/17.jpg\"]'),(941,1,22,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/11.jpg\"]'),(942,8,1,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/4.jpg\",\"products\\/40.jpg\"]'),(943,6,25,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/13.jpg\",\"products\\/45.jpg\"]'),(944,8,54,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/10.jpg\"]'),(945,4,44,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/25.jpg\",\"products\\/41.jpg\"]'),(946,5,3,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/25.jpg\",\"products\\/56.jpg\"]'),(947,5,60,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/28.jpg\",\"products\\/32.jpg\",\"products\\/53.jpg\"]'),(948,2,32,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/19.jpg\",\"products\\/45.jpg\"]'),(949,9,24,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/7.jpg\"]'),(950,5,25,5.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/4.jpg\",\"products\\/46.jpg\"]'),(951,7,30,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/19.jpg\",\"products\\/44.jpg\"]'),(952,6,3,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/5.jpg\",\"products\\/32.jpg\"]'),(953,6,31,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/6.jpg\",\"products\\/42.jpg\",\"products\\/54.jpg\"]'),(954,2,41,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/16.jpg\",\"products\\/53.jpg\"]'),(955,5,43,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/9.jpg\",\"products\\/46.jpg\",\"products\\/55.jpg\"]'),(956,8,36,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/2.jpg\",\"products\\/46.jpg\"]'),(957,3,7,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/9.jpg\",\"products\\/38.jpg\"]'),(958,5,5,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/29.jpg\",\"products\\/49.jpg\",\"products\\/60.jpg\"]'),(959,3,35,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/16.jpg\"]'),(960,7,36,4.00,'Clean & perfect source code','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/19.jpg\",\"products\\/49.jpg\"]'),(961,9,9,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/21.jpg\",\"products\\/43.jpg\"]'),(962,5,40,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/22.jpg\",\"products\\/40.jpg\",\"products\\/60.jpg\"]'),(963,8,57,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/19.jpg\",\"products\\/49.jpg\"]'),(964,4,18,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/20.jpg\"]'),(965,7,45,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/27.jpg\",\"products\\/39.jpg\"]'),(966,5,45,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/11.jpg\",\"products\\/61.jpg\"]'),(967,4,16,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/14.jpg\",\"products\\/45.jpg\",\"products\\/64.jpg\"]'),(968,3,6,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/30.jpg\",\"products\\/50.jpg\",\"products\\/56.jpg\"]'),(969,2,6,2.00,'Good app, good backup service and support. Good documentation.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/15.jpg\",\"products\\/44.jpg\"]'),(970,2,13,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/3.jpg\",\"products\\/35.jpg\",\"products\\/53.jpg\"]'),(971,1,42,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/18.jpg\",\"products\\/52.jpg\"]'),(972,7,43,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/1.jpg\",\"products\\/42.jpg\"]'),(973,5,64,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/17.jpg\",\"products\\/31.jpg\"]'),(974,1,45,4.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/30.jpg\",\"products\\/31.jpg\"]'),(975,6,7,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/11.jpg\",\"products\\/50.jpg\"]'),(976,2,18,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/10.jpg\",\"products\\/34.jpg\"]'),(977,4,33,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/12.jpg\",\"products\\/60.jpg\"]'),(978,1,43,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/26.jpg\",\"products\\/58.jpg\"]'),(979,7,34,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/4.jpg\",\"products\\/37.jpg\"]'),(980,3,1,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/1.jpg\",\"products\\/64.jpg\"]'),(981,6,63,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/15.jpg\",\"products\\/32.jpg\"]'),(982,5,9,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/19.jpg\"]'),(983,7,12,3.00,'Clean & perfect source code','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/24.jpg\",\"products\\/43.jpg\"]'),(984,6,49,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/4.jpg\",\"products\\/41.jpg\",\"products\\/60.jpg\"]'),(985,4,22,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/27.jpg\",\"products\\/35.jpg\"]'),(986,8,53,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/16.jpg\"]'),(987,1,64,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/25.jpg\"]'),(988,4,64,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/19.jpg\",\"products\\/45.jpg\"]'),(989,2,28,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/3.jpg\"]'),(990,9,32,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/14.jpg\"]'),(991,7,7,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/25.jpg\",\"products\\/37.jpg\"]'),(992,4,33,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/21.jpg\",\"products\\/47.jpg\"]'),(993,8,40,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/11.jpg\",\"products\\/41.jpg\",\"products\\/59.jpg\"]'),(994,3,30,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/18.jpg\",\"products\\/48.jpg\"]'),(995,6,12,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/26.jpg\"]'),(996,1,46,1.00,'Best ecommerce CMS online store!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/1.jpg\",\"products\\/36.jpg\"]'),(997,1,51,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/20.jpg\",\"products\\/38.jpg\"]'),(998,3,51,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/5.jpg\",\"products\\/31.jpg\",\"products\\/65.jpg\"]'),(999,5,11,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/30.jpg\",\"products\\/34.jpg\",\"products\\/52.jpg\"]'),(1000,4,15,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2023-01-22 08:10:04','2023-01-22 08:10:04','[\"products\\/3.jpg\",\"products\\/49.jpg\",\"products\\/61.jpg\"]'); /*!40000 ALTER TABLE `ec_reviews` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipment_histories` -- DROP TABLE IF EXISTS `ec_shipment_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipment_histories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int unsigned DEFAULT NULL, `shipment_id` int unsigned NOT NULL, `order_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipment_histories` -- LOCK TABLES `ec_shipment_histories` WRITE; /*!40000 ALTER TABLE `ec_shipment_histories` DISABLE KEYS */; INSERT INTO `ec_shipment_histories` VALUES (1,'create_from_order','Shipping was created from order %order_id%',0,1,1,'2023-01-05 16:10:05','2023-01-05 16:10:05'),(2,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,1,1,'2023-01-20 16:10:05','2023-01-22 08:10:05'),(3,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,1,1,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(4,'create_from_order','Shipping was created from order %order_id%',0,2,2,'2023-01-16 00:10:05','2023-01-16 00:10:05'),(5,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,2,2,'2023-01-20 18:10:05','2023-01-22 08:10:05'),(6,'create_from_order','Shipping was created from order %order_id%',0,3,3,'2023-01-07 08:10:05','2023-01-07 08:10:05'),(7,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,3,3,'2023-01-20 20:10:05','2023-01-22 08:10:05'),(8,'create_from_order','Shipping was created from order %order_id%',0,4,4,'2023-01-19 12:10:05','2023-01-19 12:10:05'),(9,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,4,4,'2023-01-20 22:10:05','2023-01-22 08:10:05'),(10,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,4,4,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(11,'create_from_order','Shipping was created from order %order_id%',0,5,5,'2023-01-11 16:10:05','2023-01-11 16:10:05'),(12,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,5,5,'2023-01-21 00:10:05','2023-01-22 08:10:05'),(13,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,5,5,'2023-01-22 08:10:05','2023-01-22 08:10:05'),(14,'create_from_order','Shipping was created from order %order_id%',0,6,6,'2023-01-14 20:10:05','2023-01-14 20:10:05'),(15,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,6,6,'2023-01-21 02:10:05','2023-01-22 08:10:05'),(16,'create_from_order','Shipping was created from order %order_id%',0,7,7,'2023-01-21 04:10:05','2023-01-21 04:10:05'),(17,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,7,7,'2023-01-21 04:10:05','2023-01-22 08:10:05'),(18,'create_from_order','Shipping was created from order %order_id%',0,8,8,'2023-01-16 22:10:05','2023-01-16 22:10:05'),(19,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,8,8,'2023-01-21 06:10:05','2023-01-22 08:10:05'),(20,'create_from_order','Shipping was created from order %order_id%',0,9,9,'2023-01-21 08:10:05','2023-01-21 08:10:05'),(21,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,9,9,'2023-01-21 08:10:05','2023-01-22 08:10:05'),(22,'create_from_order','Shipping was created from order %order_id%',0,10,10,'2023-01-18 16:10:05','2023-01-18 16:10:05'),(23,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,10,10,'2023-01-21 10:10:05','2023-01-22 08:10:05'),(24,'create_from_order','Shipping was created from order %order_id%',0,11,11,'2023-01-16 12:10:05','2023-01-16 12:10:05'),(25,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,11,11,'2023-01-21 12:10:05','2023-01-22 08:10:05'),(26,'create_from_order','Shipping was created from order %order_id%',0,12,12,'2023-01-20 02:10:05','2023-01-20 02:10:05'),(27,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,12,12,'2023-01-21 14:10:05','2023-01-22 08:10:05'),(28,'create_from_order','Shipping was created from order %order_id%',0,13,13,'2023-01-18 08:10:05','2023-01-18 08:10:05'),(29,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,13,13,'2023-01-21 16:10:06','2023-01-22 08:10:06'),(30,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,13,13,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(31,'create_from_order','Shipping was created from order %order_id%',0,14,14,'2023-01-17 16:10:06','2023-01-17 16:10:06'),(32,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,14,14,'2023-01-21 18:10:06','2023-01-22 08:10:06'),(33,'create_from_order','Shipping was created from order %order_id%',0,15,15,'2023-01-18 08:10:06','2023-01-18 08:10:06'),(34,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,15,15,'2023-01-21 20:10:06','2023-01-22 08:10:06'),(35,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,15,15,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(36,'create_from_order','Shipping was created from order %order_id%',0,16,16,'2023-01-21 12:10:06','2023-01-21 12:10:06'),(37,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,16,16,'2023-01-21 22:10:06','2023-01-22 08:10:06'),(38,'create_from_order','Shipping was created from order %order_id%',0,17,17,'2023-01-19 08:10:06','2023-01-19 08:10:06'),(39,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,17,17,'2023-01-22 00:10:06','2023-01-22 08:10:06'),(40,'create_from_order','Shipping was created from order %order_id%',0,18,18,'2023-01-19 20:10:06','2023-01-19 20:10:06'),(41,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,18,18,'2023-01-22 02:10:06','2023-01-22 08:10:06'),(42,'create_from_order','Shipping was created from order %order_id%',0,19,19,'2023-01-21 12:10:06','2023-01-21 12:10:06'),(43,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,19,19,'2023-01-22 04:10:06','2023-01-22 08:10:06'),(44,'update_status','Changed status of shipping to: Delivered. Updated by: %user_name%',0,19,19,'2023-01-22 08:10:06','2023-01-22 08:10:06'),(45,'create_from_order','Shipping was created from order %order_id%',0,20,20,'2023-01-22 02:10:06','2023-01-22 02:10:06'),(46,'update_status','Changed status of shipping to: Approved. Updated by: %user_name%',0,20,20,'2023-01-22 06:10:06','2023-01-22 08:10:06'); /*!40000 ALTER TABLE `ec_shipment_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipments` -- DROP TABLE IF EXISTS `ec_shipments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipments` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_id` int unsigned NOT NULL, `user_id` int unsigned DEFAULT NULL, `weight` double(8,2) DEFAULT '0.00', `shipment_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rate_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `cod_amount` decimal(15,2) DEFAULT '0.00', `cod_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `cross_checking_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `price` decimal(15,2) DEFAULT '0.00', `store_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tracking_link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `estimate_date_shipped` datetime DEFAULT NULL, `date_shipped` datetime DEFAULT NULL, `label_url` text COLLATE utf8mb4_unicode_ci, `metadata` mediumtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipments` -- LOCK TABLES `ec_shipments` WRITE; /*!40000 ALTER TABLE `ec_shipments` DISABLE KEYS */; INSERT INTO `ec_shipments` VALUES (1,1,NULL,4090.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0045824265','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-25 15:10:05','2023-01-22 15:10:05',NULL,NULL),(2,2,NULL,1564.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0033321423','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-30 15:10:05',NULL,NULL,NULL),(3,3,NULL,3032.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0045127029','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-23 15:10:05',NULL,NULL,NULL),(4,4,NULL,7480.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0092137718','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-25 15:10:05','2023-01-22 15:10:05',NULL,NULL),(5,5,NULL,3835.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0098511210','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-24 15:10:05','2023-01-22 15:10:05',NULL,NULL),(6,6,NULL,6603.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0094945431','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-23 15:10:05',NULL,NULL,NULL),(7,7,NULL,4375.00,NULL,NULL,'','approved',6184.00,'pending','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0034299725','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-27 15:10:05',NULL,NULL,NULL),(8,8,NULL,5977.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0015596896','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-31 15:10:05',NULL,NULL,NULL),(9,9,NULL,5484.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0089059599','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-28 15:10:05',NULL,NULL,NULL),(10,10,NULL,4815.00,NULL,NULL,'','approved',6367.00,'pending','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD003233823','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-24 15:10:05',NULL,NULL,NULL),(11,11,NULL,6299.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0019478891','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-27 15:10:05',NULL,NULL,NULL),(12,12,NULL,2762.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:05','2023-01-22 08:10:05','JJD0072909073','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-31 15:10:05',NULL,NULL,NULL),(13,13,NULL,4823.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD0022178685','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-27 15:10:06','2023-01-22 15:10:06',NULL,NULL),(14,14,NULL,2332.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD0040485502','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-28 15:10:06',NULL,NULL,NULL),(15,15,NULL,2607.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD0015088010','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-27 15:10:06','2023-01-22 15:10:06',NULL,NULL),(16,16,NULL,3618.00,NULL,NULL,'','approved',5334.00,'pending','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD0051841254','GHN','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-31 15:10:06',NULL,NULL,NULL),(17,17,NULL,3725.00,NULL,NULL,'','approved',4257.00,'pending','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD0027667226','DHL','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-23 15:10:06',NULL,NULL,NULL),(18,18,NULL,4626.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD008264805','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-31 15:10:06',NULL,NULL,NULL),(19,19,NULL,5158.00,NULL,NULL,'','delivered',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD004273091','FastShipping','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-29 15:10:06','2023-01-22 15:10:06',NULL,NULL),(20,20,NULL,6226.00,NULL,NULL,'','approved',0.00,'completed','pending',0.00,0,'2023-01-22 08:10:06','2023-01-22 08:10:06','JJD0034720907','AliExpress','https://mydhl.express.dhl/us/en/tracking.html#/track-by-reference','2023-01-28 15:10:06',NULL,NULL,NULL); /*!40000 ALTER TABLE `ec_shipments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipping` -- DROP TABLE IF EXISTS `ec_shipping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipping` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipping` -- LOCK TABLES `ec_shipping` WRITE; /*!40000 ALTER TABLE `ec_shipping` DISABLE KEYS */; INSERT INTO `ec_shipping` VALUES (1,'All',NULL,'2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_shipping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipping_rule_items` -- DROP TABLE IF EXISTS `ec_shipping_rule_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipping_rule_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `shipping_rule_id` int unsigned NOT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `adjustment_price` decimal(15,2) DEFAULT '0.00', `is_enabled` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipping_rule_items` -- LOCK TABLES `ec_shipping_rule_items` WRITE; /*!40000 ALTER TABLE `ec_shipping_rule_items` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_shipping_rule_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipping_rules` -- DROP TABLE IF EXISTS `ec_shipping_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipping_rules` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `shipping_id` int unsigned NOT NULL, `type` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'based_on_price', `from` decimal(15,2) DEFAULT '0.00', `to` decimal(15,2) DEFAULT '0.00', `price` decimal(15,2) DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipping_rules` -- LOCK TABLES `ec_shipping_rules` WRITE; /*!40000 ALTER TABLE `ec_shipping_rules` DISABLE KEYS */; INSERT INTO `ec_shipping_rules` VALUES (1,'Free delivery',1,'based_on_price',0.00,NULL,0.00,'2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_shipping_rules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_store_locators` -- DROP TABLE IF EXISTS `ec_store_locators`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_store_locators` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_primary` tinyint(1) DEFAULT '0', `is_shipping_location` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_store_locators` -- LOCK TABLES `ec_store_locators` WRITE; /*!40000 ALTER TABLE `ec_store_locators` DISABLE KEYS */; INSERT INTO `ec_store_locators` VALUES (1,'Agon','sales@archielite.com','1800979769','502 New Street','AU','Brighton VIC','Brighton VIC',1,1,'2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_store_locators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_tax_products` -- DROP TABLE IF EXISTS `ec_tax_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_tax_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tax_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `ec_tax_products_tax_id_index` (`tax_id`), KEY `ec_tax_products_product_id_index` (`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_tax_products` -- LOCK TABLES `ec_tax_products` WRITE; /*!40000 ALTER TABLE `ec_tax_products` DISABLE KEYS */; INSERT INTO `ec_tax_products` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,1,8),(9,1,9),(10,1,10),(11,1,11),(12,1,12),(13,1,13),(14,1,14),(15,1,15),(16,1,16),(17,1,17),(18,1,18),(19,1,19),(20,1,20),(21,1,21),(22,1,22),(23,1,23),(24,1,24),(25,1,25),(26,1,26),(27,1,27),(28,1,28),(29,1,29),(30,1,30),(31,1,31),(32,1,32),(33,1,33),(34,1,34),(35,1,35),(36,1,36),(37,1,37),(38,1,38),(39,1,39),(40,1,40),(41,1,41),(42,1,42),(43,1,43),(44,1,44),(45,1,45),(46,1,46),(47,1,47),(48,1,48),(49,1,49),(50,1,50),(51,1,51),(52,1,52),(53,1,53),(54,1,54),(55,1,55),(56,1,56),(57,1,57),(58,1,58),(59,1,59),(60,1,60),(61,1,61),(62,1,62),(63,1,63),(64,1,64),(65,1,65); /*!40000 ALTER TABLE `ec_tax_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_taxes` -- DROP TABLE IF EXISTS `ec_taxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_taxes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `percentage` double(8,6) DEFAULT NULL, `priority` int DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_taxes` -- LOCK TABLES `ec_taxes` WRITE; /*!40000 ALTER TABLE `ec_taxes` DISABLE KEYS */; INSERT INTO `ec_taxes` VALUES (1,'VAT',10.000000,1,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'),(2,'None',0.000000,2,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'),(3,'Import Tax',15.000000,3,'published','2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `ec_taxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_wish_lists` -- DROP TABLE IF EXISTS `ec_wish_lists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_wish_lists` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_wish_lists_product_id_customer_id_index` (`product_id`,`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_wish_lists` -- LOCK TABLES `ec_wish_lists` WRITE; /*!40000 ALTER TABLE `ec_wish_lists` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_wish_lists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `failed_jobs` -- DROP TABLE IF EXISTS `failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `failed_jobs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(191) 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, PRIMARY KEY (`id`), UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `failed_jobs` -- LOCK TABLES `failed_jobs` WRITE; /*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faq_categories` -- DROP TABLE IF EXISTS `faq_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faq_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `order` tinyint NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faq_categories` -- LOCK TABLES `faq_categories` WRITE; /*!40000 ALTER TABLE `faq_categories` DISABLE KEYS */; INSERT INTO `faq_categories` VALUES (1,'General',0,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'); /*!40000 ALTER TABLE `faq_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faq_categories_translations` -- DROP TABLE IF EXISTS `faq_categories_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faq_categories_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `faq_categories_id` int NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`faq_categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faq_categories_translations` -- LOCK TABLES `faq_categories_translations` WRITE; /*!40000 ALTER TABLE `faq_categories_translations` DISABLE KEYS */; INSERT INTO `faq_categories_translations` VALUES ('vi',1,'Chung'); /*!40000 ALTER TABLE `faq_categories_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faqs` -- DROP TABLE IF EXISTS `faqs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faqs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `question` text COLLATE utf8mb4_unicode_ci NOT NULL, `answer` text COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` int unsigned NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faqs` -- LOCK TABLES `faqs` WRITE; /*!40000 ALTER TABLE `faqs` DISABLE KEYS */; INSERT INTO `faqs` VALUES (1,'Can I see the demo before purchasing?','Etiam amet mauris suscipit in odio integer congue metus vitae arcu mollis blandit ultrice ligula egestas and magna suscipit lectus magna suscipit luctus blandit vitae',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(2,'Can I use your system on different devices?','Etiam amet mauris suscipit in odio integer congue metus vitae arcu mollis blandit ultrice ligula egestas and magna suscipit lectus magna suscipit luctus blandit vitae',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(3,'Can I import my sitemap to your system?','An enim nullam tempor sapien gravida a donec ipsum enim an porta justo integer at velna vitae auctor integer congue undo magna at pretium purus pretium',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(4,'Can I cancel my subscription at any time?','An enim nullam tempor sapien gravida a donec ipsum enim an porta justo integer at velna vitae auctor integer congue undo magna at pretium purus pretium',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(5,'How can I switch my subscription between essential, and premium plan','Cubilia laoreet augue egestas and luctus donec curabite diam vitae dapibus libero and quisque gravida donec and neque.',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(6,'Is there an additional discount when paid annually?','Cubilia laoreet augue egestas and luctus donec curabite diam vitae dapibus libero and quisque gravida donec and neque. Blandit justo aliquam molestie nunc sapien',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(7,'Where does it come from ?','If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual languages. The new common language will be more simple and regular than the existing European languages.',2,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(8,'I have an issue with my account','<ul>\n <li>Etiam amet mauris suscipit sit amet in odio. Integer congue leo metus. Vitae arcu mollis blandit ultrice ligula</li>\n <li>An enim nullam tempor sapien gravida donec congue leo metus. Vitae arcu mollis blandit integer at velna</li>\n </ul>',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(9,'What happens if I don’t renew my license after one year?','<ul>\n <li>Etiam amet mauris suscipit sit amet in odio. Integer congue leo metus. Vitae arcu mollis blandit ultrice ligula</li>\n <li>An enim nullam tempor sapien gravida donec congue leo metus. Vitae arcu mollis blandit integer at velna</li>\n </ul>',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(10,'Do you have a free trial?','<ul class=\"text-body-text\">\n <li>Fringilla risus, luctus mauris orci auctor purus</li>\n <li>Quaerat sodales sapien euismod blandit purus and ipsum primis in cubilia laoreet augue luctus</li>\n </ul>',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(11,'What kind of payment methods do you provide?','<ul class=\"text-body-text\">\n <li>Fringilla risus, luctus mauris orci auctor purus</li>\n <li>Quaerat sodales sapien euismoda laoreet augue luctus</li>\n </ul>',1,'published','2023-01-22 08:09:39','2023-01-22 08:09:39'); /*!40000 ALTER TABLE `faqs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faqs_translations` -- DROP TABLE IF EXISTS `faqs_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faqs_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `faqs_id` int NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`faqs_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faqs_translations` -- LOCK TABLES `faqs_translations` WRITE; /*!40000 ALTER TABLE `faqs_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `faqs_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jobs` -- DROP TABLE IF EXISTS `jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `jobs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint unsigned NOT NULL, `reserved_at` int unsigned DEFAULT NULL, `available_at` int unsigned NOT NULL, `created_at` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_index` (`queue`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jobs` -- LOCK TABLES `jobs` WRITE; /*!40000 ALTER TABLE `jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `language_meta` -- DROP TABLE IF EXISTS `language_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `language_meta` ( `lang_meta_id` int unsigned NOT NULL AUTO_INCREMENT, `lang_meta_code` text COLLATE utf8mb4_unicode_ci, `lang_meta_origin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` int unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`lang_meta_id`), KEY `language_meta_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `language_meta` -- LOCK TABLES `language_meta` WRITE; /*!40000 ALTER TABLE `language_meta` DISABLE KEYS */; INSERT INTO `language_meta` VALUES (1,'en_US','ab9d7364edaed547e0fc75f17256f506',1,'Botble\\Menu\\Models\\MenuLocation'),(2,'en_US','c4a0f72e5d57a54b5f5fa5cb24f45d20',1,'Botble\\Menu\\Models\\Menu'),(3,'vi','30ee2a303cad9b10ac869592ecad2969',2,'Botble\\Menu\\Models\\MenuLocation'),(4,'vi','c4a0f72e5d57a54b5f5fa5cb24f45d20',2,'Botble\\Menu\\Models\\Menu'),(5,'en_US','59de470c713fae4f1c4755e74454c281',3,'Botble\\Menu\\Models\\Menu'),(6,'vi','59de470c713fae4f1c4755e74454c281',4,'Botble\\Menu\\Models\\Menu'),(7,'en_US','08fd2a0c5b5c25ec6723fc16be720c90',5,'Botble\\Menu\\Models\\Menu'),(8,'vi','08fd2a0c5b5c25ec6723fc16be720c90',6,'Botble\\Menu\\Models\\Menu'),(9,'en_US','27db5e119e665bfaba753360d448e509',7,'Botble\\Menu\\Models\\Menu'),(10,'vi','27db5e119e665bfaba753360d448e509',8,'Botble\\Menu\\Models\\Menu'),(11,'en_US','9106b32d7d4d8e5bcb849a078a684c78',9,'Botble\\Menu\\Models\\Menu'),(12,'vi','9106b32d7d4d8e5bcb849a078a684c78',10,'Botble\\Menu\\Models\\Menu'),(13,'en_US','ab9d7364edaed547e0fc75f17256f506',3,'Botble\\Menu\\Models\\MenuLocation'),(14,'en_US','d29224b74a705c9dc844d2115382dfdb',11,'Botble\\Menu\\Models\\Menu'),(15,'vi','30ee2a303cad9b10ac869592ecad2969',4,'Botble\\Menu\\Models\\MenuLocation'),(16,'vi','d29224b74a705c9dc844d2115382dfdb',12,'Botble\\Menu\\Models\\Menu'); /*!40000 ALTER TABLE `language_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `languages` -- DROP TABLE IF EXISTS `languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `languages` ( `lang_id` int unsigned NOT NULL AUTO_INCREMENT, `lang_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_flag` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lang_is_default` tinyint unsigned NOT NULL DEFAULT '0', `lang_order` int NOT NULL DEFAULT '0', `lang_is_rtl` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`lang_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `languages` -- LOCK TABLES `languages` WRITE; /*!40000 ALTER TABLE `languages` DISABLE KEYS */; INSERT INTO `languages` VALUES (1,'English','en','en_US','us',1,0,0),(2,'Tiếng Việt','vi','vi','vn',0,0,0); /*!40000 ALTER TABLE `languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_files` -- DROP TABLE IF EXISTS `media_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_files` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `folder_id` int unsigned NOT NULL DEFAULT '0', `mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `size` int NOT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `media_files_user_id_index` (`user_id`), KEY `media_files_index` (`folder_id`,`user_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=349 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_files` -- LOCK TABLES `media_files` WRITE; /*!40000 ALTER TABLE `media_files` DISABLE KEYS */; INSERT INTO `media_files` VALUES (1,0,'banner',1,'image/png',68141,'homepage1/banner.png','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(2,0,'bg-1',1,'image/png',1548,'homepage1/bg-1.png','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(3,0,'bg-2',1,'image/png',507,'homepage1/bg-2.png','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(4,0,'business-strategy',1,'image/png',781,'homepage1/business-strategy.png','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(5,0,'business-white',1,'image/png',1231,'homepage1/business-white.png','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(6,0,'cognity',1,'image/png',348,'homepage1/cognity.png','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(7,0,'consulting',1,'image/png',597,'homepage1/consulting.png','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(8,0,'img-1',1,'image/jpeg',17325,'homepage1/img-1.jpg','[]','2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(9,0,'img-2',1,'image/jpeg',17325,'homepage1/img-2.jpg','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(10,0,'img-3',1,'image/jpeg',17325,'homepage1/img-3.jpg','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(11,0,'img-4',1,'image/jpeg',17325,'homepage1/img-4.jpg','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(12,0,'img-5',1,'image/jpeg',17325,'homepage1/img-5.jpg','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(13,0,'img-6',1,'image/jpeg',17325,'homepage1/img-6.jpg','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(14,0,'img-7',1,'image/png',52573,'homepage1/img-7.png','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(15,0,'local-white',1,'image/png',950,'homepage1/local-white.png','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(16,0,'local',1,'image/png',969,'homepage1/local.png','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(17,0,'market',1,'image/png',677,'homepage1/market.png','[]','2023-01-22 08:09:24','2023-01-22 08:09:24',NULL),(18,0,'social-white',1,'image/png',1386,'homepage1/social-white.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(19,0,'social',1,'image/png',1022,'homepage1/social.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(20,0,'video-bg',1,'image/png',12756,'homepage1/video-bg.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(21,0,'1',2,'image/png',2165,'company/1.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(22,0,'2',2,'image/png',2165,'company/2.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(23,0,'3',2,'image/png',2165,'company/3.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(24,0,'4',2,'image/png',2165,'company/4.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(25,0,'5',2,'image/png',2165,'company/5.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(26,0,'6',2,'image/png',2165,'company/6.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(27,0,'7',2,'image/png',2165,'company/7.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(28,0,'8',2,'image/png',2165,'company/8.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(29,0,'9',2,'image/png',2165,'company/9.png','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(30,0,'1',3,'image/jpeg',2165,'news/1.jpg','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(31,0,'10',3,'image/jpeg',2165,'news/10.jpg','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(32,0,'11',3,'image/jpeg',2165,'news/11.jpg','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(33,0,'12',3,'image/jpeg',2165,'news/12.jpg','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(34,0,'13',3,'image/jpeg',2165,'news/13.jpg','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(35,0,'14',3,'image/jpeg',2165,'news/14.jpg','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(36,0,'15',3,'image/jpeg',2165,'news/15.jpg','[]','2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(37,0,'16',3,'image/jpeg',2165,'news/16.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(38,0,'2',3,'image/jpeg',2165,'news/2.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(39,0,'3',3,'image/jpeg',2165,'news/3.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(40,0,'4',3,'image/jpeg',2165,'news/4.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(41,0,'5',3,'image/jpeg',2165,'news/5.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(42,0,'6',3,'image/jpeg',2165,'news/6.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(43,0,'7',3,'image/jpeg',2165,'news/7.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(44,0,'8',3,'image/jpeg',2165,'news/8.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(45,0,'9',3,'image/jpeg',2165,'news/9.jpg','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(46,0,'apple-button',4,'image/png',780,'general/apple-button.png','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(47,0,'balance',4,'image/png',14643,'general/balance.png','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(48,0,'banner1',4,'image/png',53473,'general/banner1.png','[]','2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(49,0,'banner10',4,'image/png',17459,'general/banner10.png','[]','2023-01-22 08:09:27','2023-01-22 08:09:27',NULL),(50,0,'banner11',4,'image/png',13472,'general/banner11.png','[]','2023-01-22 08:09:27','2023-01-22 08:09:27',NULL),(51,0,'banner12',4,'image/png',65846,'general/banner12.png','[]','2023-01-22 08:09:27','2023-01-22 08:09:27',NULL),(52,0,'banner13',4,'image/png',18172,'general/banner13.png','[]','2023-01-22 08:09:27','2023-01-22 08:09:27',NULL),(53,0,'banner14',4,'image/png',18110,'general/banner14.png','[]','2023-01-22 08:09:27','2023-01-22 08:09:27',NULL),(54,0,'banner15',4,'image/png',19299,'general/banner15.png','[]','2023-01-22 08:09:27','2023-01-22 08:09:27',NULL),(55,0,'banner2',4,'image/png',21291,'general/banner2.png','[]','2023-01-22 08:09:28','2023-01-22 08:09:28',NULL),(56,0,'banner3',4,'image/png',45471,'general/banner3.png','[]','2023-01-22 08:09:28','2023-01-22 08:09:28',NULL),(57,0,'banner4',4,'image/png',6539,'general/banner4.png','[]','2023-01-22 08:09:28','2023-01-22 08:09:28',NULL),(58,0,'banner5',4,'image/png',60953,'general/banner5.png','[]','2023-01-22 08:09:28','2023-01-22 08:09:28',NULL),(59,0,'banner6',4,'image/png',59540,'general/banner6.png','[]','2023-01-22 08:09:28','2023-01-22 08:09:28',NULL),(60,0,'banner7',4,'image/png',45221,'general/banner7.png','[]','2023-01-22 08:09:29','2023-01-22 08:09:29',NULL),(61,0,'banner8',4,'image/png',58575,'general/banner8.png','[]','2023-01-22 08:09:29','2023-01-22 08:09:29',NULL),(62,0,'banner9',4,'image/png',46512,'general/banner9.png','[]','2023-01-22 08:09:29','2023-01-22 08:09:29',NULL),(63,0,'bg-about-1',4,'image/png',8818,'general/bg-about-1.png','[]','2023-01-22 08:09:30','2023-01-22 08:09:30',NULL),(64,0,'bg-app',4,'image/png',5814,'general/bg-app.png','[]','2023-01-22 08:09:30','2023-01-22 08:09:30',NULL),(65,0,'bg-banner',4,'image/png',4860,'general/bg-banner.png','[]','2023-01-22 08:09:31','2023-01-22 08:09:31',NULL),(66,0,'bg-post',4,'image/png',13678,'general/bg-post.png','[]','2023-01-22 08:09:31','2023-01-22 08:09:31',NULL),(67,0,'bg-video-1',4,'image/png',64497,'general/bg-video-1.png','[]','2023-01-22 08:09:31','2023-01-22 08:09:31',NULL),(68,0,'bg-video-2',4,'image/png',22344,'general/bg-video-2.png','[]','2023-01-22 08:09:31','2023-01-22 08:09:31',NULL),(69,0,'career-img',4,'image/png',27228,'general/career-img.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(70,0,'chart-2',4,'image/png',5541,'general/chart-2.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(71,0,'chart',4,'image/png',15318,'general/chart.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(72,0,'circle-1',4,'image/png',516,'general/circle-1.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(73,0,'circle-2',4,'image/png',414,'general/circle-2.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(74,0,'destination',4,'image/png',222,'general/destination.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(75,0,'email',4,'image/png',2713,'general/email.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(76,0,'facebook',4,'image/png',352,'general/facebook.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(77,0,'favicon',4,'image/png',700,'general/favicon.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(78,0,'flight',4,'image/png',293,'general/flight.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(79,0,'google-play',4,'image/png',798,'general/google-play.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(80,0,'icon-acquis',4,'image/png',866,'general/icon-acquis.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(81,0,'icon-active',4,'image/png',878,'general/icon-active.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(82,0,'icon-advance',4,'image/png',732,'general/icon-advance.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(83,0,'icon-build',4,'image/png',463,'general/icon-build.png','[]','2023-01-22 08:09:32','2023-01-22 08:09:32',NULL),(84,0,'icon-business',4,'image/png',521,'general/icon-business.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(85,0,'icon-complete',4,'image/png',787,'general/icon-complete.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(86,0,'icon-connect',4,'image/png',961,'general/icon-connect.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(87,0,'icon-constant',4,'image/png',994,'general/icon-constant.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(88,0,'icon-design',4,'image/png',724,'general/icon-design.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(89,0,'icon-match',4,'image/png',1002,'general/icon-match.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(90,0,'icon-officer',4,'image/png',889,'general/icon-officer.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(91,0,'icon-product',4,'image/png',522,'general/icon-product.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(92,0,'icon-project-done',4,'image/png',773,'general/icon-project-done.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(93,0,'icon-retent',4,'image/png',704,'general/icon-retent.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(94,0,'icon-review',4,'image/png',1052,'general/icon-review.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(95,0,'icon-share',4,'image/png',460,'general/icon-share.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(96,0,'icon-start-plan',4,'image/png',831,'general/icon-start-plan.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(97,0,'icon-support',4,'image/png',440,'general/icon-support.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(98,0,'icon-team',4,'image/png',451,'general/icon-team.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(99,0,'icon-web',4,'image/png',569,'general/icon-web.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(100,0,'icon-work',4,'image/png',564,'general/icon-work.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(101,0,'img-1',4,'image/png',4778,'general/img-1.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(102,0,'img-10',4,'image/png',54394,'general/img-10.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(103,0,'img-11',4,'image/png',73891,'general/img-11.png','[]','2023-01-22 08:09:33','2023-01-22 08:09:33',NULL),(104,0,'img-12',4,'image/png',72294,'general/img-12.png','[]','2023-01-22 08:09:34','2023-01-22 08:09:34',NULL),(105,0,'img-2',4,'image/png',52573,'general/img-2.png','[]','2023-01-22 08:09:34','2023-01-22 08:09:34',NULL),(106,0,'img-3',4,'image/png',8763,'general/img-3.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(107,0,'img-4',4,'image/png',4943,'general/img-4.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(108,0,'img-5',4,'image/png',6119,'general/img-5.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(109,0,'img-6',4,'image/png',41442,'general/img-6.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(110,0,'img-7',4,'image/png',10718,'general/img-7.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(111,0,'img-8',4,'image/png',10718,'general/img-8.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(112,0,'img-9',4,'image/png',11561,'general/img-9.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(113,0,'img-built-2',4,'image/png',23371,'general/img-built-2.png','[]','2023-01-22 08:09:35','2023-01-22 08:09:35',NULL),(114,0,'img-built',4,'image/png',56896,'general/img-built.png','[]','2023-01-22 08:09:36','2023-01-22 08:09:36',NULL),(115,0,'img-newsletter',4,'image/png',24740,'general/img-newsletter.png','[]','2023-01-22 08:09:36','2023-01-22 08:09:36',NULL),(116,0,'instagram',4,'image/png',927,'general/instagram.png','[]','2023-01-22 08:09:36','2023-01-22 08:09:36',NULL),(117,0,'line-chart',4,'image/png',986,'general/line-chart.png','[]','2023-01-22 08:09:36','2023-01-22 08:09:36',NULL),(118,0,'linkedin',4,'image/png',771,'general/linkedin.png','[]','2023-01-22 08:09:36','2023-01-22 08:09:36',NULL),(119,0,'login',4,'image/png',106292,'general/login.png','[]','2023-01-22 08:09:36','2023-01-22 08:09:36',NULL),(120,0,'logo-light',4,'image/png',1326,'general/logo-light.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(121,0,'logo',4,'image/png',1323,'general/logo.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(122,0,'open-graph-image',4,'image/png',26112,'general/open-graph-image.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(123,0,'payment',4,'image/png',10260,'general/payment.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(124,0,'register-1',4,'image/png',4778,'general/register-1.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(125,0,'register-2',4,'image/png',5890,'general/register-2.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(126,0,'register-3',4,'image/png',8763,'general/register-3.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(127,0,'register-4',4,'image/png',4943,'general/register-4.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(128,0,'register-5',4,'image/png',6119,'general/register-5.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(129,0,'safety',4,'image/png',14079,'general/safety.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(130,0,'team-1',4,'image/png',21446,'general/team-1.png','[]','2023-01-22 08:09:37','2023-01-22 08:09:37',NULL),(131,0,'team-2',4,'image/png',21446,'general/team-2.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(132,0,'team-3',4,'image/png',21446,'general/team-3.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(133,0,'team-4',4,'image/png',21446,'general/team-4.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(134,0,'team-5',4,'image/png',21446,'general/team-5.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(135,0,'team-6',4,'image/png',21446,'general/team-6.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(136,0,'team-7',4,'image/png',21446,'general/team-7.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(137,0,'team-8',4,'image/png',21446,'general/team-8.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(138,0,'temp-1',4,'image/png',28651,'general/temp-1.png','[]','2023-01-22 08:09:38','2023-01-22 08:09:38',NULL),(139,0,'temp-2',4,'image/png',28651,'general/temp-2.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(140,0,'trip',4,'image/png',321,'general/trip.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(141,0,'twitter',4,'image/png',368,'general/twitter.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(142,0,'user',4,'image/png',318,'general/user.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(143,0,'1',5,'image/png',2165,'testimonials/1.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(144,0,'2',5,'image/png',2165,'testimonials/2.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(145,0,'3',5,'image/png',2165,'testimonials/3.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(146,0,'4',5,'image/png',2165,'testimonials/4.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(147,0,'1',6,'image/png',1593,'brands/1.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(148,0,'2',6,'image/png',1593,'brands/2.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(149,0,'3',6,'image/png',1593,'brands/3.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(150,0,'4',6,'image/png',1593,'brands/4.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(151,0,'1',7,'image/png',403,'product-categories/1.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(152,0,'10',7,'image/png',993,'product-categories/10.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(153,0,'11',7,'image/png',631,'product-categories/11.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(154,0,'12',7,'image/png',736,'product-categories/12.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(155,0,'2',7,'image/png',952,'product-categories/2.png','[]','2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(156,0,'3',7,'image/png',273,'product-categories/3.png','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(157,0,'4',7,'image/png',350,'product-categories/4.png','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(158,0,'5',7,'image/png',507,'product-categories/5.png','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(159,0,'6',7,'image/png',699,'product-categories/6.png','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(160,0,'7',7,'image/png',370,'product-categories/7.png','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(161,0,'8',7,'image/png',708,'product-categories/8.png','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(162,0,'9',7,'image/png',538,'product-categories/9.png','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(163,0,'1',8,'image/jpeg',2165,'products/1.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(164,0,'10-1',8,'image/jpeg',2165,'products/10-1.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(165,0,'10-2',8,'image/jpeg',2165,'products/10-2.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(166,0,'10',8,'image/jpeg',2165,'products/10.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(167,0,'11-1',8,'image/jpeg',2165,'products/11-1.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(168,0,'11-2',8,'image/jpeg',2165,'products/11-2.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(169,0,'11-3',8,'image/jpeg',2165,'products/11-3.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(170,0,'11',8,'image/jpeg',2165,'products/11.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(171,0,'12-1',8,'image/jpeg',2165,'products/12-1.jpg','[]','2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(172,0,'12-2',8,'image/jpeg',2165,'products/12-2.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(173,0,'12-3',8,'image/jpeg',2165,'products/12-3.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(174,0,'12',8,'image/jpeg',2165,'products/12.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(175,0,'13-1',8,'image/jpeg',2165,'products/13-1.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(176,0,'13',8,'image/jpeg',2165,'products/13.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(177,0,'14',8,'image/jpeg',2165,'products/14.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(178,0,'15-1',8,'image/jpeg',2165,'products/15-1.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(179,0,'15',8,'image/jpeg',2165,'products/15.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(180,0,'16',8,'image/jpeg',2165,'products/16.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(181,0,'17-1',8,'image/jpeg',2165,'products/17-1.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(182,0,'17-2',8,'image/jpeg',2165,'products/17-2.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(183,0,'17-3',8,'image/jpeg',2165,'products/17-3.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(184,0,'17',8,'image/jpeg',2165,'products/17.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(185,0,'18-1',8,'image/jpeg',2165,'products/18-1.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(186,0,'18-2',8,'image/jpeg',2165,'products/18-2.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(187,0,'18-3',8,'image/jpeg',2165,'products/18-3.jpg','[]','2023-01-22 08:09:41','2023-01-22 08:09:41',NULL),(188,0,'18',8,'image/jpeg',2165,'products/18.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(189,0,'19-1',8,'image/jpeg',2165,'products/19-1.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(190,0,'19-2',8,'image/jpeg',2165,'products/19-2.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(191,0,'19-3',8,'image/jpeg',2165,'products/19-3.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(192,0,'19',8,'image/jpeg',2165,'products/19.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(193,0,'2-1',8,'image/jpeg',2165,'products/2-1.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(194,0,'2-2',8,'image/jpeg',2165,'products/2-2.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(195,0,'2-3',8,'image/jpeg',2165,'products/2-3.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(196,0,'2',8,'image/jpeg',2165,'products/2.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(197,0,'20-1',8,'image/jpeg',2165,'products/20-1.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(198,0,'20-2',8,'image/jpeg',2165,'products/20-2.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(199,0,'20-3',8,'image/jpeg',2165,'products/20-3.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(200,0,'20',8,'image/jpeg',2165,'products/20.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(201,0,'21-1',8,'image/jpeg',2165,'products/21-1.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(202,0,'21-2',8,'image/jpeg',2165,'products/21-2.jpg','[]','2023-01-22 08:09:42','2023-01-22 08:09:42',NULL),(203,0,'21',8,'image/jpeg',2165,'products/21.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(204,0,'22-1',8,'image/jpeg',2165,'products/22-1.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(205,0,'22-2',8,'image/jpeg',2165,'products/22-2.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(206,0,'22-3',8,'image/jpeg',2165,'products/22-3.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(207,0,'22',8,'image/jpeg',2165,'products/22.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(208,0,'23-1',8,'image/jpeg',2165,'products/23-1.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(209,0,'23-2',8,'image/jpeg',2165,'products/23-2.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(210,0,'23-3',8,'image/jpeg',2165,'products/23-3.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(211,0,'23',8,'image/jpeg',2165,'products/23.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(212,0,'24-1',8,'image/jpeg',2165,'products/24-1.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(213,0,'24-2',8,'image/jpeg',2165,'products/24-2.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(214,0,'24',8,'image/jpeg',2165,'products/24.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(215,0,'25-1',8,'image/jpeg',2165,'products/25-1.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(216,0,'25-2',8,'image/jpeg',2165,'products/25-2.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(217,0,'25',8,'image/jpeg',2165,'products/25.jpg','[]','2023-01-22 08:09:43','2023-01-22 08:09:43',NULL),(218,0,'26-1',8,'image/jpeg',2165,'products/26-1.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(219,0,'26',8,'image/jpeg',2165,'products/26.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(220,0,'27-1',8,'image/jpeg',2165,'products/27-1.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(221,0,'27',8,'image/jpeg',2165,'products/27.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(222,0,'28-1',8,'image/jpeg',2165,'products/28-1.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(223,0,'28-2',8,'image/jpeg',2165,'products/28-2.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(224,0,'28',8,'image/jpeg',2165,'products/28.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(225,0,'29-1',8,'image/jpeg',2165,'products/29-1.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(226,0,'29-2',8,'image/jpeg',2165,'products/29-2.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(227,0,'29',8,'image/jpeg',2165,'products/29.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(228,0,'3',8,'image/jpeg',2165,'products/3.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(229,0,'30-1',8,'image/jpeg',2165,'products/30-1.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(230,0,'30-2',8,'image/jpeg',2165,'products/30-2.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(231,0,'30',8,'image/jpeg',2165,'products/30.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(232,0,'31-1',8,'image/jpeg',2165,'products/31-1.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(233,0,'31',8,'image/jpeg',2165,'products/31.jpg','[]','2023-01-22 08:09:44','2023-01-22 08:09:44',NULL),(234,0,'32-1',8,'image/jpeg',2165,'products/32-1.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(235,0,'32-2',8,'image/jpeg',2165,'products/32-2.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(236,0,'32',8,'image/jpeg',2165,'products/32.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(237,0,'33-1',8,'image/jpeg',2165,'products/33-1.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(238,0,'33-2',8,'image/jpeg',2165,'products/33-2.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(239,0,'33',8,'image/jpeg',2165,'products/33.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(240,0,'34-1',8,'image/jpeg',2165,'products/34-1.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(241,0,'34',8,'image/jpeg',2165,'products/34.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(242,0,'35-1',8,'image/jpeg',2165,'products/35-1.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(243,0,'35',8,'image/jpeg',2165,'products/35.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(244,0,'36-1',8,'image/jpeg',2165,'products/36-1.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(245,0,'36-2',8,'image/jpeg',2165,'products/36-2.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(246,0,'36',8,'image/jpeg',2165,'products/36.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(247,0,'37-1',8,'image/jpeg',2165,'products/37-1.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(248,0,'37-2',8,'image/jpeg',2165,'products/37-2.jpg','[]','2023-01-22 08:09:45','2023-01-22 08:09:45',NULL),(249,0,'37',8,'image/jpeg',2165,'products/37.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(250,0,'38-1',8,'image/jpeg',2165,'products/38-1.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(251,0,'38-2',8,'image/jpeg',2165,'products/38-2.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(252,0,'38-3',8,'image/jpeg',2165,'products/38-3.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(253,0,'38',8,'image/jpeg',2165,'products/38.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(254,0,'39-1',8,'image/jpeg',2165,'products/39-1.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(255,0,'39-2',8,'image/jpeg',2165,'products/39-2.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(256,0,'39',8,'image/jpeg',2165,'products/39.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(257,0,'4-1',8,'image/jpeg',2165,'products/4-1.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(258,0,'4-2',8,'image/jpeg',2165,'products/4-2.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(259,0,'4-3',8,'image/jpeg',2165,'products/4-3.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(260,0,'4',8,'image/jpeg',2165,'products/4.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(261,0,'40-1',8,'image/jpeg',2165,'products/40-1.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(262,0,'40',8,'image/jpeg',2165,'products/40.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(263,0,'41-1',8,'image/jpeg',2165,'products/41-1.jpg','[]','2023-01-22 08:09:46','2023-01-22 08:09:46',NULL),(264,0,'41-2',8,'image/jpeg',2165,'products/41-2.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(265,0,'41',8,'image/jpeg',2165,'products/41.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(266,0,'42-1',8,'image/jpeg',2165,'products/42-1.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(267,0,'42-2',8,'image/jpeg',2165,'products/42-2.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(268,0,'42',8,'image/jpeg',2165,'products/42.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(269,0,'43-1',8,'image/jpeg',2165,'products/43-1.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(270,0,'43-2',8,'image/jpeg',2165,'products/43-2.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(271,0,'43',8,'image/jpeg',2165,'products/43.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(272,0,'44-1',8,'image/jpeg',2165,'products/44-1.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(273,0,'44-2',8,'image/jpeg',2165,'products/44-2.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(274,0,'44',8,'image/jpeg',2165,'products/44.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(275,0,'45-1',8,'image/jpeg',2165,'products/45-1.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(276,0,'45',8,'image/jpeg',2165,'products/45.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(277,0,'46-1',8,'image/jpeg',2165,'products/46-1.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(278,0,'46',8,'image/jpeg',2165,'products/46.jpg','[]','2023-01-22 08:09:47','2023-01-22 08:09:47',NULL),(279,0,'47-1',8,'image/jpeg',2165,'products/47-1.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(280,0,'47',8,'image/jpeg',2165,'products/47.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(281,0,'48-1',8,'image/jpeg',2165,'products/48-1.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(282,0,'48-2',8,'image/jpeg',2165,'products/48-2.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(283,0,'48',8,'image/jpeg',2165,'products/48.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(284,0,'49-1',8,'image/jpeg',2165,'products/49-1.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(285,0,'49-2',8,'image/jpeg',2165,'products/49-2.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(286,0,'49',8,'image/jpeg',2165,'products/49.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(287,0,'5-1',8,'image/jpeg',2165,'products/5-1.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(288,0,'5-2',8,'image/jpeg',2165,'products/5-2.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(289,0,'5-3',8,'image/jpeg',2165,'products/5-3.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(290,0,'5',8,'image/jpeg',2165,'products/5.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(291,0,'50-1',8,'image/jpeg',2165,'products/50-1.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(292,0,'50',8,'image/jpeg',2165,'products/50.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(293,0,'51',8,'image/jpeg',2165,'products/51.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(294,0,'52-1',8,'image/jpeg',2165,'products/52-1.jpg','[]','2023-01-22 08:09:48','2023-01-22 08:09:48',NULL),(295,0,'52-2',8,'image/jpeg',2165,'products/52-2.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(296,0,'52',8,'image/jpeg',2165,'products/52.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(297,0,'53-1',8,'image/jpeg',2165,'products/53-1.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(298,0,'53',8,'image/jpeg',2165,'products/53.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(299,0,'54-1',8,'image/jpeg',2165,'products/54-1.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(300,0,'54',8,'image/jpeg',2165,'products/54.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(301,0,'55-1',8,'image/jpeg',2165,'products/55-1.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(302,0,'55-2',8,'image/jpeg',2165,'products/55-2.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(303,0,'55',8,'image/jpeg',2165,'products/55.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(304,0,'56-1',8,'image/jpeg',2165,'products/56-1.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(305,0,'56-2',8,'image/jpeg',2165,'products/56-2.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(306,0,'56',8,'image/jpeg',2165,'products/56.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(307,0,'57-1',8,'image/jpeg',2165,'products/57-1.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(308,0,'57',8,'image/jpeg',2165,'products/57.jpg','[]','2023-01-22 08:09:49','2023-01-22 08:09:49',NULL),(309,0,'58-1',8,'image/jpeg',2165,'products/58-1.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(310,0,'58-2',8,'image/jpeg',2165,'products/58-2.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(311,0,'58',8,'image/jpeg',2165,'products/58.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(312,0,'59-1',8,'image/jpeg',2165,'products/59-1.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(313,0,'59-2',8,'image/jpeg',2165,'products/59-2.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(314,0,'59-3',8,'image/jpeg',2165,'products/59-3.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(315,0,'59',8,'image/jpeg',2165,'products/59.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(316,0,'6',8,'image/jpeg',2165,'products/6.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(317,0,'60-1',8,'image/jpeg',2165,'products/60-1.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(318,0,'60-2',8,'image/jpeg',2165,'products/60-2.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(319,0,'60',8,'image/jpeg',2165,'products/60.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(320,0,'61-1',8,'image/jpeg',2165,'products/61-1.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(321,0,'61',8,'image/jpeg',2165,'products/61.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(322,0,'62-1',8,'image/jpeg',2165,'products/62-1.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(323,0,'62',8,'image/jpeg',2165,'products/62.jpg','[]','2023-01-22 08:09:50','2023-01-22 08:09:50',NULL),(324,0,'63-1',8,'image/jpeg',2165,'products/63-1.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(325,0,'63',8,'image/jpeg',2165,'products/63.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(326,0,'64-1',8,'image/jpeg',2165,'products/64-1.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(327,0,'64',8,'image/jpeg',2165,'products/64.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(328,0,'65-1',8,'image/jpeg',2165,'products/65-1.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(329,0,'65-2',8,'image/jpeg',2165,'products/65-2.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(330,0,'65',8,'image/jpeg',2165,'products/65.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(331,0,'7',8,'image/jpeg',2165,'products/7.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(332,0,'8-1',8,'image/jpeg',2165,'products/8-1.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(333,0,'8-2',8,'image/jpeg',2165,'products/8-2.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(334,0,'8-3',8,'image/jpeg',2165,'products/8-3.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(335,0,'8',8,'image/jpeg',2165,'products/8.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(336,0,'9-1',8,'image/jpeg',2165,'products/9-1.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(337,0,'9-2',8,'image/jpeg',2165,'products/9-2.jpg','[]','2023-01-22 08:09:51','2023-01-22 08:09:51',NULL),(338,0,'9',8,'image/jpeg',2165,'products/9.jpg','[]','2023-01-22 08:09:52','2023-01-22 08:09:52',NULL),(339,0,'1',9,'image/jpeg',2165,'customers/1.jpg','[]','2023-01-22 08:09:59','2023-01-22 08:09:59',NULL),(340,0,'10',9,'image/jpeg',2165,'customers/10.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(341,0,'2',9,'image/jpeg',2165,'customers/2.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(342,0,'3',9,'image/jpeg',2165,'customers/3.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(343,0,'4',9,'image/jpeg',2165,'customers/4.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(344,0,'5',9,'image/jpeg',2165,'customers/5.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(345,0,'6',9,'image/jpeg',2165,'customers/6.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(346,0,'7',9,'image/jpeg',2165,'customers/7.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(347,0,'8',9,'image/jpeg',2165,'customers/8.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL),(348,0,'9',9,'image/jpeg',2165,'customers/9.jpg','[]','2023-01-22 08:10:00','2023-01-22 08:10:00',NULL); /*!40000 ALTER TABLE `media_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_folders` -- DROP TABLE IF EXISTS `media_folders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_folders` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `media_folders_user_id_index` (`user_id`), KEY `media_folders_index` (`parent_id`,`user_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_folders` -- LOCK TABLES `media_folders` WRITE; /*!40000 ALTER TABLE `media_folders` DISABLE KEYS */; INSERT INTO `media_folders` VALUES (1,0,'homepage1','homepage1',0,'2023-01-22 08:09:23','2023-01-22 08:09:23',NULL),(2,0,'company','company',0,'2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(3,0,'news','news',0,'2023-01-22 08:09:25','2023-01-22 08:09:25',NULL),(4,0,'general','general',0,'2023-01-22 08:09:26','2023-01-22 08:09:26',NULL),(5,0,'testimonials','testimonials',0,'2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(6,0,'brands','brands',0,'2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(7,0,'product-categories','product-categories',0,'2023-01-22 08:09:39','2023-01-22 08:09:39',NULL),(8,0,'products','products',0,'2023-01-22 08:09:40','2023-01-22 08:09:40',NULL),(9,0,'customers','customers',0,'2023-01-22 08:09:59','2023-01-22 08:09:59',NULL); /*!40000 ALTER TABLE `media_folders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_settings` -- DROP TABLE IF EXISTS `media_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_settings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `media_id` int DEFAULT NULL, `user_id` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_settings` -- LOCK TABLES `media_settings` WRITE; /*!40000 ALTER TABLE `media_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `media_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `menu_locations` -- DROP TABLE IF EXISTS `menu_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `menu_locations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `menu_id` int unsigned NOT NULL, `location` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `menu_locations` -- LOCK TABLES `menu_locations` WRITE; /*!40000 ALTER TABLE `menu_locations` DISABLE KEYS */; INSERT INTO `menu_locations` VALUES (1,1,'main-menu','2023-01-22 08:10:07','2023-01-22 08:10:07'),(2,2,'main-menu','2023-01-22 08:10:07','2023-01-22 08:10:07'),(3,11,'footer-bottom-menu','2023-01-22 08:10:07','2023-01-22 08:10:07'),(4,12,'footer-bottom-menu','2023-01-22 08:10:07','2023-01-22 08:10:07'); /*!40000 ALTER TABLE `menu_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `menu_nodes` -- DROP TABLE IF EXISTS `menu_nodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `menu_nodes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `menu_id` int unsigned NOT NULL, `parent_id` int unsigned NOT NULL DEFAULT '0', `reference_id` int unsigned DEFAULT NULL, `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon_font` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` tinyint unsigned NOT NULL DEFAULT '0', `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `css_class` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `target` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self', `has_child` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `menu_nodes_menu_id_index` (`menu_id`), KEY `menu_nodes_parent_id_index` (`parent_id`), KEY `reference_id` (`reference_id`), KEY `reference_type` (`reference_type`) ) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `menu_nodes` -- LOCK TABLES `menu_nodes` WRITE; /*!40000 ALTER TABLE `menu_nodes` DISABLE KEYS */; INSERT INTO `menu_nodes` VALUES (1,1,0,NULL,NULL,'/',NULL,0,'Home',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(2,1,1,NULL,NULL,'/','fi fi-rr-home',0,'Homepage 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(3,1,1,9,'Botble\\Page\\Models\\Page','/homepage-2','fi fi-rr-home',0,'Homepage 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(4,1,1,10,'Botble\\Page\\Models\\Page','/homepage-3','fi fi-rr-home',0,'Homepage 3',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(5,1,1,11,'Botble\\Page\\Models\\Page','/homepage-4','fi fi-rr-home',0,'Homepage 4',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(6,1,1,12,'Botble\\Page\\Models\\Page','/homepage-5','fi fi-rr-home',0,'Homepage 5',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(7,1,1,13,'Botble\\Page\\Models\\Page','/homepage-6','fi fi-rr-home',0,'Homepage 6',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(8,1,1,14,'Botble\\Page\\Models\\Page','/homepage-7','fi fi-rr-home',0,'Homepage 7',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(9,1,1,15,'Botble\\Page\\Models\\Page','/homepage-8','fi fi-rr-home',0,'Homepage 8',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(10,1,0,NULL,NULL,'#',NULL,0,'Company',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(11,1,10,6,'Botble\\Page\\Models\\Page','/service','fi fi-rr-gem',0,'Service',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(12,1,10,16,'Botble\\Page\\Models\\Page','/service-2','fi fi-rr-headset',0,'Service - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(13,1,10,7,'Botble\\Page\\Models\\Page','/pricing','fi fi-rr-database',0,'Pricing',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(14,1,10,17,'Botble\\Page\\Models\\Page','/pricing-2','fi fi-rr-database',0,'Pricing - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(15,1,10,8,'Botble\\Page\\Models\\Page','/faqs','fi fi-rr-headset',0,'FAQs',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(16,1,10,18,'Botble\\Page\\Models\\Page','/faqs-2','fi fi-rr-headset',0,'FAQs - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(17,1,10,19,'Botble\\Page\\Models\\Page','/career','fi fi-rr-briefcase',0,'Career',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(18,1,10,20,'Botble\\Page\\Models\\Page','/senior-full-stack-engineer-creator-success-full-time','fi fi-rr-briefcase',0,'Career Details',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(19,1,0,NULL,NULL,'#',NULL,0,'Pages',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(20,1,19,3,'Botble\\Page\\Models\\Page','/contact','fi fi-rr-paper-plane',0,'Contact',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(21,1,19,5,'Botble\\Page\\Models\\Page','/about-us','fi fi-rr-star',0,'About Us - 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(22,1,19,21,'Botble\\Page\\Models\\Page','/about-us-2','fi fi-rr-star',0,'About Us - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(23,1,19,22,'Botble\\Page\\Models\\Page','/about-us-3','fi fi-rr-star',0,'About Us - 3',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(24,1,19,NULL,NULL,'/register','fi fi-rr-user-add',0,'Sign Up',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(25,1,19,NULL,NULL,'/login','fi fi-rr-fingerprint',0,'Log In',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(26,1,19,NULL,NULL,'/password/reset','fi fi-rr-settings',0,'Reset Password',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(27,1,19,NULL,NULL,'404','fi fi-rr-exclamation',0,'Error 404',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(28,1,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(29,1,28,2,'Botble\\Page\\Models\\Page','/blog','fi fi-rr-edit',0,'Blog Archive - 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(30,1,28,23,'Botble\\Page\\Models\\Page','/blog-2','fi fi-rr-edit',0,'Blog Archive - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(31,1,28,NULL,NULL,'/the-top-2020-handbag-trends-to-know','fi fi-rr-document-signed',0,'Post Details',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(32,1,0,NULL,NULL,'#',NULL,0,'Shop',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(33,1,32,NULL,NULL,'/products','fi fi-rr-edit',0,'Shop Grid - 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(34,1,32,NULL,NULL,'/products?layout=grid-2','fi fi-rr-edit',0,'Shop Grid - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(35,1,32,NULL,NULL,'/products/dual-camera-20mp','fi fi-rr-edit',0,'Product Details',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(36,2,0,NULL,NULL,'/',NULL,0,'Trang chủ',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(37,2,36,NULL,NULL,'/','fi fi-rr-home',0,'Trang chủ 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(38,2,36,9,'Botble\\Page\\Models\\Page','/homepage-2','fi fi-rr-home',0,'Trang chủ 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(39,2,36,10,'Botble\\Page\\Models\\Page','/homepage-3','fi fi-rr-home',0,'Trang chủ 3',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(40,2,36,11,'Botble\\Page\\Models\\Page','/homepage-4','fi fi-rr-home',0,'Trang chủ 4',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(41,2,36,12,'Botble\\Page\\Models\\Page','/homepage-5','fi fi-rr-home',0,'Trang chủ 5',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(42,2,36,13,'Botble\\Page\\Models\\Page','/homepage-6','fi fi-rr-home',0,'Trang chủ 6',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(43,2,36,14,'Botble\\Page\\Models\\Page','/homepage-7','fi fi-rr-home',0,'Trang chủ 7',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(44,2,36,15,'Botble\\Page\\Models\\Page','/homepage-8','fi fi-rr-home',0,'Trang chủ 8',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(45,2,0,NULL,NULL,'#',NULL,0,'Công ty',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(46,2,45,6,'Botble\\Page\\Models\\Page','/service','fi fi-rr-gem',0,'Dịch vụ',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(47,2,45,16,'Botble\\Page\\Models\\Page','/service-2','fi fi-rr-headset',0,'Dịch vụ - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(48,2,45,7,'Botble\\Page\\Models\\Page','/pricing','fi fi-rr-database',0,'Bảng giá',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(49,2,45,17,'Botble\\Page\\Models\\Page','/pricing-2','fi fi-rr-database',0,'Bảng giá - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(50,2,45,8,'Botble\\Page\\Models\\Page','/faqs','fi fi-rr-headset',0,'FAQs',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(51,2,45,18,'Botble\\Page\\Models\\Page','/faqs-2','fi fi-rr-headset',0,'FAQs - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(52,2,45,19,'Botble\\Page\\Models\\Page','/career','fi fi-rr-briefcase',0,'Career',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(53,2,45,20,'Botble\\Page\\Models\\Page','/senior-full-stack-engineer-creator-success-full-time','fi fi-rr-briefcase',0,'Career Details',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(54,2,0,NULL,NULL,'#',NULL,0,'Trang',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(55,2,54,3,'Botble\\Page\\Models\\Page','/contact','fi fi-rr-paper-plane',0,'Liên hệ',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(56,2,54,5,'Botble\\Page\\Models\\Page','/about-us','fi fi-rr-star',0,'Về chúng tôi - 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(57,2,54,21,'Botble\\Page\\Models\\Page','/about-us-2','fi fi-rr-star',0,'Về chúng tôi - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(58,2,54,22,'Botble\\Page\\Models\\Page','/about-us-3','fi fi-rr-star',0,'Về chúng tôi - 3',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(59,2,54,NULL,NULL,'/register','fi fi-rr-user-add',0,'Đăng ký',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(60,2,54,NULL,NULL,'/login','fi fi-rr-fingerprint',0,'Đăng Nhập',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(61,2,54,NULL,NULL,'/password/reset','fi fi-rr-settings',0,'Quên mật khẩu',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(62,2,54,NULL,NULL,'404','fi fi-rr-exclamation',0,'Lỗi 404',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(63,2,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Blog',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(64,2,63,2,'Botble\\Page\\Models\\Page','/blog','fi fi-rr-edit',0,'Tin tức - 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(65,2,63,23,'Botble\\Page\\Models\\Page','/blog-2','fi fi-rr-edit',0,'Tin tức - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(66,2,63,NULL,NULL,'/the-top-2020-handbag-trends-to-know','fi fi-rr-document-signed',0,'Post Details',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(67,2,0,NULL,NULL,'#',NULL,0,'Shop',NULL,'_self',1,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(68,2,67,NULL,NULL,'/products','fi fi-rr-edit',0,'Sản phẩm - 1',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(69,2,67,NULL,NULL,'/products?layout=grid-2','fi fi-rr-edit',0,'Sản phẩm - 2',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(70,2,67,NULL,NULL,'/products/dual-camera-20mp','fi fi-rr-edit',0,'Chi tiết sản phẩm',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(71,3,0,NULL,NULL,'/',NULL,0,'Mission & Vision',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(72,3,0,NULL,NULL,'/',NULL,0,'Our Team',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(73,3,0,19,'Botble\\Page\\Models\\Page','/career',NULL,0,'Careers',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(74,3,0,NULL,NULL,'/',NULL,0,'Press & Media',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(75,3,0,NULL,NULL,'/',NULL,0,'Advertising',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(76,3,0,NULL,NULL,'/',NULL,0,'Testimonials',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(77,4,0,NULL,NULL,'/',NULL,0,'Mission & Vision',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(78,4,0,NULL,NULL,'/',NULL,0,'Our Team',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(79,4,0,19,'Botble\\Page\\Models\\Page','/career',NULL,0,'Careers',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(80,4,0,NULL,NULL,'/',NULL,0,'Press & Media',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(81,4,0,NULL,NULL,'/',NULL,0,'Advertising',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(82,4,0,NULL,NULL,'/',NULL,0,'Testimonials',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(83,5,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Our Blog',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(84,5,0,7,'Botble\\Page\\Models\\Page','/pricing',NULL,0,'Plans & Pricing',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(85,5,0,NULL,NULL,'/',NULL,0,'Knowledge Base',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(86,5,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Cookie Policy',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(87,5,0,NULL,NULL,'/',NULL,0,'Office Center',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(88,5,0,NULL,NULL,'/',NULL,0,'News & Events',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(89,6,0,2,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Our Blog',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(90,6,0,7,'Botble\\Page\\Models\\Page','/pricing',NULL,0,'Plans & Pricing',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(91,6,0,NULL,NULL,'/',NULL,0,'Knowledge Base',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(92,6,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Cookie Policy',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(93,6,0,NULL,NULL,'/',NULL,0,'Office Center',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(94,6,0,NULL,NULL,'/',NULL,0,'News & Events',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(95,7,0,8,'Botble\\Page\\Models\\Page','/faqs',NULL,0,'FAQs',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(96,7,0,NULL,NULL,'/',NULL,0,'Editor Help',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(97,7,0,NULL,NULL,'/',NULL,0,'Community',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(98,7,0,NULL,NULL,'/',NULL,0,'Live Chatting',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(99,7,0,3,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Contact Us',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(100,7,0,NULL,NULL,'/',NULL,0,'Support Center',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(101,8,0,8,'Botble\\Page\\Models\\Page','/faqs',NULL,0,'FAQs',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(102,8,0,NULL,NULL,'/',NULL,0,'Editor Help',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(103,8,0,NULL,NULL,'/',NULL,0,'Community',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(104,8,0,NULL,NULL,'/',NULL,0,'Live Chatting',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(105,8,0,3,'Botble\\Page\\Models\\Page','/contact',NULL,0,'Contact Us',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(106,8,0,NULL,NULL,'/',NULL,0,'Support Center',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(107,9,0,NULL,NULL,'/',NULL,0,'Request an offer',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(108,9,0,NULL,NULL,'/',NULL,0,'How it works',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(109,9,0,17,'Botble\\Page\\Models\\Page','/pricing-2',NULL,0,'Pricing',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(110,9,0,NULL,NULL,'/',NULL,0,'Reviews',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(111,9,0,NULL,NULL,'/',NULL,0,'Stories',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(112,10,0,NULL,NULL,'/',NULL,0,'Request an offer',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(113,10,0,NULL,NULL,'/',NULL,0,'How it works',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(114,10,0,17,'Botble\\Page\\Models\\Page','/pricing-2',NULL,0,'Bảng giá',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(115,10,0,NULL,NULL,'/',NULL,0,'Reviews',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(116,10,0,NULL,NULL,'/',NULL,0,'Stories',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(117,11,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Privacy policy',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(118,11,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Cookies',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(119,11,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Terms of service',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(120,12,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Privacy policy',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(121,12,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Cookies',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'),(122,12,0,4,'Botble\\Page\\Models\\Page','/cookie-policy',NULL,0,'Terms of service',NULL,'_self',0,'2023-01-22 08:10:07','2023-01-22 08:10:07'); /*!40000 ALTER TABLE `menu_nodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `menus` -- DROP TABLE IF EXISTS `menus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `menus` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `menus_slug_unique` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `menus` -- LOCK TABLES `menus` WRITE; /*!40000 ALTER TABLE `menus` DISABLE KEYS */; INSERT INTO `menus` VALUES (1,'Main menu','main-menu','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(2,'Menu chính','menu-chinh','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(3,'About Us','about-us','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(4,'Về chúng tôi','ve-chung-toi','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(5,'Discover','discover','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(6,'Khám phá','kham-pha','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(7,'Support','support','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(8,'Hổ trợ','ho-tro','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(9,'Useful links','useful-links','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(10,'Liên kết hữu ích','lien-ket-huu-ich','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(11,'Footer bottom menu','footer-bottom-menu','published','2023-01-22 08:10:07','2023-01-22 08:10:07'),(12,'Menu dưới chân trang','menu-duoi-chan-trang','published','2023-01-22 08:10:07','2023-01-22 08:10:07'); /*!40000 ALTER TABLE `menus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meta_boxes` -- DROP TABLE IF EXISTS `meta_boxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `meta_boxes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `meta_value` text COLLATE utf8mb4_unicode_ci, `reference_id` int unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `meta_boxes_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meta_boxes` -- LOCK TABLES `meta_boxes` WRITE; /*!40000 ALTER TABLE `meta_boxes` DISABLE KEYS */; INSERT INTO `meta_boxes` VALUES (1,'header_css_class','[\"header-style-5\"]',8,'Botble\\Page\\Models\\Page','2023-01-22 08:09:25','2023-01-22 08:09:25'),(2,'header_css_class','[\"header-style-2\"]',11,'Botble\\Page\\Models\\Page','2023-01-22 08:09:25','2023-01-22 08:09:25'),(3,'header_css_class','[\"header-style-3\"]',21,'Botble\\Page\\Models\\Page','2023-01-22 08:09:25','2023-01-22 08:09:25'),(4,'title','[\"Satisfied client testimonial\"]',1,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(5,'title','[\"98% of residents recommend us\"]',2,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(6,'title','[\"Our success stories\"]',3,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(7,'title','[\"This is simply unbelievable\"]',4,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(8,'vi_title','[\"Satisfied client testimonial\"]',1,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(9,'vi_title','[\"98% of residents recommend us\"]',2,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(10,'vi_title','[\"Our success stories\"]',3,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(11,'vi_title','[\"This is simply unbelievable\"]',4,'Botble\\Testimonial\\Models\\Testimonial','2023-01-22 08:09:39','2023-01-22 08:09:39'),(12,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',1,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(13,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',2,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(14,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',3,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(15,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',4,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(16,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',5,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(17,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',6,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(18,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',7,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(19,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',8,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(20,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',9,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(21,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',10,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(22,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',11,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(23,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',12,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(24,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',13,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(25,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',14,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(26,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',15,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(27,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',16,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(28,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',17,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(29,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',18,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(30,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',19,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(31,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',20,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(32,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',21,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(33,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',22,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(34,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',23,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(35,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',24,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(36,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',25,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(37,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',26,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:55','2023-01-22 08:09:55'),(38,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',27,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(39,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',28,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(40,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',29,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(41,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',30,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(42,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',31,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(43,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',32,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(44,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',33,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(45,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',34,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(46,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',35,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(47,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',36,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(48,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',37,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(49,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',38,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(50,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',39,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(51,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',40,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(52,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',41,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(53,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',42,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(54,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',43,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(55,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',44,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(56,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',45,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(57,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',46,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(58,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',47,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(59,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',48,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(60,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',49,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(61,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',50,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(62,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',51,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(63,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',52,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(64,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',53,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(65,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',54,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(66,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',55,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(67,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',56,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(68,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',57,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(69,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',58,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(70,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',59,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(71,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',60,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(72,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',61,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(73,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',62,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(74,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',63,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(75,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',64,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(76,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',65,'Botble\\Ecommerce\\Models\\Product','2023-01-22 08:09:56','2023-01-22 08:09:56'),(77,'child_style','[\"two_col\"]',1,'Botble\\Menu\\Models\\MenuNode','2023-01-22 08:10:07','2023-01-22 08:10:07'),(78,'child_style','[\"hr_per_2_child\"]',10,'Botble\\Menu\\Models\\MenuNode','2023-01-22 08:10:07','2023-01-22 08:10:07'),(79,'child_style','[\"hr_per_2_child\"]',28,'Botble\\Menu\\Models\\MenuNode','2023-01-22 08:10:07','2023-01-22 08:10:07'),(80,'child_style','[\"two_col\"]',36,'Botble\\Menu\\Models\\MenuNode','2023-01-22 08:10:07','2023-01-22 08:10:07'),(81,'child_style','[\"hr_per_2_child\"]',45,'Botble\\Menu\\Models\\MenuNode','2023-01-22 08:10:07','2023-01-22 08:10:07'),(82,'child_style','[\"hr_per_2_child\"]',63,'Botble\\Menu\\Models\\MenuNode','2023-01-22 08:10:07','2023-01-22 08:10:07'); /*!40000 ALTER TABLE `meta_boxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES (1,'2013_04_09_032329_create_base_tables',1),(2,'2013_04_09_062329_create_revisions_table',1),(3,'2014_10_12_000000_create_users_table',1),(4,'2014_10_12_100000_create_password_resets_table',1),(5,'2016_06_10_230148_create_acl_tables',1),(6,'2016_06_14_230857_create_menus_table',1),(7,'2016_06_28_221418_create_pages_table',1),(8,'2016_10_05_074239_create_setting_table',1),(9,'2016_11_28_032840_create_dashboard_widget_tables',1),(10,'2016_12_16_084601_create_widgets_table',1),(11,'2017_05_09_070343_create_media_tables',1),(12,'2017_11_03_070450_create_slug_table',1),(13,'2019_01_05_053554_create_jobs_table',1),(14,'2019_08_19_000000_create_failed_jobs_table',1),(15,'2019_12_14_000001_create_personal_access_tokens_table',1),(16,'2022_04_20_100851_add_index_to_media_table',1),(17,'2022_04_20_101046_add_index_to_menu_table',1),(18,'2022_07_10_034813_move_lang_folder_to_root',1),(19,'2022_08_04_051940_add_missing_column_expires_at',1),(20,'2022_09_01_000001_create_admin_notifications_tables',1),(21,'2022_10_14_024629_drop_column_is_featured',1),(22,'2022_11_18_063357_add_missing_timestamp_in_table_settings',1),(23,'2022_12_02_093615_update_slug_index_columns',1),(24,'2015_06_29_025744_create_audit_history',2),(25,'2015_06_18_033822_create_blog_table',3),(26,'2021_02_16_092633_remove_default_value_for_author_type',3),(27,'2021_12_03_030600_create_blog_translations',3),(28,'2022_04_19_113923_add_index_to_table_posts',3),(29,'2016_06_17_091537_create_contacts_table',4),(30,'2020_03_05_041139_create_ecommerce_tables',5),(31,'2021_01_01_044147_ecommerce_create_flash_sale_table',5),(32,'2021_01_17_082713_add_column_is_featured_to_product_collections_table',5),(33,'2021_01_18_024333_add_zip_code_into_table_customer_addresses',5),(34,'2021_02_18_073505_update_table_ec_reviews',5),(35,'2021_03_10_024419_add_column_confirmed_at_to_table_ec_customers',5),(36,'2021_03_10_025153_change_column_tax_amount',5),(37,'2021_03_20_033103_add_column_availability_to_table_ec_products',5),(38,'2021_04_28_074008_ecommerce_create_product_label_table',5),(39,'2021_05_31_173037_ecommerce_create_ec_products_translations',5),(40,'2021_06_28_153141_correct_slugs_data',5),(41,'2021_08_17_105016_remove_column_currency_id_in_some_tables',5),(42,'2021_08_30_142128_add_images_column_to_ec_reviews_table',5),(43,'2021_09_01_115151_remove_unused_fields_in_ec_products',5),(44,'2021_10_04_030050_add_column_created_by_to_table_ec_products',5),(45,'2021_10_05_122616_add_status_column_to_ec_customers_table',5),(46,'2021_11_03_025806_nullable_phone_number_in_ec_customer_addresses',5),(47,'2021_11_23_071403_correct_languages_for_product_variations',5),(48,'2021_11_28_031808_add_product_tags_translations',5),(49,'2021_12_01_031123_add_featured_image_to_ec_products',5),(50,'2022_01_01_033107_update_table_ec_shipments',5),(51,'2022_02_16_042457_improve_product_attribute_sets',5),(52,'2022_03_22_075758_correct_product_name',5),(53,'2022_04_19_113334_add_index_to_ec_products',5),(54,'2022_04_28_144405_remove_unused_table',5),(55,'2022_05_05_115015_create_ec_customer_recently_viewed_products_table',5),(56,'2022_05_18_143720_add_index_to_table_ec_product_categories',5),(57,'2022_06_16_095633_add_index_to_some_tables',5),(58,'2022_06_30_035148_create_order_referrals_table',5),(59,'2022_07_24_153815_add_completed_at_to_ec_orders_table',5),(60,'2022_08_14_032836_create_ec_order_returns_table',5),(61,'2022_08_14_033554_create_ec_order_return_items_table',5),(62,'2022_08_15_040324_add_billing_address',5),(63,'2022_08_30_091114_support_digital_products_table',5),(64,'2022_09_13_095744_create_options_table',5),(65,'2022_09_13_104347_create_option_value_table',5),(66,'2022_10_05_163518_alter_table_ec_order_product',5),(67,'2022_10_12_041517_create_invoices_table',5),(68,'2022_10_12_142226_update_orders_table',5),(69,'2022_10_13_024916_update_table_order_returns',5),(70,'2022_10_21_030830_update_columns_in_ec_shipments_table',5),(71,'2022_10_28_021046_update_columns_in_ec_shipments_table',5),(72,'2022_11_16_034522_update_type_column_in_ec_shipping_rules_table',5),(73,'2022_11_19_041643_add_ec_tax_product_table',5),(74,'2022_12_12_063830_update_tax_defadult_in_ec_tax_products_table',5),(75,'2022_12_17_041532_fix_address_in_order_invoice',5),(76,'2022_12_26_070329_create_ec_product_views_table',5),(77,'2023_01_04_033051_fix_product_categories',5),(78,'2023_01_09_050400_add_ec_global_options_translations_table',5),(79,'2023_01_10_093754_add_missing_option_value_id',5),(80,'2023_01_17_082713_add_column_barcode_and_cost_per_item_to_product_table',5),(81,'2018_07_09_221238_create_faq_table',6),(82,'2021_12_03_082134_create_faq_translations',6),(83,'2016_10_03_032336_create_languages_table',7),(84,'2021_10_25_021023_fix-priority-load-for-language-advanced',8),(85,'2021_12_03_075608_create_page_translations',8),(86,'2019_11_18_061011_create_country_table',9),(87,'2021_12_03_084118_create_location_translations',9),(88,'2021_12_03_094518_migrate_old_location_data',9),(89,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',9),(90,'2022_01_16_085908_improve_plugin_location',9),(91,'2022_08_04_052122_delete_location_backup_tables',9),(92,'2022_10_29_065232_increase_states_abbreviation_column',9),(93,'2022_11_06_061847_increase_state_translations_abbreviation_column',9),(94,'2017_10_24_154832_create_newsletter_table',10),(95,'2017_05_18_080441_create_payment_tables',11),(96,'2021_03_27_144913_add_customer_type_into_table_payments',11),(97,'2021_05_24_034720_make_column_currency_nullable',11),(98,'2021_08_09_161302_add_metadata_column_to_payments_table',11),(99,'2021_10_19_020859_update_metadata_field',11),(100,'2022_06_28_151901_activate_paypal_stripe_plugin',11),(101,'2022_07_07_153354_update_charge_id_in_table_payments',11),(102,'2018_07_09_214610_create_testimonial_table',12),(103,'2021_12_03_083642_create_testimonials_translations',12),(104,'2016_10_07_193005_create_translations_table',13); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletters` -- DROP TABLE IF EXISTS `newsletters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletters` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `email` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newsletters` -- LOCK TABLES `newsletters` WRITE; /*!40000 ALTER TABLE `newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages` -- DROP TABLE IF EXISTS `pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pages` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `user_id` int NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `pages_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages` -- LOCK TABLES `pages` WRITE; /*!40000 ALTER TABLE `pages` DISABLE KEYS */; INSERT INTO `pages` VALUES (1,'Homepage 1','<div>[hero-banner title=\"We are awesome team for your business dream\" highlight_text=\"awesome team\" subtitle=\"Integrated workflow designed for product teams. We create world-class development and branding\" image=\"homepage1/banner.png\" bg_color=\"#990099\" bg_image_1=\"homepage1/bg-1.png\" bg_image_2=\"homepage1/bg-2.png\" video_url=\"https://www.youtube.com/embed/oRI37cOPBQQ\" video_bg=\"homepage1/video-bg.png\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"Learn More\" secondary_url=\"/\"][/hero-banner]</div><div>[companies title=\"\" quantity=\"6\" title_1=\"Agon\" image_1=\"company/1.png\" link_1=\"#\" title_2=\"Monst\" image_2=\"company/2.png\" link_2=\"#\" title_3=\"Figwire\" image_3=\"company/3.png\" link_3=\"#\" title_4=\"Evara\" image_4=\"company/4.png\" link_4=\"#\" title_5=\"Frox\" image_5=\"company/5.png\" link_5=\"#\" title_6=\"Alithemes\" image_6=\"company/6.png\" link_6=\"#\" ][/companies]</div><div>[we-are-trusted title=\"See why we are trusted the world over\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" quantity=\"6\" tab_name_1=\"Branding\" title_1=\"Optimize and scale, easy to start\" subtitle_1=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_1=\"/\" link_title_1=\"Learn more\" video_1=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_1=\"homepage1/img-1.jpg\" bg_color_1=\"#FFF3EA\" tab_name_2=\"Development\" title_2=\"Design Studios That Everyone Should Know\" subtitle_2=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_2=\"/\" link_title_2=\"Learn more\" video_2=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_2=\"homepage1/img-2.jpg\" bg_color_2=\"#EAE4E9\" tab_name_3=\"Animation\" title_3=\"We can blend colors multiple ways\" subtitle_3=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_3=\"/\" link_title_3=\"Learn more\" video_3=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_3=\"homepage1/img-3.jpg\" bg_color_3=\"#FDE2E4\" tab_name_4=\"User Experience\" title_4=\"Choose The Best Plan That\'s For You\" subtitle_4=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_4=\"/\" link_title_4=\"Learn more\" video_4=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_4=\"homepage1/img-4.jpg\" bg_color_4=\"#FAD2E1\" tab_name_5=\"Social Network\" title_5=\"Subscribe our newsletter to get gift\" subtitle_5=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_5=\"/\" link_title_5=\"Learn more\" video_5=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_5=\"homepage1/img-5.jpg\" bg_color_5=\"#DBECE5\" tab_name_6=\"Marketing\" title_6=\"Ready to get started? Create and Account\" subtitle_6=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_6=\"/\" link_title_6=\"Learn more\" video_6=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_6=\"homepage1/img-6.jpg\" bg_color_6=\"#BEE1E6\" ][/we-are-trusted]</div><div>[we-facilitate title=\"We facilitate the creation of strategy and design\" subtitle=\"Interactively transform magnetic growth strategies whereas prospective “outside the box” thinking.\" style=\"style-1\" quantity=\"3\" title_1=\"Business Strategy\" subtitle_1=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_1=\"homepage1/business-strategy.png\" bottom_image_1=\"homepage1/business-white.png\" bg_color_1=\"#DBECE5\" title_2=\"Local Marketing\" subtitle_2=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_2=\"homepage1/local.png\" bottom_image_2=\"homepage1/local-white.png\" bg_color_2=\"#D1ECFD\" title_3=\"Social media\" subtitle_3=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_3=\"homepage1/social.png\" bottom_image_3=\"homepage1/social-white.png\" bg_color_3=\"#FFF3EA\" ][/we-facilitate]</div><div>[we-do-you-get title=\"We believe that our works can contribute to a better world.\" subtitle=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks. Take your career to next level.\" highlight=\"What We Do, What You Get\" image=\"homepage1/img-7.png\" style=\"style-1\" quantity=\"4\" title_1=\"Automated reports\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Realtime analytics\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Funnel optimization\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"User journey\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[how-it-works title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" style=\"style-1\" quantity=\"3\" title_1=\"Market research\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Strategic Consulting\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Cognitive Solution\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\"][/testimonials]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"3\" title_1=\"Standard\" subtitle_1=\"All the basics for businesses that are just getting started.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Essentials\" subtitle_2=\"All the basics for businesses that are just getting started.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" title_3=\"Premium\" subtitle_3=\"Avvanced features for pros who need more customization.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(2,'Blog','---',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(3,'Contact','<div>[page-header title=\"Contact Us\" subtitle=\"Equidem necessitatibus ei eam, ceteros expetenda hendrerit ei per, tation vituperatoribus ut.\"][/page-header]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"The right move at the right time saves your investment. live the dream of expanding your business.\" highlight=\"Contact us\" image=\"general/email.png\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[our-location title=\"Our Location\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication to publish news.\" quantity=\"3\" title_1=\"Office\" address_1=\"205 North Michigan Avenue, Suite 810 Chicago, 60601, USA\" phone_1=\"(123) 456-7890\" email_1=\"contact@Evara.com\" image_1=\"general/icon-acquis.png\" title_2=\"Studio\" address_2=\"205 North Michigan Avenue, Suite 810 Chicago, 60601, USA\" phone_2=\"(123) 456-7890\" email_2=\"contact@Evara.com\" image_2=\"general/icon-active.png\" title_3=\"Factory\" address_3=\"205 North Michigan Avenue, Suite 810 Chicago, 60601, USA\" phone_3=\"(123) 456-7890\" email_3=\"contact@Evara.com\" image_3=\"general/icon-retent.png\" ][/our-location]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(4,'Cookie Policy','<h3>EU Cookie Consent</h3><p>To use this website we are using Cookies and collecting some Data. To be compliant with the EU GDPR we give you to choose if you allow us to use certain Cookies and to collect some Data.</p><h4>Essential Data</h4><p>The Essential Data is needed to run the Site you are visiting technically. You can not deactivate them.</p><p>- Session Cookie: PHP uses a Cookie to identify user sessions. Without this Cookie the Website is not working.</p><p>- XSRF-Token Cookie: Laravel automatically generates a CSRF \"token\" for each active user session managed by the application. This token is used to verify that the authenticated user is the one actually making the requests to the application.</p>',1,NULL,'page-detail',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(5,'About us','<div>[hero-banner title=\"A small creative team excited to create beautiful things\" highlight_text=\"What We Do, What You Get\" subtitle=\"Integrated workflow designed for product teams. We create world-class development and branding\" image=\"general/banner1.png\" bg_color=\"#990099\" bg_image_1=\"general/bg-about-1.png\" mini_image=\"general/banner2.png\" primary_title=\"Join Our Team\" primary_url=\"/\" secondary_title=\"Contact Us\" secondary_url=\"/\" style=\"style-2\"][/hero-banner]</div><div>[statistical style=\"style-1\" quantity=\"4\" title_1=\"Years in Business\" count_1=\"5\" title_2=\"Projects Done\" count_2=\"6\" extra_2=\"k\" title_3=\"Countries / Offices\" count_3=\"12\" title_4=\"Constant Clients\" count_4=\"11\" extra_4=\"k\" ][/statistical]</div><div>[youtube-video title=\"What We Do, What You Get\" subtitle=\"We believe in the power of creative ideas\" image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Providing solutions of every kind\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication to publish news.\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-facilitate title=\"Bringing the world’s ideas to life\" subtitle=\"Developers are trusted to create an engaging experience for their companies, so we build tools to help them.\" highlight=\"What We Do, What You Get\" style=\"style-2\" quantity=\"3\" title_1=\"Business Strategy\" subtitle_1=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_1=\"homepage1/business-strategy.png\" border_color_1=\"#FAD2E1\" bg_color_1=\"#DBECE5\" title_2=\"Local Marketing\" subtitle_2=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_2=\"homepage1/local.png\" border_color_2=\"#BEE1E6\" bg_color_2=\"#D1ECFD\" title_3=\"Social media\" subtitle_3=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_3=\"homepage1/social.png\" border_color_3=\"#FAD2E1\" bg_color_3=\"#FFF3EA\" ][/we-facilitate]</div><div>[our-team title=\"Our Team\" subtitle=\"Decades of experience in design and development\" quantity=\"16\" name_1=\"Theresa Webb\" position_1=\"Marketing CEO\" image_1=\"general/team-1.png\" description_1=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_1=\"https://fb.com\" twitter_1=\"https://twitter.com\" instagram_1=\"https://instagram.com\" linkedin_1=\"https://linkedin.com\" name_2=\"Theresa Webb\" position_2=\"Marketing CEO\" image_2=\"general/team-2.png\" description_2=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_2=\"https://fb.com\" twitter_2=\"https://twitter.com\" instagram_2=\"https://instagram.com\" linkedin_2=\"https://linkedin.com\" name_3=\"Theresa Webb\" position_3=\"Marketing CEO\" image_3=\"general/team-3.png\" description_3=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_3=\"https://fb.com\" twitter_3=\"https://twitter.com\" instagram_3=\"https://instagram.com\" linkedin_3=\"https://linkedin.com\" name_4=\"Theresa Webb\" position_4=\"Marketing CEO\" image_4=\"general/team-4.png\" description_4=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_4=\"https://fb.com\" twitter_4=\"https://twitter.com\" instagram_4=\"https://instagram.com\" linkedin_4=\"https://linkedin.com\" name_5=\"Theresa Webb\" position_5=\"Marketing CEO\" image_5=\"general/team-5.png\" description_5=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_5=\"https://fb.com\" twitter_5=\"https://twitter.com\" instagram_5=\"https://instagram.com\" linkedin_5=\"https://linkedin.com\" name_6=\"Theresa Webb\" position_6=\"Marketing CEO\" image_6=\"general/team-6.png\" description_6=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_6=\"https://fb.com\" twitter_6=\"https://twitter.com\" instagram_6=\"https://instagram.com\" linkedin_6=\"https://linkedin.com\" name_7=\"Theresa Webb\" position_7=\"Marketing CEO\" image_7=\"general/team-7.png\" description_7=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_7=\"https://fb.com\" twitter_7=\"https://twitter.com\" instagram_7=\"https://instagram.com\" linkedin_7=\"https://linkedin.com\" name_8=\"Theresa Webb\" position_8=\"Marketing CEO\" image_8=\"general/team-8.png\" description_8=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_8=\"https://fb.com\" twitter_8=\"https://twitter.com\" instagram_8=\"https://instagram.com\" linkedin_8=\"https://linkedin.com\" name_9=\"Theresa Webb\" position_9=\"Marketing CEO\" image_9=\"general/team-1.png\" description_9=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_9=\"https://fb.com\" twitter_9=\"https://twitter.com\" instagram_9=\"https://instagram.com\" linkedin_9=\"https://linkedin.com\" name_10=\"Theresa Webb\" position_10=\"Marketing CEO\" image_10=\"general/team-2.png\" description_10=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_10=\"https://fb.com\" twitter_10=\"https://twitter.com\" instagram_10=\"https://instagram.com\" linkedin_10=\"https://linkedin.com\" name_11=\"Theresa Webb\" position_11=\"Marketing CEO\" image_11=\"general/team-3.png\" description_11=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_11=\"https://fb.com\" twitter_11=\"https://twitter.com\" instagram_11=\"https://instagram.com\" linkedin_11=\"https://linkedin.com\" name_12=\"Theresa Webb\" position_12=\"Marketing CEO\" image_12=\"general/team-4.png\" description_12=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_12=\"https://fb.com\" twitter_12=\"https://twitter.com\" instagram_12=\"https://instagram.com\" linkedin_12=\"https://linkedin.com\" name_13=\"Theresa Webb\" position_13=\"Marketing CEO\" image_13=\"general/team-5.png\" description_13=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_13=\"https://fb.com\" twitter_13=\"https://twitter.com\" instagram_13=\"https://instagram.com\" linkedin_13=\"https://linkedin.com\" name_14=\"Theresa Webb\" position_14=\"Marketing CEO\" image_14=\"general/team-6.png\" description_14=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_14=\"https://fb.com\" twitter_14=\"https://twitter.com\" instagram_14=\"https://instagram.com\" linkedin_14=\"https://linkedin.com\" name_15=\"Theresa Webb\" position_15=\"Marketing CEO\" image_15=\"general/team-7.png\" description_15=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_15=\"https://fb.com\" twitter_15=\"https://twitter.com\" instagram_15=\"https://instagram.com\" linkedin_15=\"https://linkedin.com\" name_16=\"Theresa Webb\" position_16=\"Marketing CEO\" image_16=\"general/team-8.png\" description_16=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_16=\"https://fb.com\" twitter_16=\"https://twitter.com\" instagram_16=\"https://instagram.com\" linkedin_16=\"https://linkedin.com\" ][/our-team]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\"][/testimonials]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(6,'Service','<div>[hero-banner title=\"Building the Work Ecosystem\" subtitle=\"Connect your conversations with the tools and services that you use to get the job done. With over 1,500 apps and a robust API\" image=\"general/banner3.png\" mini_image=\"general/banner4.png\" primary_title=\"Get Started\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-3\" quantity=\"2\" title_1=\"Projects done\" count_1=\"12\" extra_1=\"k\" image_1=\"general/icon-project-done.png\" title_2=\"Offices / Factories\" count_2=\"18\" image_2=\"general/icon-officer.png\"][/hero-banner]</div><div>[how-it-works title=\"What We Do\" subtitle=\"We’re always looking for new faces and fresh ideas\" style=\"style-5\" quantity=\"7\" title_1=\"Support Engineer\" subtitle_1=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_1=\"general/icon-support.png\" title_2=\"Web Developer\" subtitle_2=\"We become a bonafide agency with a tiny team of 3 and then hire our first developers\" image_2=\"general/icon-web.png\" title_3=\"Business Analyst\" subtitle_3=\"We create our first campaign for Kaleidoscope Tech and it goes viral\" image_3=\"general/icon-business.png\" title_4=\"Product Designer\" subtitle_4=\"With a growing body of work, we bring more artists, designers on board.\" image_4=\"general/icon-product.png\" title_5=\"Share stories\" subtitle_5=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_5=\"general/icon-share.png\" title_6=\"Support Engineer\" subtitle_6=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_6=\"general/icon-build.png\" title_7=\"Support Engineer\" subtitle_7=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_7=\"general/icon-team.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"From the big picture to every tiny detail, we got you covered.\" subtitle=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks.Take your career to next level. Apply to our team and see what we can do together. You’re good enough.\" highlight=\"Built Exclusively For You\" image=\"general/img-built.png\" mini_image=\"general/img-built-2.png\" style=\"style-2\" quantity=\"4\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Smart Installation Tools\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Introducing New Features\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Dynamic Boosting\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Standard\" subtitle_1=\"All the basics for businesses that are just getting started.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Essentials\" subtitle_2=\"All the basics for businesses that are just getting started.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Premium\" subtitle_3=\"Avvanced features for pros who need more customization.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(7,'Pricing','<div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Standard\" subtitle_1=\"All the basics for businesses that are just getting started.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Essentials\" subtitle_2=\"All the basics for businesses that are just getting started.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Premium\" subtitle_3=\"Avvanced features for pros who need more customization.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[how-it-works title=\"How It Works\" subtitle=\"Ac sapien purus tristique neque nibh vitae faucibus non phasellus vulputate nulla in eget amet, risus\" style=\"style-3\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" style=\"style-2\"][/testimonials]</div><div>[faq title=\"Frequently Asked Questions\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\"][/faq]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(8,'FAQs','<div>[faq-ask title=\"We are here to help you\" subtitle=\"We are collect your searching keywords to improve our services\"][/faq-ask]</div><div>[how-it-works title=\"Or choose a category\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\" style=\"style-6\" quantity=\"3\" title_1=\"Market research\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Strategic Consulting\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Cognitive Solution\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[faq title=\"Pricing Plan questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" style=\"style-2\" quantity=\"2\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Introducing New Features\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" primary_url=\"/\" secondary_url=\"/\"][/faq]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Standard\" subtitle_1=\"All the basics for businesses that are just getting started.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Essentials\" subtitle_2=\"All the basics for businesses that are just getting started.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Premium\" subtitle_3=\"Avvanced features for pros who need more customization.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[testimonials title=\"Still have a questions?\" subtitle=\"If you cannot find answer to your question in our FAQ, you can always\n contact us. We wil answer to you shortly! Meet our Support team\" style=\"style-3\"][/testimonials]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(9,'Homepage 2','<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"Digital Marketing Agency\" subtitle=\"Integrated workflow designed for product teams. We create world-class development and branding\" image=\"general/balance.png\" mini_image=\"general/payment.png\" bg_image_1=\"general/banner5.png\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-4\" quantity=\"3\" title_1=\"Happy Clients\" count_1=\"38\" extra_1=\"k\" title_2=\"Project Done\" count_2=\"45\" extra_2=\"k\" title_3=\"Client Satisfaction\" count_3=\"100\" extra_3=\"%\"][/hero-banner]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div><div>[how-it-works title=\"Discover powerful features to boost your productivity\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"Fresh Ideas. Thoughtful Design.\" subtitle=\"Feugiat primis ligula risus auctor egestas and augue viverra mauri tortor in iaculis magna a feugiat mauris ipsum and placerat viverra tortor gravida purus.\" highlight=\"What We Do, What You Get\" image=\"general/img-2.png\" mini_image=\"general/chart.png\" style=\"style-3\" quantity=\"3\" title_1=\"Work smarter with powerful features\" subtitle_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_1=\"general/icon-work.png\" title_2=\"Designed for teams of all sorts and sizes\" subtitle_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_2=\"general/icon-design.png\" title_3=\"Advanced analytics to grow your business\" subtitle_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_3=\"general/icon-advance.png\" ][/we-do-you-get]</div><div>[how-it-works title=\"Built exclusively for you\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"From the big picture to every tiny detail, we got you covered.\" subtitle=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks.Take your career to next level. Apply to our team and see what we can do together. You’re good enough.\" highlight=\"Built Exclusively For You\" image=\"general/img-built.png\" mini_image=\"general/img-built-2.png\" style=\"style-2\" quantity=\"4\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Smart Installation Tools\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Introducing New Features\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Dynamic Boosting\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" style=\"style-2\"][/testimonials]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Standard\" subtitle_1=\"All the basics for businesses that are just getting started.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Essentials\" subtitle_2=\"All the basics for businesses that are just getting started.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Premium\" subtitle_3=\"Avvanced features for pros who need more customization.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(10,'Homepage 3','<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"Digital Marketing Agency\" subtitle=\"Get a website to be found on the first page of Google avoid missing out on potential visitors and sales.\" primary_title=\"Start free trial\" primary_url=\"/\" secondary_title=\"Learn more\" secondary_url=\"/\" style=\"style-5\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Providing solutions of every kind\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication to publish news.\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"We believe that our works can contribute to a better world.\" subtitle=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks. Take your career to next level.\" highlight=\"What We Do, What You Get\" image=\"homepage1/img-7.png\" style=\"style-1\" quantity=\"4\" title_1=\"Automated reports\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Realtime analytics\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Funnel optimization\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"User journey\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[faq title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" style=\"style-2\" quantity=\"2\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Introducing New Features\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" primary_url=\"/\" secondary_url=\"/\"][/faq]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" highlight=\"Contact us\" image=\"general/email.png\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(11,'Homepage 4','<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"Digital Marketing Agency\" subtitle=\"Get a website to be found on the first page of Google avoid missing out on potential visitors and sales.\" image=\"general/banner6.png\" video_url=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" primary_title=\"Start free trial\" primary_url=\"/\" secondary_title=\"Learn more\" secondary_url=\"/\" style=\"style-6\" quantity=\"3\" title_1=\"Happy Clients\" count_1=\"5000\" extra_1=\"+\" title_2=\"Project Done\" count_2=\"756\" extra_2=\"+\" title_3=\"Client Satisfaction\" count_3=\"100\" extra_3=\"%\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Providing solutions of every kind\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication to publish news.\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"We believe that our works can contribute to a better world.\" subtitle=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks. Take your career to next level.\" highlight=\"What We Do, What You Get\" image=\"homepage1/img-7.png\" style=\"style-1\" quantity=\"4\" title_1=\"Automated reports\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Realtime analytics\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Funnel optimization\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"User journey\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" bg_color=\"#BEE1E6\" style=\"style-4\"][/testimonials]</div><div>[how-it-works title=\"Discover powerful features to boost your productivity\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Standard\" subtitle_1=\"All the basics for businesses that are just getting started.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Essentials\" subtitle_2=\"All the basics for businesses that are just getting started.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Premium\" subtitle_3=\"Avvanced features for pros who need more customization.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(12,'Homepage 5','<div>[hero-banner title=\"Let go of the challenge See yourself better\" highlight_text=\"Exclusive Smart Watch\" subtitle=\"Real-time display of data such as exercise duration, mileage, heart rate, etc\" image=\"general/banner9.png\" mini_image=\"general/chart.png\" bg_image_1=\"general/circle-1.png\" bg_image_2=\"general/circle-2.png\" style=\"style-10\" primary_url=\"/\" primary_title=\"Join Pre-Order\" title_1=\"Anti fingerprints\" title_2=\"Delicate touch\" title_3=\"Hardness screen\" title_4=\"Dust prevention\" title_5=\"3D anti-chip\" title_6=\"Impact resistant\"][/hero-banner]</div><div>[products-by-category title=\"\" category_id=\"1\"][/products-by-category]</div><div>[featured-products title=\"Featured Products\"][/featured-products]</div><div>[explore-by-categories title=\"Explore by Categories\" subtitle=\"We provide many categories, choose a category according to your expertise to make it easier to find a job.\" link=\"#\"][/explore-by-categories]</div><div>[how-it-works title=\"How It Works\" subtitle=\"Elevate your Employee Development Journey\" style=\"style-4\" quantity=\"5\" title_1=\"Start Plan\" subtitle_1=\"Choose any of our packages\" image_1=\"general/icon-start-plan.png\" title_2=\"Connect\" subtitle_2=\"Receive concepts In 24 hours\" image_2=\"general/icon-connect.png\" title_3=\"Match\" subtitle_3=\"Development Stage\" image_3=\"general/icon-match.png\" bg_color_3=\"#DBECE5\" title_4=\"Review\" subtitle_4=\"Project launch and checkout\" image_4=\"general/icon-review.png\" bg_color_4=\"#D1ECFD\" title_5=\"Complete\" subtitle_5=\"After-release Support\" image_5=\"general/icon-complete.png\" bg_color_5=\"#DBECE5\" ][/how-it-works]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(13,'Homepage 6','<div>[hero-banner title=\"The Fastest way to achieve success\" highlight_text=\"Digital Marketing Agency\" subtitle=\"It was popularised in the 1960s with the release sheets. We bring the right people together\" image=\"general/banner12.png\" bg_image_1=\"general/line-chart.png\" bg_image_2=\"general/balance.png\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-11\"][/hero-banner]</div><div>[we-do-you-get style=\"style-5\" quantity=\"3\" title_1=\"Computer for Designer, Art\" icon_1=\"fi fi-rr-camera\" image_1=\"general/img-7.png\" title_2=\"Computer for Designer, Art\" icon_2=\"fi fi-rr-briefcase\" image_2=\"general/img-8.png\" title_3=\"Computer for Designer, Art\" subtitle_3=\"Real-time display of data\" icon_3=\"fi fi-rr-building\" image_3=\"general/img-9.png\" ][/we-do-you-get]</div><div>[statistical title=\"Tell us about your business, we are ready to solve.\" primary_url=\"/\" primary_title=\"Get A Quote\" featured=\"Subscribe Newsletter;Get The Latest News\" style=\"style-2\" quantity=\"4\" title_1=\"Our Office\" subtitle_1=\"We always provide people a complete solution upon focused of any business\" count_1=\"38\" extra_1=\"k\" title_2=\"Completed Cases\" subtitle_2=\"We always provide people a complete solution upon focused of any business\" count_2=\"12\" extra_2=\"k+\" title_3=\"Countries / Offices\" subtitle_3=\"We always provide people a complete solution upon focused of any business\" count_3=\"17\" extra_3=\"k+\" title_4=\"Constant Clients\" subtitle_4=\"We always provide people a complete solution upon focused of any business\" count_4=\"18\" extra_4=\"k+\" ][/statistical]</div><div>[how-it-works title=\"\" subtitle=\"\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"Exceptional Solution for Digital Business Model\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication news while still not being ready.\" highlight=\"What We Do, What You Get\" image=\"general/img-6.png\" style=\"style-4\" quantity=\"4\" title_1=\"Boost your sale\" icon_1=\"fi fi-rr-leaf\" title_2=\"Smart Installation Tools\" icon_2=\"fi fi-rr-leaf\" title_3=\"Introducing New Features\" icon_3=\"fi fi-rr-leaf\" title_4=\"Dynamic Boosting\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[companies title=\"\" quantity=\"6\" title_1=\"Agon\" image_1=\"company/1.png\" link_1=\"#\" title_2=\"Monst\" image_2=\"company/2.png\" link_2=\"#\" title_3=\"Figwire\" image_3=\"company/3.png\" link_3=\"#\" title_4=\"Evara\" image_4=\"company/4.png\" link_4=\"#\" title_5=\"Frox\" image_5=\"company/5.png\" link_5=\"#\" title_6=\"Alithemes\" image_6=\"company/6.png\" link_6=\"#\" ][/companies]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(14,'Homepage 7','<div>[hero-banner title=\"Advanced analytics to grow your business\" subtitle=\"Feugiat primis ligula risus auctor egestas and augue viverra mauri tortor in iaculis magna a feugiat mauris ipsum and placerat viverra\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-12\"][/hero-banner]</div><div>[statistical style=\"style-3\" quantity=\"4\" title_1=\"Completed Cases\" subtitle_1=\"We always provide people a complete solution upon focused of any business\" count_1=\"27\" extra_1=\"k+\" title_2=\"Our Office\" subtitle_2=\"We always provide people a complete solution upon focused of any business\" count_2=\"12\" extra_2=\"k+\" title_3=\"Skilled People\" subtitle_3=\"We always provide people a complete solution upon focused of any business\" count_3=\"21\" extra_3=\"k+\" title_4=\"Happy Clients\" subtitle_4=\"We always provide people a complete solution upon focused of any business\" count_4=\"12\" extra_4=\"k+\" ][/statistical]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[we-do-you-get title=\"Our Process\" subtitle=\"How we work\" image=\"general/chart.png\" mini_image=\"general/safety.png\" background=\"general/img-10.png\" style=\"style-6\" quantity=\"4\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Smart Installation Tools\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Introducing New Features\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Dynamic Boosting\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[our-news title=\"Explore by Categories.\" subtitle=\"We provide many categories, choose a category according to your expertise to make it easier to find a job.\" number_of_displays=\"4\" style=\"style-3\" category_id=\"1\"][/our-news]</div><div>[our-news title=\"From Our Blog\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\" style=\"style-2\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(15,'Homepage 8','<div>[hero-banner title=\"Search Your Next Holiday from Our Destinations\" highlight_text=\"CHECK OUR BEST PROMOTIONS\" subtitle=\"Get a website to be found on the first page of Google to avoid missing out on potential visitors and sales.\" image=\"general/banner15.png\" bg_image_1=\"general/banner13.png\" bg_image_2=\"general/banner14.png\" primary_title=\"Search\" primary_url=\"/\" style=\"style-13\"][/hero-banner]</div><div>[we-do-you-get title=\"How does it works\" subtitle=\"We find the absolute best prices on hotels & flights then we pass these savings directly to you.\" image=\"general/img-11.png\" style=\"style-7\" quantity=\"4\" title_1=\"Account\" subtitle_1=\"All the necessary information to create your account are below this.\" image_1=\"general/user.png\" title_2=\"Select Destination\" subtitle_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_2=\"general/destination.png\" title_3=\"Book a Trip\" subtitle_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_3=\"general/trip.png\" title_4=\"Take your flight\" subtitle_4=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_4=\"general/flight.png\" ][/we-do-you-get]</div><div>[we-do-you-get title=\"A Simply Perfect Place To Get Lost\" subtitle=\"Feugiat primis ligula risus auctor egestas and augue viverra mauri tortor in iaculis magna a feugiat mauris ipsum and placerat viverra tortor gravida purus.\" image=\"general/img-12.png\" style=\"style-8\" quantity=\"2\" title_1=\"Best Price Guarantee\" subtitle_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_1=\"general/icon-work.png\" title_2=\"Easy & Quick Booking\" subtitle_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_2=\"general/icon-design.png\" ][/we-do-you-get]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\"][/testimonials]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'homepage',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(16,'Service 2','<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"analytics\" subtitle=\"Connect your conversations with the tools and services that you use to get the job done. With over 1,500 apps and a robust API\" image=\"general/banner10.png\" mini_image=\"general/banner3.png\" bg_image_1=\"general/banner11.png\" bg_image_2=\"general/banner4.png\" primary_title=\"Get Started\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-9\"][/hero-banner]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div><div>[how-it-works title=\"Building the Work Ecosystem\" subtitle=\"From year to year we strive to invent the most innovative technology that is used by both small and big enterprises\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[how-it-works title=\"What We Offer\" subtitle=\"What makes us different from others? We give holistic solutions with strategy, design & technology.\" style=\"style-1\" quantity=\"3\" title_1=\"Market research\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Strategic Consulting\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Cognitive Solution\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[faq title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" style=\"style-2\" quantity=\"2\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Introducing New Features\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" primary_url=\"/\" secondary_url=\"/\"][/faq]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(17,'Pricing 2','<div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" primary_title=\"Start free trial\" primary_url=\"/\" secondary_title=\"View plans comparison\" secondary_url=\"/\" style=\"style-3\" quantity=\"4\" title_1=\"Standard\" subtitle_1=\"Save %20\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom designs & features;Custom permissions\" uncheck_1=\"Custom instructors;Many devices\" title_2=\"Essentials\" subtitle_2=\"Save %20\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom designs & features;Custom permissions\" uncheck_2=\"Custom instructors;Many devices\" title_3=\"Premium\" subtitle_3=\"Save %20\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Custom instructors\" uncheck_3=\"Many devices\" title_4=\"Unlimited\" subtitle_4=\"Save %20\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Custom instructors;Many devices\" ][/quotation]</div><div>[how-it-works title=\"Providing solutions of every kind\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication to publish news.\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[how-it-works title=\"Discover powerful features to boost your productivity\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" highlight=\"Contact us\" image=\"general/email.png\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(18,'FAQs 2','<div>[faq-ask title=\"Join the community with more than 12,368 topics already created\" subtitle=\"Professional support team will solve your problem.\" style=\"style-2\"][/faq-ask]</div><div>[how-it-works title=\"Or choose a category\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\" style=\"style-6\" quantity=\"3\" title_1=\"Market research\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Strategic Consulting\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Cognitive Solution\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[faq title=\"\" subtitle=\"\" style=\"style-1\" quantity=\"1\"][/faq]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Standard\" subtitle_1=\"All the basics for businesses that are just getting started.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Essentials\" subtitle_2=\"All the basics for businesses that are just getting started.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Premium\" subtitle_3=\"Avvanced features for pros who need more customization.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[testimonials title=\"Still have a questions?\" subtitle=\"If you cannot find answer to your question in our FAQ, you can always\n contact us. We wil answer to you shortly! Meet our Support team\" style=\"style-3\"][/testimonials]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(19,'Career','<div>[hero-banner title=\"Working with us, the awesome team\" highlight_text=\"Success Together\" subtitle=\"Our focus is always on finding the best people to work with. Our bar is high, but you look ready to take on the challenge.\" primary_title=\"Join our team\" primary_url=\"/\" secondary_title=\"Learn more\" secondary_url=\"/\" style=\"style-5\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[we-facilitate title=\"Join a Workplace That Gives You More\" subtitle=\"Interactively transform magnetic growth strategies whereas prospective “outside the box” thinking.\" style=\"style-1\" quantity=\"3\" title_1=\"Design & Creatives\" subtitle_1=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_1=\"homepage1/business-strategy.png\" bottom_image_1=\"homepage1/business-white.png\" bg_color_1=\"#DBECE5\" title_2=\"Work and travel\" subtitle_2=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_2=\"homepage1/local.png\" bottom_image_2=\"homepage1/local-white.png\" bg_color_2=\"#D1ECFD\" title_3=\"Smart salary\" subtitle_3=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_3=\"homepage1/social.png\" bottom_image_3=\"homepage1/social-white.png\" bg_color_3=\"#FFF3EA\" ][/we-facilitate]</div><div>[how-it-works title=\"Or choose a category\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\" style=\"style-6\" quantity=\"3\" title_1=\"Market research\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Strategic Consulting\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Cognitive Solution\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[testimonials title=\"Why Our Team Is One Of The Best!\" subtitle=\"There are countless great reasons to work at our company and we hate to brag, but it’s too hard not to!\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[our-news title=\"From Our Blog\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(20,'Senior Full Stack Engineer, Creator Success Full Time','<div class=\"row\">\n <div class=\"col-lg-10 mx-auto\">\n <h2 class=\"text-heading-4\">Job Description</h2>\n <p class=\"text-body-text\">The AliStudio Design team has a vision to establish a trusted platform\n that enables productive and healthy enterprises in a world of digital and remote everything,\n constantly changing work patterns and norms, and the need for organizational resiliency.</p>\n <p class=\"text-body-text\">The ideal candidate will have strong creative skills and a portfolio of\n work which demonstrates their passion for illustrative design and typography. This candidate\n will have experiences in working with numerous different design platforms such as digital and\n print forms.</p>\n <p></p>\n <div>\n [youtube-video image=\"general/career-img.png\" with_container=\"no\"]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]\n </div>\n\n <h2 class=\"text-heading-4\">Essential Knowledge, Skills, and Experience</h2>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys\n </li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication\n artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals\n independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience\n </li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch\n </li>\n </ul>\n <p></p>\n <h2 class=\"text-heading-4\">Essential Knowledge, Skills, and Experience</h2>\n <ul>\n <li>Designing user experiences for enterprise software / services</li>\n <li>Creating and applying established design principles and interaction patterns</li>\n <li>Aligning or influencing design thinking with teams working in other geographies</li>\n </ul>\n <p></p>\n <h2 class=\"text-heading-4\">Essential Knowledge, Skills, and Experience</h2>\n <p>Product knowledge: Deeply understand the technology and features of the product area to which you\n are assigned.</p>\n <p>Research : Provide human and business impact and insights for products.</p>\n <p>Deliverables: Create deliverables for your product area (for example competitive analyses, user\n flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user\n problems through the user experience.</p>\n <p>Communication: Communicate the results of UX activities within your product area to the design\n team department, cross-functional partners within your product area, and other interested\n Superformula team members using clear language that simplifies complexity.</p>\n <div class=\"border-bottom mt-50 mb-50\"></div>\n <div>\n [apply-now primary_url=\"/\" primary_title=\"Apply now\" secondary_url=\"/contact\" secondary_title=\"Contact\"][/apply-now]\n </div> \n </div>\n</div>\n<div>\n [newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]\n</div>\n',1,NULL,'page-detail',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(21,'About Us 2','<div>[hero-banner title=\"Start Your Dream Business Today\" highlight_text=\"What We Do, What You Get\" subtitle=\"Integrated workflow designed for product teams. We create world-class development and branding\" image=\"general/banner7.png\" bg_color=\"#990099\" primary_title=\"Join Our Team\" primary_url=\"/\" secondary_title=\"Contact Us\" secondary_url=\"/\" style=\"style-7\" quantity=\"3\" title_1=\"Projects done\" count_1=\"12\" extra_1=\"k\" image_1=\"general/icon-project-done.png\" title_2=\"Offices / Factories\" count_2=\"28\" extra_2=\"k\" image_2=\"general/icon-officer.png\" title_3=\"Constant clients\" count_3=\"15\" extra_3=\"k\" image_3=\"general/icon-constant.png\"][/hero-banner]</div><div>[how-it-works title=\"How It Works\" subtitle=\"Elevate your Employee Development Journey\" style=\"style-4\" quantity=\"5\" title_1=\"Start Plan\" subtitle_1=\"Choose any of our packages\" image_1=\"general/icon-start-plan.png\" title_2=\"Connect\" subtitle_2=\"Receive concepts In 24 hours\" image_2=\"general/icon-connect.png\" title_3=\"Match\" subtitle_3=\"Development Stage\" image_3=\"general/icon-match.png\" bg_color_3=\"#DBECE5\" title_4=\"Review\" subtitle_4=\"Project launch and checkout\" image_4=\"general/icon-review.png\" bg_color_4=\"#D1ECFD\" title_5=\"Complete\" subtitle_5=\"After-release Support\" image_5=\"general/icon-complete.png\" bg_color_5=\"#DBECE5\" ][/how-it-works]</div><div>[our-news title=\"Learn about us\" subtitle=\"Know more about our potentiality\" number_of_displays=\"6\"][/our-news]</div><div>[faq title=\"Frequently Asked Questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\"][/faq]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" highlight=\"Contact us\" image=\"general/email.png\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" style=\"style-1\"][/testimonials]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(22,'About Us 3','<div>[hero-banner title=\"Our Story\" subtitle=\"We supply enterprises, organizations and institutes of high-tech industries with modern components. We build long-term trusting relationships with our customers and partnes for further fruitful cooperations.\" style=\"style-8\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-2.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Providing solutions of every kind\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication to publish news.\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[we-do-you-get title=\"An Exceptionally unique experience Tailored to you\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication news while still not being ready. Business advisory service advises current and future businesses prospects of a client\" highlight=\"What We Do, What You Get\" image=\"general/banner8.png\" style=\"style-1\" quantity=\"4\" title_1=\"Automated reports\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Realtime analytics\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Funnel optimization\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"User journey\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[statistical style=\"style-1\" quantity=\"4\" title_1=\"Years in Business\" count_1=\"5\" title_2=\"Projects Done\" count_2=\"6\" extra_2=\"k\" title_3=\"Countries / Offices\" count_3=\"12\" title_4=\"Constant Clients\" count_4=\"11\" extra_4=\"k\" ][/statistical]</div><div>[how-it-works title=\"Building the Work Ecosystem\" subtitle=\"From year to year we strive to invent the most innovative technology that is used by both small and big enterprises\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[our-news title=\"From Our Blog\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'),(23,'Blog - 2','<div>[page-header title=\"Our Blog\" subtitle=\"From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.\" bg_color=\"#F2F4F7\"][/page-header]</div><div>[our-news title=\"Featured Articles\" subtitle=\"From Our Blog And Event Fanpage\" number_of_displays=\"5\" type=\"featured\" style=\"style-2\"][/our-news]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"9\" style=\"style-4\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>',1,NULL,'default',NULL,'published','2023-01-22 08:09:25','2023-01-22 08:09:25'); /*!40000 ALTER TABLE `pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages_translations` -- DROP TABLE IF EXISTS `pages_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pages_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `pages_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`pages_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages_translations` -- LOCK TABLES `pages_translations` WRITE; /*!40000 ALTER TABLE `pages_translations` DISABLE KEYS */; INSERT INTO `pages_translations` VALUES ('vi',1,'Trang chủ',NULL,'<div>[hero-banner title=\"Chúng tôi là đội ngũ tuyệt vời cho giấc mơ kinh doanh của bạn\" highlight_text=\"đội ngũ tuyệt vời\" subtitle=\"Quy trình làm việc tích hợp được thiết kế cho các nhóm sản phẩm. Chúng tôi tạo ra sự phát triển và xây dựng thương hiệu đẳng cấp thế giới\" image=\"homepage1/banner.png\" bg_color=\"#990099\" bg_image_1=\"homepage1/bg-1.png\" bg_image_2=\"homepage1/bg-2.png\" video_url=\"https://www.youtube.com/embed/oRI37cOPBQQ\" video_bg=\"homepage1/video-bg.png\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"Learn More\" secondary_url=\"/\"][/hero-banner]</div><div>[companies title=\"\" quantity=\"6\" title_1=\"Agon\" image_1=\"company/1.png\" link_1=\"#\" title_2=\"Monst\" image_2=\"company/2.png\" link_2=\"#\" title_3=\"Figwire\" image_3=\"company/3.png\" link_3=\"#\" title_4=\"Evara\" image_4=\"company/4.png\" link_4=\"#\" title_5=\"Frox\" image_5=\"company/5.png\" link_5=\"#\" title_6=\"Alithemes\" image_6=\"company/6.png\" link_6=\"#\" ][/companies]</div><div>[we-are-trusted title=\"Xem lý do tại sao chúng tôi được tin cậy trên toàn thế giới\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" quantity=\"6\" tab_name_1=\"Xây dựng thương hiệu\" title_1=\"Tối ưu hóa và mở rộng quy mô, dễ dàng bắt đầu\" subtitle_1=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_1=\"/\" link_title_1=\"Xem thêm\" video_1=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_1=\"homepage1/img-1.jpg\" bg_color_1=\"#FFF3EA\" tab_name_2=\"Phát triển\" title_2=\"Xưởng thiết kế mà mọi người nên biết\" subtitle_2=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_2=\"/\" link_title_2=\"Xem thêm\" video_2=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_2=\"homepage1/img-2.jpg\" bg_color_2=\"#EAE4E9\" tab_name_3=\"Hoạt hình\" title_3=\"Chúng ta có thể pha trộn màu sắc theo nhiều cách\" subtitle_3=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_3=\"/\" link_title_3=\"Xem thêm\" video_3=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_3=\"homepage1/img-3.jpg\" bg_color_3=\"#FDE2E4\" tab_name_4=\"Kinh nghiệm người dùng\" title_4=\"Chọn kế hoạch tốt nhất cho bạn\" subtitle_4=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_4=\"/\" link_title_4=\"Xem thêm\" video_4=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_4=\"homepage1/img-4.jpg\" bg_color_4=\"#FAD2E1\" tab_name_5=\"Mạng xã hội\" title_5=\"Đăng ký bản tin của chúng tôi để nhận quà\" subtitle_5=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_5=\"/\" link_title_5=\"Xem thêm\" video_5=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_5=\"homepage1/img-5.jpg\" bg_color_5=\"#DBECE5\" tab_name_6=\"Tiếp thị\" title_6=\"Sẵn sàng để bắt đầu? Tạo và Tài khoản\" subtitle_6=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\" link_6=\"/\" link_title_6=\"Xem thêm\" video_6=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" image_6=\"homepage1/img-6.jpg\" bg_color_6=\"#BEE1E6\" ][/we-are-trusted]</div><div>[we-facilitate title=\"Chúng tôi tạo điều kiện thuận lợi cho việc tạo ra chiến lược và thiết kế\" subtitle=\"Chuyển đổi tương tác các chiến lược tăng trưởng từ tính trong khi tư duy “bên ngoài phạm vi” tương lai.\" style=\"style-1\" quantity=\"3\" title_1=\"Chiến lược kinh doanh\" subtitle_1=\"Bạn luôn được chào đón đến thăm hang nhỏ của chúng tôi. Chuyên nghiệp trong thủ công teir! Tất cả các sản phẩm đều cực kỳ tuyệt vời với sự chú ý mạnh mẽ đến chi tiết, tính năng và sự rung cảm tổng thể.\" image_1=\"homepage1/business-strategy.png\" bottom_image_1=\"homepage1/business-white.png\" bg_color_1=\"#DBECE5\" title_2=\"Tiếp thị địa phương\" subtitle_2=\"Bạn luôn được chào đón đến thăm hang nhỏ của chúng tôi. Chuyên nghiệp trong thủ công teir! Tất cả các sản phẩm đều cực kỳ tuyệt vời với sự chú ý mạnh mẽ đến chi tiết, tính năng và sự rung cảm tổng thể.\" image_2=\"homepage1/local.png\" bottom_image_2=\"homepage1/local-white.png\" bg_color_2=\"#D1ECFD\" title_3=\"Truyền thông xã hội\" subtitle_3=\"Bạn luôn được chào đón đến thăm hang nhỏ của chúng tôi. Chuyên nghiệp trong thủ công teir! Tất cả các sản phẩm đều cực kỳ tuyệt vời với sự chú ý mạnh mẽ đến chi tiết, tính năng và sự rung cảm tổng thể.\" image_3=\"homepage1/social.png\" bottom_image_3=\"homepage1/social-white.png\" bg_color_3=\"#FFF3EA\" ][/we-facilitate]</div><div>[we-do-you-get title=\"Chúng tôi tin rằng tác phẩm của chúng tôi có thể đóng góp cho một thế giới tốt đẹp hơn.\" subtitle=\"Cần thiết để cung cấp các chiến dịch bằng găng tay trắng, được quản lý đầy đủ vượt qua các điểm chuẩn của ngành. Đưa sự nghiệp của bạn lên một tầm cao mới.\" highlight=\"Những gì chúng tôi làm, những gì bạn nhận được\" image=\"homepage1/img-7.png\" style=\"style-1\" quantity=\"4\" title_1=\"Tăng doanh số bán hàng của bạn\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Công cụ cài đặt thông minh\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Giới thiệu các tính năng mới\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Tăng động\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[how-it-works title=\"Những gì chúng tôi cung cấp\" subtitle=\"Điều gì khiến chúng ta khác biệt với những người khác? Chúng tôi cung cấp các giải pháp toàn diện với chiến lược, thiết kế và công nghệ.\" style=\"style-1\" quantity=\"3\" title_1=\"Nghiên cứu thị trường\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Tư vấn chiến lược\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Giải pháp nhận thức\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\"][/testimonials]</div><div>[our-news title=\"Tin tức mới nhất\" subtitle=\"Từ blog của chúng tôi và fanpage Sự kiện\"][/our-news]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"3\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Nâng cao\" subtitle_2=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" title_3=\"Cao cấp\" subtitle_3=\"Các tính năng nâng cao dành cho những người chuyên nghiệp cần nhiều tùy chỉnh hơn.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[newsletter name=\"newsletter\" title=\"Đăng ký bản tin của chúng tôi\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',2,'Tin tức','From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','---'),('vi',3,'Liên hệ',NULL,'<div>[page-header title=\"Liên hệ\" subtitle=\"Equidem necessitatibus ei eam, ceteros expetenda hendrerit ei per, tation vituperatoribus ut.\"][/page-header]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"The right move at the right time saves your investment. live the dream of expanding your business.\" highlight=\"Liên hệ\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[our-location title=\"Our Location\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication to publish news.\" quantity=\"3\" title_1=\"Office\" address_1=\"205 North Michigan Avenue, Suite 810 Chicago, 60601, USA\" phone_1=\"(123) 456-7890\" email_1=\"contact@Evara.com\" image_1=\"general/icon-acquis.png\" title_2=\"Studio\" address_2=\"205 North Michigan Avenue, Suite 810 Chicago, 60601, USA\" phone_2=\"(123) 456-7890\" email_2=\"contact@Evara.com\" image_2=\"general/icon-active.png\" title_3=\"Factory\" address_3=\"205 North Michigan Avenue, Suite 810 Chicago, 60601, USA\" phone_3=\"(123) 456-7890\" email_3=\"contact@Evara.com\" image_3=\"general/icon-retent.png\" ][/our-location]</div>'),('vi',4,'Cookie Policy',NULL,'<h3>EU Cookie Consent</h3><p>Để sử dụng trang web này, chúng tôi đang sử dụng Cookie và thu thập một số Dữ liệu. Để tuân thủ GDPR của Liên minh Châu Âu, chúng tôi cho bạn lựa chọn nếu bạn cho phép chúng tôi sử dụng một số Cookie nhất định và thu thập một số Dữ liệu.</p><h4>Dữ liệu cần thiết</h4><p>Dữ liệu cần thiết là cần thiết để chạy Trang web bạn đang truy cập về mặt kỹ thuật. Bạn không thể hủy kích hoạt chúng.</p><p>- Session Cookie: PHP sử dụng Cookie để xác định phiên của người dùng. Nếu không có Cookie này, trang web sẽ không hoạt động.</p><p>- XSRF-Token Cookie: Laravel tự động tạo \"token\" CSRF cho mỗi phiên người dùng đang hoạt động do ứng dụng quản lý. Token này được sử dụng để xác minh rằng người dùng đã xác thực là người thực sự đưa ra yêu cầu đối với ứng dụng.</p>'),('vi',5,'About us',NULL,'<div>[hero-banner title=\"Một nhóm sáng tạo nhỏ hào hứng tạo ra những thứ đẹp đẽ\" highlight_text=\"What We Do, What You Get\" subtitle=\"Quy trình làm việc tích hợp được thiết kế cho các nhóm sản phẩm. Chúng tôi tạo ra sự phát triển và xây dựng thương hiệu đẳng cấp thế giới\" image=\"general/banner1.png\" bg_color=\"#990099\" bg_image_1=\"general/bg-about-1.png\" mini_image=\"general/banner2.png\" primary_title=\"Gia nhập đội ngũ\" primary_url=\"/\" secondary_title=\"Liên hệ\" secondary_url=\"/\" style=\"style-2\"][/hero-banner]</div><div>[statistical style=\"style-1\" quantity=\"4\" title_1=\"Năm kinh doanh\" count_1=\"5\" title_2=\"Dự án đã hoàn thành\" count_2=\"6\" extra_2=\"k\" title_3=\"Quốc gia / Văn phòng\" count_3=\"12\" title_4=\"Khách hàng cố định\" count_4=\"11\" extra_4=\"k\" ][/statistical]</div><div>[youtube-video title=\"What We Do, What You Get\" subtitle=\"We believe in the power of creative ideas\" image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Cung cấp các giải pháp của mọi loại\" subtitle=\"Trong bối cảnh chuyên nghiệp, thường xảy ra trường hợp khách hàng tư nhân hoặc doanh nghiệp đặt hàng một ấn phẩm để xuất bản tin tức.\" style=\"style-2\" quantity=\"3\" title_1=\"Thu thập\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Kích hoạt\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Giữ lại\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-facilitate title=\"Bringing the world’s ideas to life\" subtitle=\"Developers are trusted to create an engaging experience for their companies, so we build tools to help them.\" highlight=\"What We Do, What You Get\" style=\"style-2\" quantity=\"3\" title_1=\"Business Strategy\" subtitle_1=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_1=\"homepage1/business-strategy.png\" border_color_1=\"#FAD2E1\" bg_color_1=\"#DBECE5\" title_2=\"Local Marketing\" subtitle_2=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_2=\"homepage1/local.png\" border_color_2=\"#BEE1E6\" bg_color_2=\"#D1ECFD\" title_3=\"Social media\" subtitle_3=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_3=\"homepage1/social.png\" border_color_3=\"#FAD2E1\" bg_color_3=\"#FFF3EA\" ][/we-facilitate]</div><div>[our-team title=\"Đội ngũ của chúng tôi\" subtitle=\"Decades of experience in design and development\" quantity=\"16\" name_1=\"Theresa Webb\" position_1=\"Marketing CEO\" image_1=\"general/team-1.png\" description_1=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_1=\"https://fb.com\" twitter_1=\"https://twitter.com\" instagram_1=\"https://instagram.com\" linkedin_1=\"https://linkedin.com\" name_2=\"Theresa Webb\" position_2=\"Marketing CEO\" image_2=\"general/team-2.png\" description_2=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_2=\"https://fb.com\" twitter_2=\"https://twitter.com\" instagram_2=\"https://instagram.com\" linkedin_2=\"https://linkedin.com\" name_3=\"Theresa Webb\" position_3=\"Marketing CEO\" image_3=\"general/team-3.png\" description_3=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_3=\"https://fb.com\" twitter_3=\"https://twitter.com\" instagram_3=\"https://instagram.com\" linkedin_3=\"https://linkedin.com\" name_4=\"Theresa Webb\" position_4=\"Marketing CEO\" image_4=\"general/team-4.png\" description_4=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_4=\"https://fb.com\" twitter_4=\"https://twitter.com\" instagram_4=\"https://instagram.com\" linkedin_4=\"https://linkedin.com\" name_5=\"Theresa Webb\" position_5=\"Marketing CEO\" image_5=\"general/team-5.png\" description_5=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_5=\"https://fb.com\" twitter_5=\"https://twitter.com\" instagram_5=\"https://instagram.com\" linkedin_5=\"https://linkedin.com\" name_6=\"Theresa Webb\" position_6=\"Marketing CEO\" image_6=\"general/team-6.png\" description_6=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_6=\"https://fb.com\" twitter_6=\"https://twitter.com\" instagram_6=\"https://instagram.com\" linkedin_6=\"https://linkedin.com\" name_7=\"Theresa Webb\" position_7=\"Marketing CEO\" image_7=\"general/team-7.png\" description_7=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_7=\"https://fb.com\" twitter_7=\"https://twitter.com\" instagram_7=\"https://instagram.com\" linkedin_7=\"https://linkedin.com\" name_8=\"Theresa Webb\" position_8=\"Marketing CEO\" image_8=\"general/team-8.png\" description_8=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_8=\"https://fb.com\" twitter_8=\"https://twitter.com\" instagram_8=\"https://instagram.com\" linkedin_8=\"https://linkedin.com\" name_9=\"Theresa Webb\" position_9=\"Marketing CEO\" image_9=\"general/team-1.png\" description_9=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_9=\"https://fb.com\" twitter_9=\"https://twitter.com\" instagram_9=\"https://instagram.com\" linkedin_9=\"https://linkedin.com\" name_10=\"Theresa Webb\" position_10=\"Marketing CEO\" image_10=\"general/team-2.png\" description_10=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_10=\"https://fb.com\" twitter_10=\"https://twitter.com\" instagram_10=\"https://instagram.com\" linkedin_10=\"https://linkedin.com\" name_11=\"Theresa Webb\" position_11=\"Marketing CEO\" image_11=\"general/team-3.png\" description_11=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_11=\"https://fb.com\" twitter_11=\"https://twitter.com\" instagram_11=\"https://instagram.com\" linkedin_11=\"https://linkedin.com\" name_12=\"Theresa Webb\" position_12=\"Marketing CEO\" image_12=\"general/team-4.png\" description_12=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_12=\"https://fb.com\" twitter_12=\"https://twitter.com\" instagram_12=\"https://instagram.com\" linkedin_12=\"https://linkedin.com\" name_13=\"Theresa Webb\" position_13=\"Marketing CEO\" image_13=\"general/team-5.png\" description_13=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_13=\"https://fb.com\" twitter_13=\"https://twitter.com\" instagram_13=\"https://instagram.com\" linkedin_13=\"https://linkedin.com\" name_14=\"Theresa Webb\" position_14=\"Marketing CEO\" image_14=\"general/team-6.png\" description_14=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_14=\"https://fb.com\" twitter_14=\"https://twitter.com\" instagram_14=\"https://instagram.com\" linkedin_14=\"https://linkedin.com\" name_15=\"Theresa Webb\" position_15=\"Marketing CEO\" image_15=\"general/team-7.png\" description_15=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_15=\"https://fb.com\" twitter_15=\"https://twitter.com\" instagram_15=\"https://instagram.com\" linkedin_15=\"https://linkedin.com\" name_16=\"Theresa Webb\" position_16=\"Marketing CEO\" image_16=\"general/team-8.png\" description_16=\"Lorem ipsum dolor sit amet consectetur imp adipiscing elit justo\" facebook_16=\"https://fb.com\" twitter_16=\"https://twitter.com\" instagram_16=\"https://instagram.com\" linkedin_16=\"https://linkedin.com\" ][/our-team]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\"][/testimonials]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div>'),('vi',6,'Dịch vụ',NULL,'<div>[hero-banner title=\"Building the Work Ecosystem\" subtitle=\"Connect your conversations with the tools and services that you use to get the job done. With over 1,500 apps and a robust API\" image=\"general/banner3.png\" mini_image=\"general/banner4.png\" primary_title=\"Get Started\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-3\" quantity=\"2\" title_1=\"Projects done\" count_1=\"12\" extra_1=\"k\" image_1=\"general/icon-project-done.png\" title_2=\"Offices / Factories\" count_2=\"18\" image_2=\"general/icon-officer.png\"][/hero-banner]</div><div>[how-it-works title=\"What We Do\" subtitle=\"Chúng tôi luôn tìm kiếm những gương mặt mới và những ý tưởng mới\" style=\"style-5\" quantity=\"7\" title_1=\"Support Engineer\" subtitle_1=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_1=\"general/icon-support.png\" title_2=\"Web Developer\" subtitle_2=\"We become a bonafide agency with a tiny team of 3 and then hire our first developers\" image_2=\"general/icon-web.png\" title_3=\"Business Analyst\" subtitle_3=\"We create our first campaign for Kaleidoscope Tech and it goes viral\" image_3=\"general/icon-business.png\" title_4=\"Product Designer\" subtitle_4=\"With a growing body of work, we bring more artists, designers on board.\" image_4=\"general/icon-product.png\" title_5=\"Share stories\" subtitle_5=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_5=\"general/icon-share.png\" title_6=\"Support Engineer\" subtitle_6=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_6=\"general/icon-build.png\" title_7=\"Support Engineer\" subtitle_7=\"We commit to original work of the highest standard and giving credit where it’s due.\" image_7=\"general/icon-team.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"From the big picture to every tiny detail, we got you covered.\" subtitle=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks.Take your career to next level. Apply to our team and see what we can do together. You’re good enough.\" highlight=\"Built Exclusively For You\" image=\"general/img-built.png\" mini_image=\"general/img-built-2.png\" style=\"style-2\" quantity=\"4\" title_1=\"Tăng doanh số bán hàng của bạn\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Công cụ cài đặt thông minh\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Giới thiệu các tính năng mới\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Tăng động\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Nâng cao\" subtitle_2=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Cao cấp\" subtitle_3=\"Các tính năng nâng cao dành cho những người chuyên nghiệp cần nhiều tùy chỉnh hơn.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',7,'Bảng giá',NULL,'<div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Nâng cao\" subtitle_2=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Cao cấp\" subtitle_3=\"Các tính năng nâng cao dành cho những người chuyên nghiệp cần nhiều tùy chỉnh hơn.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[how-it-works title=\"Hoạt động như nào\" subtitle=\"Ac sapien purus tristique neque nibh vitae faucibus non phasellus vulputate nulla in eget amet, risus\" style=\"style-3\" quantity=\"3\" title_1=\"Thu thập\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Kích hoạt\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Giữ lại\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" style=\"style-2\"][/testimonials]</div><div>[faq title=\"Frequently Asked Questions\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\"][/faq]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',8,'FAQs',NULL,'<div>[faq-ask title=\"We are here to help you\" subtitle=\"We are collect your searching keywords to improve our services\"][/faq-ask]</div><div>[how-it-works title=\"Or choose a category\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\" style=\"style-6\" quantity=\"3\" title_1=\"Nghiên cứu thị trường\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Tư vấn chiến lược\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Giải pháp nhận thức\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[faq title=\"Pricing Plan questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" style=\"style-2\" quantity=\"2\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Introducing New Features\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" primary_url=\"/\" secondary_url=\"/\"][/faq]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Nâng cao\" subtitle_2=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Cao cấp\" subtitle_3=\"Các tính năng nâng cao dành cho những người chuyên nghiệp cần nhiều tùy chỉnh hơn.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[testimonials title=\"Still have a questions?\" subtitle=\"If you cannot find answer to your question in our FAQ, you can always\n contact us. We wil answer to you shortly! Meet our Support team\" style=\"style-3\"][/testimonials]</div>'),('vi',9,'Trang chủ 2',NULL,'<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"Digital Marketing Agency\" subtitle=\"Integrated workflow designed for product teams. We create world-class development and branding\" image=\"general/balance.png\" mini_image=\"general/payment.png\" bg_image_1=\"general/banner5.png\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-4\" quantity=\"3\" title_1=\"Happy Clients\" count_1=\"38\" extra_1=\"k\" title_2=\"Project Done\" count_2=\"45\" extra_2=\"k\" title_3=\"Client Satisfaction\" count_3=\"100\" extra_3=\"%\"][/hero-banner]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div><div>[how-it-works title=\"Discover powerful features to boost your productivity\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"Fresh Ideas. Thoughtful Design.\" subtitle=\"Feugiat primis ligula risus auctor egestas and augue viverra mauri tortor in iaculis magna a feugiat mauris ipsum and placerat viverra tortor gravida purus.\" highlight=\"What We Do, What You Get\" image=\"general/img-2.png\" mini_image=\"general/chart.png\" style=\"style-3\" quantity=\"3\" title_1=\"Làm việc thông minh hơn với các tính năng mạnh mẽ\" subtitle_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_1=\"general/icon-work.png\" title_2=\"Được thiết kế cho các nhóm thuộc mọi loại và quy mô\" subtitle_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_2=\"general/icon-design.png\" title_3=\"Phân tích nâng cao để phát triển doanh nghiệp của bạn\" subtitle_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_3=\"general/icon-advance.png\" ][/we-do-you-get]</div><div>[how-it-works title=\"Built exclusively for you\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-2\" quantity=\"3\" title_1=\"Thu thập\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Kích hoạt\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Giữ lại\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"From the big picture to every tiny detail, we got you covered.\" subtitle=\"Necessary to deliver white glove, fully managed campaigns that surpass industry benchmarks.Take your career to next level. Apply to our team and see what we can do together. You’re good enough.\" highlight=\"Built Exclusively For You\" image=\"general/img-built.png\" mini_image=\"general/img-built-2.png\" style=\"style-2\" quantity=\"4\" title_1=\"Tăng doanh số bán hàng của bạn\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Công cụ cài đặt thông minh\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Giới thiệu các tính năng mới\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Tăng động\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" style=\"style-2\"][/testimonials]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Nâng cao\" subtitle_2=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Cao cấp\" subtitle_3=\"Các tính năng nâng cao dành cho những người chuyên nghiệp cần nhiều tùy chỉnh hơn.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',10,'Trang chủ 3',NULL,'<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"Digital Marketing Agency\" subtitle=\"Get a website to be found on the first page of Google avoid missing out on potential visitors and sales.\" primary_title=\"Start free trial\" primary_url=\"/\" secondary_title=\"Learn more\" secondary_url=\"/\" style=\"style-5\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Cung cấp các giải pháp của mọi loại\" subtitle=\"Trong bối cảnh chuyên nghiệp, thường xảy ra trường hợp khách hàng tư nhân hoặc doanh nghiệp đặt hàng một ấn phẩm để xuất bản tin tức.\" style=\"style-2\" quantity=\"3\" title_1=\"Thu thập\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Kích hoạt\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Giữ lại\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"Chúng tôi tin rằng tác phẩm của chúng tôi có thể đóng góp cho một thế giới tốt đẹp hơn.\" subtitle=\"Cần thiết để cung cấp các chiến dịch bằng găng tay trắng, được quản lý đầy đủ vượt qua các điểm chuẩn của ngành. Đưa sự nghiệp của bạn lên một tầm cao mới.\" highlight=\"Những gì chúng tôi làm, những gì bạn nhận được\" image=\"homepage1/img-7.png\" style=\"style-1\" quantity=\"4\" title_1=\"Tăng doanh số bán hàng của bạn\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Công cụ cài đặt thông minh\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Giới thiệu các tính năng mới\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Tăng động\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[faq title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" style=\"style-2\" quantity=\"2\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Introducing New Features\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" primary_url=\"/\" secondary_url=\"/\"][/faq]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" highlight=\"Contact us\" image=\"general/email.png\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',11,'Trang chủ 4',NULL,'<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"Digital Marketing Agency\" subtitle=\"Get a website to be found on the first page of Google avoid missing out on potential visitors and sales.\" image=\"general/banner6.png\" video_url=\"https://www.youtube.com/watch?v=oRI37cOPBQQ\" primary_title=\"Start free trial\" primary_url=\"/\" secondary_title=\"Learn more\" secondary_url=\"/\" style=\"style-6\" quantity=\"3\" title_1=\"Happy Clients\" count_1=\"5000\" extra_1=\"+\" title_2=\"Project Done\" count_2=\"756\" extra_2=\"+\" title_3=\"Client Satisfaction\" count_3=\"100\" extra_3=\"%\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Cung cấp các giải pháp của mọi loại\" subtitle=\"Trong bối cảnh chuyên nghiệp, thường xảy ra trường hợp khách hàng tư nhân hoặc doanh nghiệp đặt hàng một ấn phẩm để xuất bản tin tức.\" style=\"style-2\" quantity=\"3\" title_1=\"Thu thập\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Kích hoạt\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Giữ lại\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"Chúng tôi tin rằng tác phẩm của chúng tôi có thể đóng góp cho một thế giới tốt đẹp hơn.\" subtitle=\"Cần thiết để cung cấp các chiến dịch bằng găng tay trắng, được quản lý đầy đủ vượt qua các điểm chuẩn của ngành. Đưa sự nghiệp của bạn lên một tầm cao mới.\" highlight=\"Những gì chúng tôi làm, những gì bạn nhận được\" image=\"homepage1/img-7.png\" style=\"style-1\" quantity=\"4\" title_1=\"Tăng doanh số bán hàng của bạn\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Công cụ cài đặt thông minh\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Giới thiệu các tính năng mới\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Tăng động\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" bg_color=\"#BEE1E6\" style=\"style-4\"][/testimonials]</div><div>[how-it-works title=\"Discover powerful features to boost your productivity\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Nâng cao\" subtitle_2=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Cao cấp\" subtitle_3=\"Các tính năng nâng cao dành cho những người chuyên nghiệp cần nhiều tùy chỉnh hơn.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',12,'Trang chủ 5',NULL,'<div>[hero-banner title=\"Let go of the challenge See yourself better\" highlight_text=\"Exclusive Smart Watch\" subtitle=\"Real-time display of data such as exercise duration, mileage, heart rate, etc\" image=\"general/banner9.png\" mini_image=\"general/chart.png\" bg_image_1=\"general/circle-1.png\" bg_image_2=\"general/circle-2.png\" style=\"style-10\" primary_url=\"/\" primary_title=\"Join Pre-Order\" title_1=\"Anti fingerprints\" title_2=\"Delicate touch\" title_3=\"Hardness screen\" title_4=\"Dust prevention\" title_5=\"3D anti-chip\" title_6=\"Impact resistant\"][/hero-banner]</div><div>[products-by-category title=\"\" category_id=\"1\"][/products-by-category]</div><div>[featured-products title=\"Featured Products For Pre-Order\"][/featured-products]</div><div>[explore-by-categories title=\"Explore by Categories\" subtitle=\"We provide many categories, choose a category according to your expertise to make it easier to find a job.\" link=\"#\"][/explore-by-categories]</div><div>[how-it-works title=\"Hoạt động như nào\" subtitle=\"Elevate your Employee Development Journey\" style=\"style-4\" quantity=\"5\" title_1=\"Bắt đầu kế hoạch\" subtitle_1=\"Chọn bất kỳ gói nào của chúng tôi\" image_1=\"general/icon-start-plan.png\" title_2=\"Liên kết\" subtitle_2=\"Nhận khái niệm trong 24 giờ\" image_2=\"general/icon-connect.png\" title_3=\"Match\" subtitle_3=\"Giai đoạn phát triển\" image_3=\"general/icon-match.png\" bg_color_3=\"#DBECE5\" title_4=\"Kiểm tra lại\" subtitle_4=\"Khởi động và kiểm tra dự án\" image_4=\"general/icon-review.png\" bg_color_4=\"#D1ECFD\" title_5=\"Hoàn thành\" subtitle_5=\"Hỗ trợ sau khi phát hành\" image_5=\"general/icon-complete.png\" bg_color_5=\"#DBECE5\" ][/how-it-works]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div>'),('vi',13,'Trang chủ 6',NULL,'<div>[hero-banner title=\"The Fastest way to achieve success\" highlight_text=\"Digital Marketing Agency\" subtitle=\"It was popularised in the 1960s with the release sheets. We bring the right people together\" image=\"general/banner12.png\" bg_image_1=\"general/line-chart.png\" bg_image_2=\"general/balance.png\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-11\"][/hero-banner]</div><div>[we-do-you-get style=\"style-5\" quantity=\"3\" title_1=\"Computer for Designer, Art\" icon_1=\"fi fi-rr-camera\" image_1=\"general/img-7.png\" title_2=\"Computer for Designer, Art\" icon_2=\"fi fi-rr-briefcase\" image_2=\"general/img-8.png\" title_3=\"Computer for Designer, Art\" subtitle_3=\"Real-time display of data\" icon_3=\"fi fi-rr-building\" image_3=\"general/img-9.png\" ][/we-do-you-get]</div><div>[statistical title=\"Tell us about your business, we are ready to solve.\" primary_url=\"/\" primary_title=\"Get A Quote\" featured=\"Subscribe Newsletter;Get The Latest News\" style=\"style-2\" quantity=\"4\" title_1=\"Our Office\" subtitle_1=\"We always provide people a complete solution upon focused of any business\" count_1=\"38\" extra_1=\"k\" title_2=\"Completed Cases\" subtitle_2=\"We always provide people a complete solution upon focused of any business\" count_2=\"12\" extra_2=\"k+\" title_3=\"Countries / Offices\" subtitle_3=\"We always provide people a complete solution upon focused of any business\" count_3=\"17\" extra_3=\"k+\" title_4=\"Constant Clients\" subtitle_4=\"We always provide people a complete solution upon focused of any business\" count_4=\"18\" extra_4=\"k+\" ][/statistical]</div><div>[how-it-works title=\"\" subtitle=\"\" style=\"style-2\" quantity=\"3\" title_1=\"Acquisition\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Activation\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Retention\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[we-do-you-get title=\"Exceptional Solution for Digital Business Model\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication news while still not being ready.\" highlight=\"What We Do, What You Get\" image=\"general/img-6.png\" style=\"style-4\" quantity=\"4\" title_1=\"Boost your sale\" icon_1=\"fi fi-rr-leaf\" title_2=\"Smart Installation Tools\" icon_2=\"fi fi-rr-leaf\" title_3=\"Introducing New Features\" icon_3=\"fi fi-rr-leaf\" title_4=\"Dynamic Boosting\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[companies title=\"\" quantity=\"6\" title_1=\"Agon\" image_1=\"company/1.png\" link_1=\"#\" title_2=\"Monst\" image_2=\"company/2.png\" link_2=\"#\" title_3=\"Figwire\" image_3=\"company/3.png\" link_3=\"#\" title_4=\"Evara\" image_4=\"company/4.png\" link_4=\"#\" title_5=\"Frox\" image_5=\"company/5.png\" link_5=\"#\" title_6=\"Alithemes\" image_6=\"company/6.png\" link_6=\"#\" ][/companies]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div>'),('vi',14,'Trang chủ 7',NULL,'<div>[hero-banner title=\"Advanced analytics to grow your business\" subtitle=\"Feugiat primis ligula risus auctor egestas and augue viverra mauri tortor in iaculis magna a feugiat mauris ipsum and placerat viverra\" primary_title=\"Get Start\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-12\"][/hero-banner]</div><div>[statistical style=\"style-3\" quantity=\"4\" title_1=\"Completed Cases\" subtitle_1=\"We always provide people a complete solution upon focused of any business\" count_1=\"27\" extra_1=\"k+\" title_2=\"Our Office\" subtitle_2=\"We always provide people a complete solution upon focused of any business\" count_2=\"12\" extra_2=\"k+\" title_3=\"Skilled People\" subtitle_3=\"We always provide people a complete solution upon focused of any business\" count_3=\"21\" extra_3=\"k+\" title_4=\"Happy Clients\" subtitle_4=\"We always provide people a complete solution upon focused of any business\" count_4=\"12\" extra_4=\"k+\" ][/statistical]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[we-do-you-get title=\"Our Process\" subtitle=\"How we work\" image=\"general/chart.png\" mini_image=\"general/safety.png\" background=\"general/img-10.png\" style=\"style-6\" quantity=\"4\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Smart Installation Tools\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Introducing New Features\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Dynamic Boosting\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[our-news title=\"Explore by Categories.\" subtitle=\"We provide many categories, choose a category according to your expertise to make it easier to find a job.\" number_of_displays=\"4\" style=\"style-3\" category_id=\"1\"][/our-news]</div><div>[our-news title=\"From Our Blog\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\" style=\"style-2\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',15,'Trang chủ 8',NULL,'<div>[hero-banner title=\"Search Your Next Holiday from Our Destinations\" highlight_text=\"CHECK OUR BEST PROMOTIONS\" subtitle=\"Get a website to be found on the first page of Google to avoid missing out on potential visitors and sales.\" image=\"general/banner15.png\" bg_image_1=\"general/banner13.png\" bg_image_2=\"general/banner14.png\" primary_title=\"Search\" primary_url=\"/\" style=\"style-13\"][/hero-banner]</div><div>[we-do-you-get title=\"How does it works\" subtitle=\"We find the absolute best prices on hotels & flights then we pass these savings directly to you.\" image=\"general/img-11.png\" style=\"style-7\" quantity=\"4\" title_1=\"Account\" subtitle_1=\"All the necessary information to create your account are below this.\" image_1=\"general/user.png\" title_2=\"Select Destination\" subtitle_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_2=\"general/destination.png\" title_3=\"Book a Trip\" subtitle_3=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_3=\"general/trip.png\" title_4=\"Take your flight\" subtitle_4=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_4=\"general/flight.png\" ][/we-do-you-get]</div><div>[we-do-you-get title=\"A Simply Perfect Place To Get Lost\" subtitle=\"Feugiat primis ligula risus auctor egestas and augue viverra mauri tortor in iaculis magna a feugiat mauris ipsum and placerat viverra tortor gravida purus.\" image=\"general/img-12.png\" style=\"style-8\" quantity=\"2\" title_1=\"Best Price Guarantee\" subtitle_1=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_1=\"general/icon-work.png\" title_2=\"Easy & Quick Booking\" subtitle_2=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" image_2=\"general/icon-design.png\" ][/we-do-you-get]</div><div>[testimonials title=\"Our Happy Customers\" subtitle=\"Know about our clients, we are a woldwide corporate brand\"][/testimonials]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',16,'Dịch vụ 2',NULL,'<div>[hero-banner title=\"Advanced analytics to grow your business\" highlight_text=\"analytics\" subtitle=\"Connect your conversations with the tools and services that you use to get the job done. With over 1,500 apps and a robust API\" image=\"general/balance.png\" mini_image=\"general/payment.png\" bg_image_1=\"general/banner5.png\" bg_image_2=\"general/banner5.png\" primary_title=\"Get Started\" primary_url=\"/\" secondary_title=\"How it works\" secondary_url=\"/\" style=\"style-9\"][/hero-banner]</div><div>[companies title=\"\" subtitle=\"Trusted by the world’s leading companies\" quantity=\"9\" title_0=\"Agon\" image_0=\"company/1.png\" link_0=\"#\" title_1=\"Monst\" image_1=\"company/2.png\" link_1=\"#\" title_2=\"Figwire\" image_2=\"company/3.png\" link_2=\"#\" title_3=\"Evara\" image_3=\"company/4.png\" link_3=\"#\" title_4=\"Frox\" image_4=\"company/5.png\" link_4=\"#\" title_5=\"Alithemes\" image_5=\"company/6.png\" link_5=\"#\" title_6=\"NestMart\" image_6=\"company/7.png\" link_6=\"#\" title_7=\"TheFlow\" image_7=\"company/8.png\" link_7=\"#\" title_8=\"stacker\" image_8=\"company/9.png\" link_8=\"#\" ][/companies]</div><div>[how-it-works title=\"Building the Work Ecosystem\" subtitle=\"From year to year we strive to invent the most innovative technology that is used by both small and big enterprises\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[how-it-works title=\"Những gì chúng tôi cung cấp\" subtitle=\"Điều gì khiến chúng ta khác biệt với những người khác? Chúng tôi cung cấp các giải pháp toàn diện với chiến lược, thiết kế và công nghệ.\" style=\"style-1\" quantity=\"3\" title_1=\"Nghiên cứu thị trường\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Tư vấn chiến lược\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Giải pháp nhận thức\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[faq title=\"Frequently asked questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\" style=\"style-2\" quantity=\"2\" title_1=\"Boost your sale\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Introducing New Features\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" primary_url=\"/\" secondary_url=\"/\"][/faq]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',17,'Bảng giá 2',NULL,'<div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" primary_title=\"Start free trial\" primary_url=\"/\" secondary_title=\"View plans comparison\" secondary_url=\"/\" style=\"style-3\" quantity=\"4\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tiết kiệm 20%\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom designs & features;Custom permissions\" uncheck_1=\"Custom instructors;Many devices\" title_2=\"Nâng cao\" subtitle_2=\"Tiết kiệm 20%\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom designs & features;Custom permissions\" uncheck_2=\"Custom instructors;Many devices\" title_3=\"Cao cấp\" subtitle_3=\"Tiết kiệm 20%\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Custom instructors\" uncheck_3=\"Many devices\" title_4=\"Unlimited\" subtitle_4=\"Save %20\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Custom instructors;Many devices\" ][/quotation]</div><div>[how-it-works title=\"Cung cấp các giải pháp của mọi loại\" subtitle=\"Trong bối cảnh chuyên nghiệp, thường xảy ra trường hợp khách hàng tư nhân hoặc doanh nghiệp đặt hàng một ấn phẩm để xuất bản tin tức.\" style=\"style-2\" quantity=\"3\" title_1=\"Thu thập\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Kích hoạt\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Giữ lại\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[how-it-works title=\"Discover powerful features to boost your productivity\" subtitle=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" highlight=\"Contact us\" image=\"general/email.png\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',18,'FAQs 2',NULL,'<div>[faq-ask title=\"Join the community with more than 12,368 topics already created\" subtitle=\"Professional support team will solve your problem.\" style=\"style-2\"][/faq-ask]</div><div>[how-it-works title=\"Or choose a category\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\" style=\"style-6\" quantity=\"3\" title_1=\"Nghiên cứu thị trường\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Tư vấn chiến lược\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Giải pháp nhận thức\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[faq title=\"\" subtitle=\"\" style=\"style-1\" quantity=\"1\"][/faq]</div><div>[quotation title=\"Choose The Best Plan That’s For You\" subtitle=\"\" style=\"style-1\" quantity=\"4\" title_1=\"Tiêu chuẩn\" subtitle_1=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_1=\"$35\" year_price_1=\"$420\" link_1=\"/\" checked_1=\"Unlimited updates;Custom permissions\" uncheck_1=\"Custom designs & features;Custom hashtags\" title_2=\"Nâng cao\" subtitle_2=\"Tất cả những điều cơ bản dành cho doanh nghiệp mới bắt đầu.\" month_price_2=\"$89\" year_price_2=\"$1068\" link_2=\"/\" checked_2=\"Unlimited updates;Custom permissions;Custom instructors\" uncheck_2=\"Optimize hashtags\" active_2=\"yes\" title_3=\"Cao cấp\" subtitle_3=\"Các tính năng nâng cao dành cho những người chuyên nghiệp cần nhiều tùy chỉnh hơn.\" month_price_3=\"$125\" year_price_3=\"$1500\" link_3=\"/\" checked_3=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" title_4=\"Unlimited\" subtitle_4=\"Avvanced features for pros who need more customization.\" month_price_4=\"$199\" year_price_4=\"$2388\" link_4=\"/\" checked_4=\"Unlimited updates;Custom designs & features;Custom permissions;Optimize hashtags;Custom instructors\" ][/quotation]</div><div>[testimonials title=\"Still have a questions?\" subtitle=\"If you cannot find answer to your question in our FAQ, you can always\n contact us. We wil answer to you shortly! Meet our Support team\" style=\"style-3\"][/testimonials]</div>'),('vi',19,'Career',NULL,'<div>[hero-banner title=\"Working with us, the awesome team\" highlight_text=\"Success Together\" subtitle=\"Our focus is always on finding the best people to work with. Our bar is high, but you look ready to take on the challenge.\" primary_title=\"Join our team\" primary_url=\"/\" secondary_title=\"Learn more\" secondary_url=\"/\" style=\"style-5\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-1.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[we-facilitate title=\"Join a Workplace That Gives You More\" subtitle=\"Interactively transform magnetic growth strategies whereas prospective “outside the box” thinking.\" style=\"style-1\" quantity=\"3\" title_1=\"Design & Creatives\" subtitle_1=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_1=\"homepage1/business-strategy.png\" bottom_image_1=\"homepage1/business-white.png\" bg_color_1=\"#DBECE5\" title_2=\"Work and travel\" subtitle_2=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_2=\"homepage1/local.png\" bottom_image_2=\"homepage1/local-white.png\" bg_color_2=\"#D1ECFD\" title_3=\"Smart salary\" subtitle_3=\"You are always welcome to visit our little den. Professional in teir craft! All products were super amazing with strong attension to details, comps and overall vibe.\" image_3=\"homepage1/social.png\" bottom_image_3=\"homepage1/social-white.png\" bg_color_3=\"#FFF3EA\" ][/we-facilitate]</div><div>[how-it-works title=\"Or choose a category\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque dolor primis a libero tempus, blandit and cursus varius and magnis sapien\" style=\"style-6\" quantity=\"3\" title_1=\"Nghiên cứu thị trường\" subtitle_1=\"One make creepeth, man bearing theira firmament.\" image_1=\"homepage1/market.png\" title_2=\"Tư vấn chiến lược\" subtitle_2=\"One make creepeth, man bearing theira firmament.\" image_2=\"homepage1/consulting.png\" title_3=\"Giải pháp nhận thức\" subtitle_3=\"One make creepeth, man bearing theira firmament.\" image_3=\"homepage1/cognity.png\" ][/how-it-works]</div><div>[testimonials title=\"Why Our Team Is One Of The Best!\" subtitle=\"There are countless great reasons to work at our company and we hate to brag, but it’s too hard not to!\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[our-news title=\"From Our Blog\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',20,'Senior Full Stack Engineer, Creator Success Full Time',NULL,'<div class=\"row\">\n <div class=\"col-lg-10 mx-auto\">\n <h2 class=\"text-heading-4\">Job Description</h2>\n <p class=\"text-body-text\">The AliStudio Design team has a vision to establish a trusted platform\n that enables productive and healthy enterprises in a world of digital and remote everything,\n constantly changing work patterns and norms, and the need for organizational resiliency.</p>\n <p class=\"text-body-text\">The ideal candidate will have strong creative skills and a portfolio of\n work which demonstrates their passion for illustrative design and typography. This candidate\n will have experiences in working with numerous different design platforms such as digital and\n print forms.</p>\n <p></p>\n <div>\n [youtube-video image=\"general/career-img.png\" with_container=\"no\"]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]\n </div>\n\n <h2 class=\"text-heading-4\">Essential Knowledge, Skills, and Experience</h2>\n <ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys\n </li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication\n artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals\n independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience\n </li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch\n </li>\n </ul>\n <p></p>\n <h2 class=\"text-heading-4\">Essential Knowledge, Skills, and Experience</h2>\n <ul>\n <li>Designing user experiences for enterprise software / services</li>\n <li>Creating and applying established design principles and interaction patterns</li>\n <li>Aligning or influencing design thinking with teams working in other geographies</li>\n </ul>\n <p></p>\n <h2 class=\"text-heading-4\">Essential Knowledge, Skills, and Experience</h2>\n <p>Product knowledge: Deeply understand the technology and features of the product area to which you\n are assigned.</p>\n <p>Research : Provide human and business impact and insights for products.</p>\n <p>Deliverables: Create deliverables for your product area (for example competitive analyses, user\n flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user\n problems through the user experience.</p>\n <p>Communication: Communicate the results of UX activities within your product area to the design\n team department, cross-functional partners within your product area, and other interested\n Superformula team members using clear language that simplifies complexity.</p>\n <div class=\"border-bottom mt-50 mb-50\"></div>\n <div>\n [apply-now primary_url=\"/\" primary_title=\"Apply now\" secondary_url=\"/contact\" secondary_title=\"Contact\"][/apply-now]\n </div> \n </div>\n</div>\n<div>\n [newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]\n</div>\n'),('vi',21,'Về chúng tôi 2',NULL,'<div>[hero-banner title=\"Start Your Dream Business Today\" highlight_text=\"What We Do, What You Get\" subtitle=\"Integrated workflow designed for product teams. We create world-class development and branding\" image=\"general/banner7.png\" bg_color=\"#990099\" primary_title=\"Join Our Team\" primary_url=\"/\" secondary_title=\"Contact Us\" secondary_url=\"/\" style=\"style-7\" quantity=\"3\" title_1=\"Projects done\" count_1=\"12\" extra_1=\"k\" image_1=\"general/icon-project-done.png\" title_2=\"Offices / Factories\" count_2=\"28\" extra_2=\"k\" image_2=\"general/icon-officer.png\" title_3=\"Constant clients\" count_3=\"15\" extra_3=\"k\" image_3=\"general/icon-constant.png\"][/hero-banner]</div><div>[how-it-works title=\"Hoạt động như nào\" subtitle=\"Elevate your Employee Development Journey\" style=\"style-4\" quantity=\"5\" title_1=\"Bắt đầu kế hoạch\" subtitle_1=\"Chọn bất kỳ gói nào của chúng tôi\" image_1=\"general/icon-start-plan.png\" title_2=\"Liên kết\" subtitle_2=\"Nhận khái niệm trong 24 giờ\" image_2=\"general/icon-connect.png\" title_3=\"Match\" subtitle_3=\"Giai đoạn phát triển\" image_3=\"general/icon-match.png\" bg_color_3=\"#DBECE5\" title_4=\"Kiểm tra lại\" subtitle_4=\"Khởi động và kiểm tra dự án\" image_4=\"general/icon-review.png\" bg_color_4=\"#D1ECFD\" title_5=\"Hoàn thành\" subtitle_5=\"Hỗ trợ sau khi phát hành\" image_5=\"general/icon-complete.png\" bg_color_5=\"#DBECE5\" ][/how-it-works]</div><div>[our-news title=\"Learn about us\" subtitle=\"Know more about our potentiality\" number_of_displays=\"6\"][/our-news]</div><div>[faq title=\"Frequently Asked Questions\" subtitle=\"Feeling inquisitive? Have a read through some of our FAQs or contact our supporters for help\"][/faq]</div><div>[contact-form title=\"Have an project in mind?\" subtitle=\"Aliquam a augue suscipit, luctus neque purus ipsum neque at dolor primis libero tempus, blandit\" highlight=\"Contact us\" image=\"general/email.png\" name=\"Agon Studio\" address=\"4517 Washington Ave. Manchester, Kentucky 39495\" phone=\"(239) 555-0108\" email=\"contact@agon.com\"][/contact-form]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" style=\"style-1\"][/testimonials]</div>'),('vi',22,'Về chúng tôi 3',NULL,'<div>[hero-banner title=\"Our Story\" subtitle=\"We supply enterprises, organizations and institutes of high-tech industries with modern components. We build long-term trusting relationships with our customers and partnes for further fruitful cooperations.\" style=\"style-8\"][/hero-banner]</div><div>[youtube-video image=\"general/bg-video-2.png\"]https://www.youtube.com/watch?v=oRI37cOPBQQ[/youtube-video]</div><div>[how-it-works title=\"Cung cấp các giải pháp của mọi loại\" subtitle=\"Trong bối cảnh chuyên nghiệp, thường xảy ra trường hợp khách hàng tư nhân hoặc doanh nghiệp đặt hàng một ấn phẩm để xuất bản tin tức.\" style=\"style-2\" quantity=\"3\" title_1=\"Thu thập\" subtitle_1=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_1=\"general/icon-acquis.png\" title_2=\"Kích hoạt\" subtitle_2=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_2=\"general/icon-active.png\" title_3=\"Giữ lại\" subtitle_3=\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit laborum — semper quis lectus nulla.\" image_3=\"general/icon-retent.png\" ][/how-it-works]</div><div>[testimonials title=\"Don’t take our word for it. See what our clients say.\" subtitle=\"Know about our clients, we are a woldwide corporate brand\" highlight=\"Built Exclusively For You\" link=\"/\" style=\"style-4\"][/testimonials]</div><div>[we-do-you-get title=\"An Exceptionally unique experience Tailored to you\" subtitle=\"In a professional context it often happens that private or corporate clients order a publication news while still not being ready. Business advisory service advises current and future businesses prospects of a client\" highlight=\"Những gì chúng tôi làm, những gì bạn nhận được\" image=\"general/banner8.png\" style=\"style-1\" quantity=\"4\" title_1=\"Tăng doanh số bán hàng của bạn\" subtitle_1=\"The latest design trends meet hand-crafted templates.\" icon_1=\"fi fi-rr-leaf\" title_2=\"Công cụ cài đặt thông minh\" subtitle_2=\"The latest design trends meet hand-crafted templates.\" icon_2=\"fi fi-rr-leaf\" title_3=\"Giới thiệu các tính năng mới\" subtitle_3=\"The latest design trends meet hand-crafted templates.\" icon_3=\"fi fi-rr-leaf\" title_4=\"Tăng động\" subtitle_4=\"The latest design trends meet hand-crafted templates.\" icon_4=\"fi fi-rr-leaf\" ][/we-do-you-get]</div><div>[statistical style=\"style-1\" quantity=\"4\" title_1=\"Năm kinh doanh\" count_1=\"5\" title_2=\"Dự án đã hoàn thành\" count_2=\"6\" extra_2=\"k\" title_3=\"Quốc gia / Văn phòng\" count_3=\"12\" title_4=\"Khách hàng cố định\" count_4=\"11\" extra_4=\"k\" ][/statistical]</div><div>[how-it-works title=\"Building the Work Ecosystem\" subtitle=\"From year to year we strive to invent the most innovative technology that is used by both small and big enterprises\" style=\"style-7\" quantity=\"2\" title_1=\"Cross-Platform\" subtitle_1=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_1=\"general/temp-1.png\" title_2=\"Extremely Flexible\" subtitle_2=\"Your site is not complete with only landings. Get essential inner pages using our ready demos.\" image_2=\"general/temp-2.png\" ][/how-it-works]</div><div>[our-news title=\"From Our Blog\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"6\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'),('vi',23,'Tin tức - 2',NULL,'<div>[page-header title=\"Our Blog\" subtitle=\"From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.\" bg_color=\"#F2F4F7\"][/page-header]</div><div>[our-news title=\"Featured Articles\" subtitle=\"From Our Blog And Event Fanpage\" number_of_displays=\"5\" type=\"featured\" style=\"style-2\"][/our-news]</div><div>[our-news title=\"Latest news\" subtitle=\"From Our blog and Event fanpage\" number_of_displays=\"9\" style=\"style-4\"][/our-news]</div><div>[newsletter name=\"newsletter\" title=\"Subscribe our newsletter\" subtitle=\"By clicking the button, you are agreeing with our Term & Conditions\" link=\"/\" text_link=\"Term & Conditions\" image=\"general/img-newsletter.png\" mini_image=\"general/chart.png\"][/newsletter]</div>'); /*!40000 ALTER TABLE `pages_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_resets` -- LOCK TABLES `password_resets` WRITE; /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `payments` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `currency` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` int unsigned NOT NULL DEFAULT '0', `charge_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_channel` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(15,2) unsigned NOT NULL, `order_id` int unsigned DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'pending', `payment_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'confirm', `customer_id` int unsigned DEFAULT NULL, `refunded_amount` decimal(15,2) unsigned DEFAULT NULL, `refund_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payments` -- LOCK TABLES `payments` WRITE; /*!40000 ALTER TABLE `payments` DISABLE KEYS */; INSERT INTO `payments` VALUES (1,'USD',0,'BNLTX9SCGH','razorpay',NULL,4088.00,1,'completed','confirm',6,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(2,'USD',0,'M5Z9UA5LGO','paystack',NULL,1029.25,2,'completed','confirm',4,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(3,'USD',0,'ENIQUPHPVM','stripe',NULL,1887.50,3,'completed','confirm',9,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(4,'USD',0,'OGUMLL1SVZ','stripe',NULL,8331.00,4,'completed','confirm',6,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(5,'USD',0,'UMD2OBINYS','stripe',NULL,4431.00,5,'completed','confirm',8,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(6,'USD',0,'ACJAQFLQAE','stripe',NULL,8256.00,6,'completed','confirm',5,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(7,'USD',0,'LIKCWHF5WL','cod',NULL,6184.00,7,'pending','confirm',8,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(8,'USD',0,'OKGMVYNMWZ','stripe',NULL,6470.50,8,'completed','confirm',4,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(9,'USD',0,'ZTFLUJFL87','paypal',NULL,5969.00,9,'completed','confirm',8,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(10,'USD',0,'6CU28EVNA7','cod',NULL,6367.00,10,'pending','confirm',7,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(11,'USD',0,'49KK2TUITO','paypal',NULL,6293.00,11,'completed','confirm',7,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(12,'USD',0,'VOWJWFPM5J','paypal',NULL,2351.00,12,'completed','confirm',1,NULL,NULL,'2023-01-22 08:10:05','2023-01-22 08:10:05','Botble\\Ecommerce\\Models\\Customer',NULL),(13,'USD',0,'JBKC0CIJQR','stripe',NULL,4953.00,13,'completed','confirm',4,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL),(14,'USD',0,'H0AYSUYDH8','paypal',NULL,1979.00,14,'completed','confirm',1,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL),(15,'USD',0,'SKFJWE8FOE','stripe',NULL,974.50,15,'completed','confirm',9,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL),(16,'USD',0,'DEAGZM9EUO','cod',NULL,5334.00,16,'pending','confirm',2,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL),(17,'USD',0,'0T7LYEFIZL','cod',NULL,4257.00,17,'pending','confirm',8,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL),(18,'USD',0,'SPNHENW0KA','razorpay',NULL,4841.00,18,'completed','confirm',6,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL),(19,'USD',0,'WG88WLT52E','bank_transfer',NULL,4283.00,19,'pending','confirm',9,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL),(20,'USD',0,'LFHMOHYCSJ','paystack',NULL,5412.00,20,'completed','confirm',9,NULL,NULL,'2023-01-22 08:10:06','2023-01-22 08:10:06','Botble\\Ecommerce\\Models\\Customer',NULL); /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `personal_access_tokens` -- DROP TABLE IF EXISTS `personal_access_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `personal_access_tokens` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `personal_access_tokens_token_unique` (`token`), KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `personal_access_tokens` -- LOCK TABLES `personal_access_tokens` WRITE; /*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `post_categories` -- DROP TABLE IF EXISTS `post_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `post_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `category_id` int unsigned NOT NULL, `post_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `post_categories_category_id_index` (`category_id`), KEY `post_categories_post_id_index` (`post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `post_categories` -- LOCK TABLES `post_categories` WRITE; /*!40000 ALTER TABLE `post_categories` DISABLE KEYS */; INSERT INTO `post_categories` VALUES (1,4,1),(2,6,1),(3,2,2),(4,5,2),(5,4,3),(6,5,3),(7,2,4),(8,7,4),(9,4,5),(10,7,5),(11,4,6),(12,6,6),(13,4,7),(14,5,7),(15,4,8),(16,6,8),(17,3,9),(18,7,9),(19,1,10),(20,5,10),(21,2,11),(22,7,11),(23,4,12),(24,7,12),(25,4,13),(26,7,13),(27,3,14),(28,7,14),(29,3,15),(30,5,15),(31,4,16),(32,5,16); /*!40000 ALTER TABLE `post_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `post_tags` -- DROP TABLE IF EXISTS `post_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `post_tags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tag_id` int unsigned NOT NULL, `post_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `post_tags_tag_id_index` (`tag_id`), KEY `post_tags_post_id_index` (`post_id`) ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `post_tags` -- LOCK TABLES `post_tags` WRITE; /*!40000 ALTER TABLE `post_tags` DISABLE KEYS */; INSERT INTO `post_tags` VALUES (1,1,1),(2,2,1),(3,3,1),(4,4,1),(5,5,1),(6,1,2),(7,2,2),(8,3,2),(9,4,2),(10,5,2),(11,1,3),(12,2,3),(13,3,3),(14,4,3),(15,5,3),(16,1,4),(17,2,4),(18,3,4),(19,4,4),(20,5,4),(21,1,5),(22,2,5),(23,3,5),(24,4,5),(25,5,5),(26,1,6),(27,2,6),(28,3,6),(29,4,6),(30,5,6),(31,1,7),(32,2,7),(33,3,7),(34,4,7),(35,5,7),(36,1,8),(37,2,8),(38,3,8),(39,4,8),(40,5,8),(41,1,9),(42,2,9),(43,3,9),(44,4,9),(45,5,9),(46,1,10),(47,2,10),(48,3,10),(49,4,10),(50,5,10),(51,1,11),(52,2,11),(53,3,11),(54,4,11),(55,5,11),(56,1,12),(57,2,12),(58,3,12),(59,4,12),(60,5,12),(61,1,13),(62,2,13),(63,3,13),(64,4,13),(65,5,13),(66,1,14),(67,2,14),(68,3,14),(69,4,14),(70,5,14),(71,1,15),(72,2,15),(73,3,15),(74,4,15),(75,5,15),(76,1,16),(77,2,16),(78,3,16),(79,4,16),(80,5,16); /*!40000 ALTER TABLE `post_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `posts` -- DROP TABLE IF EXISTS `posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `posts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `author_id` int NOT NULL, `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `views` int unsigned NOT NULL DEFAULT '0', `format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `status` (`status`), KEY `author_id` (`author_id`), KEY `author_type` (`author_type`), KEY `created_at` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `posts` -- LOCK TABLES `posts` WRITE; /*!40000 ALTER TABLE `posts` DISABLE KEYS */; INSERT INTO `posts` VALUES (1,'The Top 2020 Handbag Trends to Know','Non aut neque aut fugit laborum. Esse ex qui excepturi laboriosam ut mollitia quae. Quos qui molestiae sunt quae id nemo sit. Nulla iusto quia ut hic totam ut nemo.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',1273,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(2,'Top Search Engine Optimization Strategies!','Sint atque et aliquid nisi dolor alias. Qui ut aut maxime aut magni aliquam perspiciatis totam. Illum sed illum quae tempora qui. Similique beatae sed amet nulla at illo.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',2408,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(3,'Which Company Would You Choose?','Fugit facilis a vero. Commodi adipisci tempore omnis totam inventore qui ullam dicta. Explicabo ad ut sunt aut.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',769,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(4,'Used Car Dealer Sales Tricks Exposed','Id qui et quia repellendus omnis. Laudantium rem sunt optio sapiente consequatur aut. Animi nam vel aperiam et officiis. Iusto eligendi culpa inventore deserunt dolor deserunt.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',1831,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(5,'20 Ways To Sell Your Product Faster','Et sapiente similique et facilis dicta repellat voluptatem. Et et id saepe atque iste quisquam ut. Placeat porro reprehenderit cum quisquam.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',867,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(6,'The Secrets Of Rich And Famous Writers','Laboriosam ut quasi incidunt molestiae. Fuga et dolor earum ullam repellendus. Sit mollitia rerum et suscipit consequatur quibusdam. Et eveniet possimus autem et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',2446,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(7,'Imagine Losing 20 Pounds In 14 Days!','Unde qui nisi nihil quia dolor eum voluptatem. Sed et eaque beatae. Similique distinctio ducimus cumque iste ut tempore dignissimos. Alias dignissimos blanditiis quas aut veniam.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/7.jpg',765,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(8,'Are You Still Using That Slow, Old Typewriter?','Ex occaecati perspiciatis qui. Atque placeat culpa temporibus ipsam omnis et id est. Fuga occaecati totam tenetur reprehenderit quo eaque quis.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/8.jpg',1043,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(9,'A Skin Cream That’s Proven To Work','Dolor eveniet fuga labore est eveniet molestiae aut. Odio suscipit ab consequuntur voluptas quia. Eos et explicabo molestiae voluptatem et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/9.jpg',1028,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(10,'10 Reasons To Start Your Own, Profitable Website!','Doloremque dolores et in adipisci. Amet culpa est fugiat atque. Cupiditate ratione et atque ex. Expedita voluptatem id laudantium beatae et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/10.jpg',1785,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(11,'Simple Ways To Reduce Your Unwanted Wrinkles!','Velit qui et velit dolores tempore cumque. Veniam sint et ad a molestias. Totam harum et excepturi voluptatum.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/11.jpg',318,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(12,'Apple iMac with Retina 5K display review','Culpa aut sit dicta dolor aut explicabo. Impedit eaque enim reiciendis. Eveniet natus qui ut autem pariatur optio tenetur saepe. Qui tenetur rerum est aut quis. Autem eum non nisi cumque et et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/12.jpg',552,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(13,'10,000 Web Site Visitors In One Month:Guaranteed','Expedita animi ab incidunt sunt minus neque. Corporis sint est quia et itaque eveniet autem in. Hic nam non hic et necessitatibus sed non.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/13.jpg',267,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(14,'Unlock The Secrets Of Selling High Ticket Items','Ratione omnis tempore nisi illum quia incidunt unde. Voluptas suscipit illum tempore aut ut officia quaerat accusantium. Iste tenetur autem eos harum est.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/14.jpg',2318,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(15,'4 Expert Tips On How To Choose The Right Men’s Wallet','Voluptates nihil reiciendis laboriosam aperiam. Accusamus qui dolorem et est sint. Sit accusantium velit consequuntur nisi laborum. Et voluptate deserunt delectus facilis et architecto.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/15.jpg',1850,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'),(16,'Sexy Clutches: How to Buy & Wear a Designer Clutch Bag','Consectetur culpa molestiae voluptas tempora. Quis et saepe est vel non sint. Aut nobis quo autem. Minus recusandae maiores ab molestiae et nostrum quis dolorum.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n ','published',1,'Botble\\ACL\\Models\\User',0,'news/16.jpg',470,NULL,'2023-01-22 08:09:26','2023-01-22 08:09:26'); /*!40000 ALTER TABLE `posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `posts_translations` -- DROP TABLE IF EXISTS `posts_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `posts_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `posts_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`posts_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `posts_translations` -- LOCK TABLES `posts_translations` WRITE; /*!40000 ALTER TABLE `posts_translations` DISABLE KEYS */; INSERT INTO `posts_translations` VALUES ('vi',1,'Xu hướng túi xách hàng đầu năm 2020 cần biết','Non aut neque aut fugit laborum. Esse ex qui excepturi laboriosam ut mollitia quae. Quos qui molestiae sunt quae id nemo sit. Nulla iusto quia ut hic totam ut nemo.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',2,'Các Chiến lược Tối ưu hóa Công cụ Tìm kiếm Hàng đầu!','Sint atque et aliquid nisi dolor alias. Qui ut aut maxime aut magni aliquam perspiciatis totam. Illum sed illum quae tempora qui. Similique beatae sed amet nulla at illo.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',3,'Bạn sẽ chọn công ty nào?','Fugit facilis a vero. Commodi adipisci tempore omnis totam inventore qui ullam dicta. Explicabo ad ut sunt aut.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',4,'Lộ ra các thủ đoạn bán hàng của đại lý ô tô đã qua sử dụng','Id qui et quia repellendus omnis. Laudantium rem sunt optio sapiente consequatur aut. Animi nam vel aperiam et officiis. Iusto eligendi culpa inventore deserunt dolor deserunt.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',5,'20 Cách Bán Sản phẩm Nhanh hơn','Et sapiente similique et facilis dicta repellat voluptatem. Et et id saepe atque iste quisquam ut. Placeat porro reprehenderit cum quisquam.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',6,'Bí mật của những nhà văn giàu có và nổi tiếng','Laboriosam ut quasi incidunt molestiae. Fuga et dolor earum ullam repellendus. Sit mollitia rerum et suscipit consequatur quibusdam. Et eveniet possimus autem et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',7,'Hãy tưởng tượng bạn giảm 20 bảng Anh trong 14 ngày!','Unde qui nisi nihil quia dolor eum voluptatem. Sed et eaque beatae. Similique distinctio ducimus cumque iste ut tempore dignissimos. Alias dignissimos blanditiis quas aut veniam.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',8,'Bạn vẫn đang sử dụng máy đánh chữ cũ, chậm đó?','Ex occaecati perspiciatis qui. Atque placeat culpa temporibus ipsam omnis et id est. Fuga occaecati totam tenetur reprehenderit quo eaque quis.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',9,'Một loại kem dưỡng da đã được chứng minh hiệu quả','Dolor eveniet fuga labore est eveniet molestiae aut. Odio suscipit ab consequuntur voluptas quia. Eos et explicabo molestiae voluptatem et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',10,'10 Lý do Để Bắt đầu Trang web Có Lợi nhuận của Riêng Bạn!','Doloremque dolores et in adipisci. Amet culpa est fugiat atque. Cupiditate ratione et atque ex. Expedita voluptatem id laudantium beatae et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',11,'Những cách đơn giản để giảm nếp nhăn không mong muốn của bạn!','Velit qui et velit dolores tempore cumque. Veniam sint et ad a molestias. Totam harum et excepturi voluptatum.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',12,'Đánh giá Apple iMac với màn hình Retina 5K','Culpa aut sit dicta dolor aut explicabo. Impedit eaque enim reiciendis. Eveniet natus qui ut autem pariatur optio tenetur saepe. Qui tenetur rerum est aut quis. Autem eum non nisi cumque et et.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',13,'10.000 Khách truy cập Trang Web Trong Một Tháng: Được Đảm bảo','Expedita animi ab incidunt sunt minus neque. Corporis sint est quia et itaque eveniet autem in. Hic nam non hic et necessitatibus sed non.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',14,'Mở khóa Bí mật Bán được vé Cao','Ratione omnis tempore nisi illum quia incidunt unde. Voluptas suscipit illum tempore aut ut officia quaerat accusantium. Iste tenetur autem eos harum est.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',15,'4 Lời khuyên của Chuyên gia về Cách Chọn Ví Nam Phù hợp','Voluptates nihil reiciendis laboriosam aperiam. Accusamus qui dolorem et est sint. Sit accusantium velit consequuntur nisi laborum. Et voluptate deserunt delectus facilis et architecto.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '),('vi',16,'Sexy Clutches: Cách Mua & Đeo Túi Clutch Thiết kế','Consectetur culpa molestiae voluptas tempora. Quis et saepe est vel non sint. Aut nobis quo autem. Minus recusandae maiores ab molestiae et nostrum quis dolorum.','<p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until.</p><p>[youtube-video]https://www.youtube.com/watch?v=SlPhMPnQ58k[/youtube-video]</p> <hr class=\"wp-block-separator is-style-dots\">\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness <a href=\"#\">nightingale</a> the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <figure class=\"wp-block-gallery columns-3 wp-block-image\">\n <ul class=\"blocks-gallery-grid\">\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-2.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-3.jpg\" alt=\"\"></a></li>\n <li class=\"blocks-gallery-item\"><a href=\"#\"><img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-4.jpg\" alt=\"\"></a></li>\n </ul>\n <figcaption> <i class=\"ti-credit-card mr-5\"></i>Image credit: Behance </figcaption>\n </figure>\n <hr>\n <p>Yet more some certainly yet alas abandonedly whispered <a href=\"#\">intriguingly</a><sup><a href=\"#\">[2]</a></sup> well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less <a href=\"#\">however</a> hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n <h2>The Guitar Legends</h2>\n <p>Furrowed this in the upset <a href=\"#\">some across</a><sup><a href=\"#\">[3]</a></sup> tiger oh loaded house gosh whispered <a href=\"#\">faltering alas</a><sup><a href=\"#\">[4]</a></sup> ouch cuckoo coward in scratched undid together bit fumblingly so besides salamander heron during the jeepers hello fitting jauntily much smoothly globefish darn blessedly far so along bluebird leopard and.</p>\n <blockquote>\n <p>Integer eu faucibus <a href=\"#\">dolor</a><sup><a href=\"#\">[5]</a></sup>. Ut venenatis tincidunt diam elementum imperdiet. Etiam accumsan semper nisl eu congue. Sed aliquam magna erat, ac eleifend lacus rhoncus in.</p>\n </blockquote>\n <p>Fretful human far recklessly while caterpillar well a well blubbered added one a some far whispered rampantly whispered while irksome far clung irrespective wailed more rosily and where saluted while black dear so yikes as considering recast to some crass until cow much less and rakishly overdrew consistent for by responsible oh one hypocritical less bastard hey oversaw zebra browbeat a well.</p>\n <h3>Getting Crypto Rich</h3>\n <hr class=\"wp-block-separator is-style-wide\">\n <div class=\"wp-block-image\">\n <figure class=\"alignleft is-resized\">\n <img class=\"border-radius-5\" src=\"https://demos.alithemes.com/html/stories/demo/assets/imgs/news/thumb-11.jpg\" alt=\"thumb-11.jpg\">\n </figure>\n </div>\n <p>And far contrary smoked some contrary among stealthy engagingly suspiciously a cockatoo far circa sank dully lewd slick cracked llama the much gecko yikes more squirrel sniffed this and the the much within uninhibited this abominable a blubbered overdid foresaw through alas the pessimistic.</p>\n <p>Gosh jaguar ostrich quail one excited dear hello and bound and the and bland moral misheard roadrunner flapped lynx far that and jeepers giggled far and far bald that roadrunner python inside held shrewdly the manatee.</p>\n <br>\n <hr>\n <p>Thanks sniffed in hello after in foolhardy and some far purposefully much one at the much conjointly leapt skimpily that quail sheep some goodness nightingale the instead exited expedient up far ouch mellifluous altruistic and and lighted more instead much when ferret but the.</p>\n <p>Yet more some certainly yet alas abandonedly whispered intriguingly well extensive one howled talkative admonishingly below a rethought overlaid dear gosh activated less however hawk yet oh scratched ostrich some outside crud irrespective lightheartedly and much far amenably that the elephant since when.</p>\n '); /*!40000 ALTER TABLE `posts_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `revisions` -- DROP TABLE IF EXISTS `revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `revisions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `revisionable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `revisionable_id` int NOT NULL, `user_id` int DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `old_value` text COLLATE utf8mb4_unicode_ci, `new_value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `revisions` -- LOCK TABLES `revisions` WRITE; /*!40000 ALTER TABLE `revisions` DISABLE KEYS */; /*!40000 ALTER TABLE `revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_users` -- DROP TABLE IF EXISTS `role_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role_users` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned NOT NULL, `role_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `role_users_user_id_index` (`user_id`), KEY `role_users_role_id_index` (`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role_users` -- LOCK TABLES `role_users` WRITE; /*!40000 ALTER TABLE `role_users` DISABLE KEYS */; /*!40000 ALTER TABLE `role_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` text COLLATE utf8mb4_unicode_ci, `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `created_by` int unsigned NOT NULL, `updated_by` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `roles_slug_unique` (`slug`), KEY `roles_created_by_index` (`created_by`), KEY `roles_updated_by_index` (`updated_by`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `settings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `settings_key_unique` (`key`) ) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; INSERT INTO `settings` VALUES (1,'activated_plugins','[\"language\",\"language-advanced\",\"analytics\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"contact\",\"cookie-consent\",\"ecommerce\",\"faq\",\"location\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"razorpay\",\"rss-feed\",\"shippo\",\"social-login\",\"sslcommerz\",\"stripe\",\"testimonial\",\"translation\"]',NULL,'2023-01-22 08:09:23'),(6,'language_hide_default','1',NULL,NULL),(7,'language_switcher_display','list',NULL,NULL),(8,'language_display','all',NULL,NULL),(9,'language_hide_languages','[]',NULL,NULL),(10,'theme','agon',NULL,NULL),(11,'admin_favicon','general/favicon.png',NULL,NULL),(12,'admin_logo','general/logo-light.png',NULL,NULL),(13,'theme-agon-site_title','Agon - Multipurpose Agency Laravel Script',NULL,NULL),(14,'theme-agon-seo_description','Agon is a Multipurpose Agency Laravel Script. It is a powerful, clean, modern, and fully responsive template. It is designed for agency, business, corporate, creative, freelancer, portfolio, photography, personal, resume, and any kind of creative fields.',NULL,NULL),(15,'theme-agon-copyright','© 2023 Agon. All Rights Reserved.',NULL,NULL),(16,'theme-agon-homepage_id','1',NULL,NULL),(17,'theme-agon-blog_page_id','2',NULL,NULL),(18,'theme-agon-favicon','general/favicon.png',NULL,NULL),(19,'theme-agon-logo','general/logo.png',NULL,NULL),(20,'theme-agon-seo_og_image','general/open-graph-image.png',NULL,NULL),(21,'theme-agon-action_button_text','Contact Us',NULL,NULL),(22,'theme-agon-action_button_url','/contact',NULL,NULL),(23,'theme-agon-cookie_consent_message','Your experience on this site will be improved by allowing cookies ',NULL,NULL),(24,'theme-agon-cookie_consent_learn_more_url','/cookie-policy',NULL,NULL),(25,'theme-agon-cookie_consent_learn_more_text','Cookie Policy',NULL,NULL),(26,'theme-agon-cookie_consent_learn_abc_more_text','ABC',NULL,NULL),(27,'theme-agon-background_post_single','general/bg-post.png',NULL,NULL),(28,'theme-agon-address','66 avenue des Champs, 75008, Paris, France',NULL,NULL),(29,'theme-agon-hotline','(+01) - 456 789',NULL,NULL),(30,'theme-agon-email','contact@agon.com',NULL,NULL),(31,'theme-agon-login_page_image','general/login.png',NULL,NULL),(32,'theme-agon-register_page_images','[\"general\\/register-1.png\",\"general\\/register-2.png\",\"general\\/register-3.png\",\"general\\/register-4.png\",\"general\\/register-5.png\"]',NULL,NULL),(33,'theme-agon-primary_color','#006D77',NULL,NULL),(34,'theme-agon-secondary_color','#8D99AE',NULL,NULL),(35,'theme-agon-danger_color','#EF476F',NULL,NULL),(36,'theme-agon-primary_font','Chivo',NULL,NULL),(37,'theme-agon-secondary_font','Noto Sans',NULL,NULL),(38,'theme-agon-vi-copyright','© 2023 Agon. Tất cả quyền đã được bảo hộ.',NULL,NULL),(39,'theme-agon-vi-homepage_id','1',NULL,NULL),(40,'theme-agon-vi-blog_page_id','2',NULL,NULL),(41,'theme-agon-vi-cookie_consent_message','Trải nghiệm của bạn trên trang web này sẽ được cải thiện bằng cách cho phép cookie ',NULL,NULL),(42,'theme-agon-vi-cookie_consent_learn_more_url','/cookie-policy',NULL,NULL),(43,'theme-agon-vi-cookie_consent_learn_more_text','Chính sách cookie',NULL,NULL),(44,'theme-agon-social_links','[[{\"key\":\"social-name\",\"value\":\"Facebook\"},{\"key\":\"social-icon\",\"value\":\"general\\/facebook.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.facebook.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Twitter\"},{\"key\":\"social-icon\",\"value\":\"general\\/twitter.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.twitter.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"Instagram\"},{\"key\":\"social-icon\",\"value\":\"general\\/instagram.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.instagram.com\\/\"}],[{\"key\":\"social-name\",\"value\":\"LinkedIn\"},{\"key\":\"social-icon\",\"value\":\"general\\/linkedin.png\"},{\"key\":\"social-url\",\"value\":\"https:\\/\\/www.linkedin.com\\/\"}]]',NULL,NULL),(45,'media_random_hash','77e5583be54a03956d605329101461bd',NULL,NULL),(46,'ecommerce_store_name','Agon',NULL,NULL),(47,'ecommerce_store_phone','1800979769',NULL,NULL),(48,'ecommerce_store_address','502 New Street',NULL,NULL),(49,'ecommerce_store_state','Brighton VIC',NULL,NULL),(50,'ecommerce_store_city','Brighton VIC',NULL,NULL),(51,'ecommerce_store_country','AU',NULL,NULL); /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `slugs` -- DROP TABLE IF EXISTS `slugs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `slugs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` int unsigned NOT NULL, `reference_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `slugs_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `slugs` -- LOCK TABLES `slugs` WRITE; /*!40000 ALTER TABLE `slugs` DISABLE KEYS */; INSERT INTO `slugs` VALUES (1,'homepage-1',1,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(2,'blog',2,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(3,'contact',3,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(4,'cookie-policy',4,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(5,'about-us',5,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(6,'service',6,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(7,'pricing',7,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(8,'faqs',8,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(9,'homepage-2',9,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(10,'homepage-3',10,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(11,'homepage-4',11,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(12,'homepage-5',12,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(13,'homepage-6',13,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(14,'homepage-7',14,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(15,'homepage-8',15,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(16,'service-2',16,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(17,'pricing-2',17,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(18,'faqs-2',18,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(19,'career',19,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(20,'senior-full-stack-engineer-creator-success-full-time',20,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(21,'about-us-2',21,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(22,'about-us-3',22,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(23,'blog-2',23,'Botble\\Page\\Models\\Page','','2023-01-22 08:09:25','2023-01-22 08:09:25'),(24,'design',1,'Botble\\Blog\\Models\\Category','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(25,'lifestyle',2,'Botble\\Blog\\Models\\Category','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(26,'travel-tips',3,'Botble\\Blog\\Models\\Category','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(27,'healthy',4,'Botble\\Blog\\Models\\Category','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(28,'travel-tips',5,'Botble\\Blog\\Models\\Category','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(29,'hotel',6,'Botble\\Blog\\Models\\Category','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(30,'nature',7,'Botble\\Blog\\Models\\Category','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(31,'general',1,'Botble\\Blog\\Models\\Tag','tag','2023-01-22 08:09:26','2023-01-22 08:09:26'),(32,'design',2,'Botble\\Blog\\Models\\Tag','tag','2023-01-22 08:09:26','2023-01-22 08:09:26'),(33,'fashion',3,'Botble\\Blog\\Models\\Tag','tag','2023-01-22 08:09:26','2023-01-22 08:09:26'),(34,'branding',4,'Botble\\Blog\\Models\\Tag','tag','2023-01-22 08:09:26','2023-01-22 08:09:26'),(35,'modern',5,'Botble\\Blog\\Models\\Tag','tag','2023-01-22 08:09:26','2023-01-22 08:09:26'),(36,'the-top-2020-handbag-trends-to-know',1,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(37,'top-search-engine-optimization-strategies',2,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(38,'which-company-would-you-choose',3,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(39,'used-car-dealer-sales-tricks-exposed',4,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(40,'20-ways-to-sell-your-product-faster',5,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(41,'the-secrets-of-rich-and-famous-writers',6,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(42,'imagine-losing-20-pounds-in-14-days',7,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(43,'are-you-still-using-that-slow-old-typewriter',8,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(44,'a-skin-cream-thats-proven-to-work',9,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(45,'10-reasons-to-start-your-own-profitable-website',10,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(46,'simple-ways-to-reduce-your-unwanted-wrinkles',11,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(47,'apple-imac-with-retina-5k-display-review',12,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(48,'10000-web-site-visitors-in-one-monthguaranteed',13,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(49,'unlock-the-secrets-of-selling-high-ticket-items',14,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(50,'4-expert-tips-on-how-to-choose-the-right-mens-wallet',15,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(51,'sexy-clutches-how-to-buy-amp-wear-a-designer-clutch-bag',16,'Botble\\Blog\\Models\\Post','','2023-01-22 08:09:26','2023-01-22 08:09:26'),(52,'apply',1,'Botble\\Ecommerce\\Models\\Brand','brands','2023-01-22 08:09:39','2023-01-22 08:09:39'),(53,'assus',2,'Botble\\Ecommerce\\Models\\Brand','brands','2023-01-22 08:09:39','2023-01-22 08:09:39'),(54,'samsung',3,'Botble\\Ecommerce\\Models\\Brand','brands','2023-01-22 08:09:39','2023-01-22 08:09:39'),(55,'sony',4,'Botble\\Ecommerce\\Models\\Brand','brands','2023-01-22 08:09:39','2023-01-22 08:09:39'),(56,'toshiba',5,'Botble\\Ecommerce\\Models\\Brand','brands','2023-01-22 08:09:39','2023-01-22 08:09:39'),(57,'desktop-pc',1,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(58,'headphone',2,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(59,'laptop',3,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(60,'mobile-phone',4,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(61,'printer',5,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(62,'books',6,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(63,'tablet',7,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(64,'usb-flash',8,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(65,'game-mouse',9,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(66,'security',10,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(67,'watch',11,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(68,'scaner',12,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2023-01-22 08:09:40','2023-01-22 08:09:40'),(69,'dual-camera-20mp',1,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(70,'smart-watches',2,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(71,'beat-headphone',3,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(72,'red-black-headphone',4,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(73,'smart-watch-external',5,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(74,'nikon-hd-camera',6,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(75,'audio-equipment',7,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(76,'smart-televisions',8,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(77,'samsung-smart-phone',9,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(78,'herschel-leather-duffle-bag-in-brown-color',10,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(79,'xbox-one-wireless-controller-black-color',11,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(80,'epsion-plaster-printer',12,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(81,'sound-intone-i65-earphone-white-version',13,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(82,'bo-play-mini-bluetooth-speaker',14,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(83,'apple-macbook-air-retina-133-inch-laptop',15,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(84,'apple-macbook-air-retina-12-inch-laptop',16,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(85,'samsung-gear-vr-virtual-reality-headset',17,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(86,'aveeno-moisturizing-body-shower-450ml',18,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(87,'nyx-beauty-couton-pallete-makeup-12',19,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(88,'nyx-beauty-couton-pallete-makeup-12',20,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(89,'mvmth-classical-leather-watch-in-black',21,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(90,'baxter-care-hair-kit-for-bearded-mens',22,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(91,'ciate-palemore-lipstick-bold-red-color',23,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(92,'vimto-squash-remix-apple-15-litres',24,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(93,'crock-pot-slow-cooker',25,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(94,'taylors-of-harrogate-yorkshire-coffee',26,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:55','2023-01-22 08:09:55'),(95,'soft-mochi-galeto-ice-cream',27,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(96,'naked-noodle-egg-noodles-singapore',28,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(97,'saute-pan-silver',29,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(98,'bar-s-classic-bun-length-franks',30,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(99,'broccoli-crowns',31,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(100,'slimming-world-vegan-mac-greens',32,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(101,'haagen-dazs-salted-caramel',33,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(102,'iceland-3-solo-exotic-burst',34,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(103,'extreme-budweiser-light-can',35,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(104,'iceland-macaroni-cheese-traybake',36,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(105,'dolmio-bolognese-pasta-sauce',37,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(106,'sitema-bakeit-plastic-box',38,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(107,'wayfair-basics-dinner-plate-storage',39,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(108,'miko-the-panda-water-bottle',40,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(109,'sesame-seed-bread',41,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(110,'morrisons-the-best-beef',42,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(111,'avocado-hass-large',43,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(112,'italia-beef-lasagne',44,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(113,'maxwell-house-classic-roast-mocha',45,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(114,'bottled-pure-water-500ml',46,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(115,'famart-farmhouse-soft-white',47,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(116,'coca-cola-original-taste',48,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(117,'casillero-diablo-cabernet-sauvignon',49,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(118,'arla-organic-free-range-milk',50,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(119,'aptamil-follow-on-baby-milk',51,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(120,'cuisinart-chefs-classic-hard-anodized',52,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(121,'corn-yellow-sweet',53,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(122,'hobnobs-the-nobbly-biscuit',54,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(123,'honest-organic-still-lemonade',55,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(124,'ice-becks-beer-350ml-x-24-pieces',56,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(125,'iceland-6-hot-cross-buns',57,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(126,'iceland-luxury-4-panini-rolls',58,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(127,'iceland-soft-scoop-vanilla',59,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(128,'iceland-spaghetti-bolognese',60,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(129,'kelloggs-coco-pops-cereal',61,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(130,'kit-kat-chunky-milk-chocolate',62,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(131,'large-green-bell-pepper',63,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(132,'pice-94w-beasley-journal',64,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(133,'province-piece-glass-drinking-glass',65,'Botble\\Ecommerce\\Models\\Product','products','2023-01-22 08:09:56','2023-01-22 08:09:56'),(134,'electronic',1,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-01-22 08:10:04','2023-01-22 08:10:04'),(135,'mobile',2,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-01-22 08:10:04','2023-01-22 08:10:04'),(136,'iphone',3,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-01-22 08:10:04','2023-01-22 08:10:04'),(137,'printer',4,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-01-22 08:10:04','2023-01-22 08:10:04'),(138,'office',5,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-01-22 08:10:04','2023-01-22 08:10:04'),(139,'it',6,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2023-01-22 08:10:04','2023-01-22 08:10:04'); /*!40000 ALTER TABLE `slugs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `states` -- DROP TABLE IF EXISTS `states`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `states` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `abbreviation` varchar(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_id` int unsigned DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `states` -- LOCK TABLES `states` WRITE; /*!40000 ALTER TABLE `states` DISABLE KEYS */; /*!40000 ALTER TABLE `states` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `states_translations` -- DROP TABLE IF EXISTS `states_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `states_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `states_id` int NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `abbreviation` varchar(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`states_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `states_translations` -- LOCK TABLES `states_translations` WRITE; /*!40000 ALTER TABLE `states_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `states_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `author_id` int NOT NULL, `author_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT '', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; INSERT INTO `tags` VALUES (1,'General',1,'Botble\\ACL\\Models\\User','','published','2023-01-22 08:09:26','2023-01-22 08:09:26'),(2,'Design',1,'Botble\\ACL\\Models\\User','','published','2023-01-22 08:09:26','2023-01-22 08:09:26'),(3,'Fashion',1,'Botble\\ACL\\Models\\User','','published','2023-01-22 08:09:26','2023-01-22 08:09:26'),(4,'Branding',1,'Botble\\ACL\\Models\\User','','published','2023-01-22 08:09:26','2023-01-22 08:09:26'),(5,'Modern',1,'Botble\\ACL\\Models\\User','','published','2023-01-22 08:09:26','2023-01-22 08:09:26'); /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags_translations` -- DROP TABLE IF EXISTS `tags_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tags_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tags_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`tags_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags_translations` -- LOCK TABLES `tags_translations` WRITE; /*!40000 ALTER TABLE `tags_translations` DISABLE KEYS */; INSERT INTO `tags_translations` VALUES ('vi',1,'Chung',NULL),('vi',2,'Thiết kế',NULL),('vi',3,'Thời trang',NULL),('vi',4,'Thương hiệu',NULL),('vi',5,'Hiện đại',NULL); /*!40000 ALTER TABLE `tags_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `testimonials` -- DROP TABLE IF EXISTS `testimonials`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `testimonials` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `testimonials` -- LOCK TABLES `testimonials` WRITE; /*!40000 ALTER TABLE `testimonials` DISABLE KEYS */; INSERT INTO `testimonials` VALUES (1,'Wade Warren','Even factoring differences in body weight between children and adults into account.','testimonials/1.png','Louis Vuitton','published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(2,'Brooklyn Simmons','So yes, the alcohol (ethanol) in hand sanitizers can be absorbed through the skin, but no, it would not cause intoxication.','testimonials/2.png','Nintendo','published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(3,'Jenny Wilson','Their blood alcohol levels rose to 0.007 to 0.02 o/oo (parts per thousand), or 0.7 to 2.0 mg/L.','testimonials/3.png','Starbucks','published','2023-01-22 08:09:39','2023-01-22 08:09:39'),(4,'Albert Flores','So yes, the alcohol (ethanol) in hand sanitizers can be absorbed through the skin, but no, it would not cause intoxication.','testimonials/4.png','Bank of America','published','2023-01-22 08:09:39','2023-01-22 08:09:39'); /*!40000 ALTER TABLE `testimonials` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `testimonials_translations` -- DROP TABLE IF EXISTS `testimonials_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `testimonials_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `testimonials_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci, `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`testimonials_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `testimonials_translations` -- LOCK TABLES `testimonials_translations` WRITE; /*!40000 ALTER TABLE `testimonials_translations` DISABLE KEYS */; INSERT INTO `testimonials_translations` VALUES ('vi',1,'Wade Warren','Even factoring differences in body weight between children and adults into account.','Louis Vuitton'),('vi',2,'Brooklyn Simmons','So yes, the alcohol (ethanol) in hand sanitizers can be absorbed through the skin, but no, it would not cause intoxication.','Nintendo'),('vi',3,'Jenny Wilson','Their blood alcohol levels rose to 0.007 to 0.02 o/oo (parts per thousand), or 0.7 to 2.0 mg/L.','Starbucks'),('vi',4,'Albert Flores','So yes, the alcohol (ethanol) in hand sanitizers can be absorbed through the skin, but no, it would not cause intoxication.','Bank of America'); /*!40000 ALTER TABLE `testimonials_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `translations` -- DROP TABLE IF EXISTS `translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `translations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `status` int NOT NULL DEFAULT '0', `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `group` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5637 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `translations` -- LOCK TABLES `translations` WRITE; /*!40000 ALTER TABLE `translations` DISABLE KEYS */; INSERT INTO `translations` VALUES (1,1,'en','auth','failed','These credentials do not match our records.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(2,1,'en','auth','password','The provided password is incorrect.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(3,1,'en','auth','throttle','Too many login attempts. Please try again in :seconds seconds.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(4,1,'en','pagination','previous','« Previous','2023-01-22 08:10:08','2023-01-22 08:10:08'),(5,1,'en','pagination','next','Next »','2023-01-22 08:10:08','2023-01-22 08:10:08'),(6,1,'en','passwords','reset','Your password has been reset!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(7,1,'en','passwords','sent','We have emailed your password reset link!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(8,1,'en','passwords','throttled','Please wait before retrying.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(9,1,'en','passwords','token','This password reset token is invalid.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(10,1,'en','passwords','user','We can\'t find a user with that email address.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(11,1,'en','validation','accepted','The :attribute must be accepted.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(12,1,'en','validation','accepted_if','The :attribute must be accepted when :other is :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(13,1,'en','validation','active_url','The :attribute is not a valid URL.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(14,1,'en','validation','after','The :attribute must be a date after :date.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(15,1,'en','validation','after_or_equal','The :attribute must be a date after or equal to :date.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(16,1,'en','validation','alpha','The :attribute must only contain letters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(17,1,'en','validation','alpha_dash','The :attribute must only contain letters, numbers, dashes and underscores.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(18,1,'en','validation','alpha_num','The :attribute must only contain letters and numbers.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(19,1,'en','validation','array','The :attribute must be an array.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(20,1,'en','validation','ascii','The :attribute must only contain single-byte alphanumeric characters and symbols.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(21,1,'en','validation','before','The :attribute must be a date before :date.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(22,1,'en','validation','before_or_equal','The :attribute must be a date before or equal to :date.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(23,1,'en','validation','between.array','The :attribute must have between :min and :max items.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(24,1,'en','validation','between.file','The :attribute must be between :min and :max kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(25,1,'en','validation','between.numeric','The :attribute must be between :min and :max.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(26,1,'en','validation','between.string','The :attribute must be between :min and :max characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(27,1,'en','validation','boolean','The :attribute field must be true or false.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(28,1,'en','validation','confirmed','The :attribute confirmation does not match.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(29,1,'en','validation','current_password','The password is incorrect.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(30,1,'en','validation','date','The :attribute is not a valid date.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(31,1,'en','validation','date_equals','The :attribute must be a date equal to :date.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(32,1,'en','validation','date_format','The :attribute does not match the format :format.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(33,1,'en','validation','decimal','The :attribute must have :decimal decimal places.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(34,1,'en','validation','declined','The :attribute must be declined.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(35,1,'en','validation','declined_if','The :attribute must be declined when :other is :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(36,1,'en','validation','different','The :attribute and :other must be different.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(37,1,'en','validation','digits','The :attribute must be :digits digits.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(38,1,'en','validation','digits_between','The :attribute must be between :min and :max digits.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(39,1,'en','validation','dimensions','The :attribute has invalid image dimensions.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(40,1,'en','validation','distinct','The :attribute field has a duplicate value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(41,1,'en','validation','doesnt_end_with','The :attribute may not end with one of the following: :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(42,1,'en','validation','doesnt_start_with','The :attribute may not start with one of the following: :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(43,1,'en','validation','email','The :attribute must be a valid email address.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(44,1,'en','validation','ends_with','The :attribute must end with one of the following: :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(45,1,'en','validation','enum','The selected :attribute is invalid.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(46,1,'en','validation','exists','The selected :attribute is invalid.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(47,1,'en','validation','file','The :attribute must be a file.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(48,1,'en','validation','filled','The :attribute field must have a value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(49,1,'en','validation','gt.array','The :attribute must have more than :value items.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(50,1,'en','validation','gt.file','The :attribute must be greater than :value kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(51,1,'en','validation','gt.numeric','The :attribute must be greater than :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(52,1,'en','validation','gt.string','The :attribute must be greater than :value characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(53,1,'en','validation','gte.array','The :attribute must have :value items or more.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(54,1,'en','validation','gte.file','The :attribute must be greater than or equal to :value kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(55,1,'en','validation','gte.numeric','The :attribute must be greater than or equal to :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(56,1,'en','validation','gte.string','The :attribute must be greater than or equal to :value characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(57,1,'en','validation','image','The :attribute must be an image.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(58,1,'en','validation','in','The selected :attribute is invalid.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(59,1,'en','validation','in_array','The :attribute field does not exist in :other.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(60,1,'en','validation','integer','The :attribute must be an integer.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(61,1,'en','validation','ip','The :attribute must be a valid IP address.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(62,1,'en','validation','ipv4','The :attribute must be a valid IPv4 address.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(63,1,'en','validation','ipv6','The :attribute must be a valid IPv6 address.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(64,1,'en','validation','json','The :attribute must be a valid JSON string.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(65,1,'en','validation','lowercase','The :attribute must be lowercase.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(66,1,'en','validation','lt.array','The :attribute must have less than :value items.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(67,1,'en','validation','lt.file','The :attribute must be less than :value kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(68,1,'en','validation','lt.numeric','The :attribute must be less than :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(69,1,'en','validation','lt.string','The :attribute must be less than :value characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(70,1,'en','validation','lte.array','The :attribute must not have more than :value items.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(71,1,'en','validation','lte.file','The :attribute must be less than or equal to :value kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(72,1,'en','validation','lte.numeric','The :attribute must be less than or equal to :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(73,1,'en','validation','lte.string','The :attribute must be less than or equal to :value characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(74,1,'en','validation','mac_address','The :attribute must be a valid MAC address.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(75,1,'en','validation','max.array','The :attribute must not have more than :max items.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(76,1,'en','validation','max.file','The :attribute must not be greater than :max kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(77,1,'en','validation','max.numeric','The :attribute must not be greater than :max.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(78,1,'en','validation','max.string','The :attribute must not be greater than :max characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(79,1,'en','validation','max_digits','The :attribute must not have more than :max digits.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(80,1,'en','validation','mimes','The :attribute must be a file of type: :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(81,1,'en','validation','mimetypes','The :attribute must be a file of type: :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(82,1,'en','validation','min.array','The :attribute must have at least :min items.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(83,1,'en','validation','min.file','The :attribute must be at least :min kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(84,1,'en','validation','min.numeric','The :attribute must be at least :min.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(85,1,'en','validation','min.string','The :attribute must be at least :min characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(86,1,'en','validation','min_digits','The :attribute must have at least :min digits.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(87,1,'en','validation','missing','The :attribute field must be missing.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(88,1,'en','validation','missing_if','The :attribute field must be missing when :other is :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(89,1,'en','validation','missing_unless','The :attribute field must be missing unless :other is :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(90,1,'en','validation','missing_with','The :attribute field must be missing when :values is present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(91,1,'en','validation','missing_with_all','The :attribute field must be missing when :values are present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(92,1,'en','validation','multiple_of','The :attribute must be a multiple of :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(93,1,'en','validation','not_in','The selected :attribute is invalid.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(94,1,'en','validation','not_regex','The :attribute format is invalid.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(95,1,'en','validation','numeric','The :attribute must be a number.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(96,1,'en','validation','password.letters','The :attribute must contain at least one letter.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(97,1,'en','validation','password.mixed','The :attribute must contain at least one uppercase and one lowercase letter.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(98,1,'en','validation','password.numbers','The :attribute must contain at least one number.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(99,1,'en','validation','password.symbols','The :attribute must contain at least one symbol.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(100,1,'en','validation','password.uncompromised','The given :attribute has appeared in a data leak. Please choose a different :attribute.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(101,1,'en','validation','present','The :attribute field must be present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(102,1,'en','validation','prohibited','The :attribute field is prohibited.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(103,1,'en','validation','prohibited_if','The :attribute field is prohibited when :other is :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(104,1,'en','validation','prohibited_unless','The :attribute field is prohibited unless :other is in :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(105,1,'en','validation','prohibits','The :attribute field prohibits :other from being present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(106,1,'en','validation','regex','The :attribute format is invalid.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(107,1,'en','validation','required','The :attribute field is required.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(108,1,'en','validation','required_array_keys','The :attribute field must contain entries for: :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(109,1,'en','validation','required_if','The :attribute field is required when :other is :value.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(110,1,'en','validation','required_if_accepted','The :attribute field is required when :other is accepted.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(111,1,'en','validation','required_unless','The :attribute field is required unless :other is in :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(112,1,'en','validation','required_with','The :attribute field is required when :values is present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(113,1,'en','validation','required_with_all','The :attribute field is required when :values are present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(114,1,'en','validation','required_without','The :attribute field is required when :values is not present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(115,1,'en','validation','required_without_all','The :attribute field is required when none of :values are present.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(116,1,'en','validation','same','The :attribute and :other must match.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(117,1,'en','validation','size.array','The :attribute must contain :size items.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(118,1,'en','validation','size.file','The :attribute must be :size kilobytes.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(119,1,'en','validation','size.numeric','The :attribute must be :size.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(120,1,'en','validation','size.string','The :attribute must be :size characters.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(121,1,'en','validation','starts_with','The :attribute must start with one of the following: :values.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(122,1,'en','validation','string','The :attribute must be a string.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(123,1,'en','validation','timezone','The :attribute must be a valid timezone.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(124,1,'en','validation','unique','The :attribute has already been taken.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(125,1,'en','validation','uploaded','The :attribute failed to upload.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(126,1,'en','validation','uppercase','The :attribute must be uppercase.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(127,1,'en','validation','url','The :attribute must be a valid URL.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(128,1,'en','validation','ulid','The :attribute must be a valid ULID.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(129,1,'en','validation','uuid','The :attribute must be a valid UUID.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(130,1,'en','validation','custom.attribute-name.rule-name','custom-message','2023-01-22 08:10:08','2023-01-22 08:10:08'),(131,1,'en','acl/auth','login.username','Email/Username','2023-01-22 08:10:08','2023-01-22 08:10:08'),(132,1,'en','acl/auth','login.email','Email','2023-01-22 08:10:08','2023-01-22 08:10:08'),(133,1,'en','acl/auth','login.password','Password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(134,1,'en','acl/auth','login.title','User Login','2023-01-22 08:10:08','2023-01-22 08:10:08'),(135,1,'en','acl/auth','login.remember','Remember me?','2023-01-22 08:10:08','2023-01-22 08:10:08'),(136,1,'en','acl/auth','login.login','Sign in','2023-01-22 08:10:08','2023-01-22 08:10:08'),(137,1,'en','acl/auth','login.placeholder.username','Please enter your username','2023-01-22 08:10:08','2023-01-22 08:10:08'),(138,1,'en','acl/auth','login.placeholder.email','Please enter your email','2023-01-22 08:10:08','2023-01-22 08:10:08'),(139,1,'en','acl/auth','login.success','Login successfully!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(140,1,'en','acl/auth','login.fail','Wrong username or password.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(141,1,'en','acl/auth','login.not_active','Your account has not been activated yet!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(142,1,'en','acl/auth','login.banned','This account is banned.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(143,1,'en','acl/auth','login.logout_success','Logout successfully!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(144,1,'en','acl/auth','login.dont_have_account','You don\'t have account on this system, please contact administrator for more information!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(145,1,'en','acl/auth','forgot_password.title','Forgot Password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(146,1,'en','acl/auth','forgot_password.message','<p>Have you forgotten your password?</p><p>Please enter your email account. System will send a email with active link to reset your password.</p>','2023-01-22 08:10:08','2023-01-22 08:10:08'),(147,1,'en','acl/auth','forgot_password.submit','Submit','2023-01-22 08:10:08','2023-01-22 08:10:08'),(148,1,'en','acl/auth','reset.new_password','New password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(149,1,'en','acl/auth','reset.password_confirmation','Confirm new password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(150,1,'en','acl/auth','reset.email','Email','2023-01-22 08:10:08','2023-01-22 08:10:08'),(151,1,'en','acl/auth','reset.title','Reset your password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(152,1,'en','acl/auth','reset.update','Update','2023-01-22 08:10:08','2023-01-22 08:10:08'),(153,1,'en','acl/auth','reset.wrong_token','This link is invalid or expired. Please try using reset form again.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(154,1,'en','acl/auth','reset.user_not_found','This username is not exist.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(155,1,'en','acl/auth','reset.success','Reset password successfully!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(156,1,'en','acl/auth','reset.fail','Token is invalid, the reset password link has been expired!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(157,1,'en','acl/auth','reset.reset.title','Email reset password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(158,1,'en','acl/auth','reset.send.success','A email was sent to your email account. Please check and complete this action.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(159,1,'en','acl/auth','reset.send.fail','Can not send email in this time. Please try again later.','2023-01-22 08:10:08','2023-01-22 08:10:08'),(160,1,'en','acl/auth','reset.new-password','New password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(161,1,'en','acl/auth','email.reminder.title','Email reset password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(162,1,'en','acl/auth','password_confirmation','Password confirm','2023-01-22 08:10:08','2023-01-22 08:10:08'),(163,1,'en','acl/auth','failed','Failed','2023-01-22 08:10:08','2023-01-22 08:10:08'),(164,1,'en','acl/auth','throttle','Throttle','2023-01-22 08:10:08','2023-01-22 08:10:08'),(165,1,'en','acl/auth','not_member','Not a member yet?','2023-01-22 08:10:08','2023-01-22 08:10:08'),(166,1,'en','acl/auth','register_now','Register now','2023-01-22 08:10:08','2023-01-22 08:10:08'),(167,1,'en','acl/auth','lost_your_password','Lost your password?','2023-01-22 08:10:08','2023-01-22 08:10:08'),(168,1,'en','acl/auth','login_title','Admin','2023-01-22 08:10:08','2023-01-22 08:10:08'),(169,1,'en','acl/auth','login_via_social','Login with social networks','2023-01-22 08:10:08','2023-01-22 08:10:08'),(170,1,'en','acl/auth','back_to_login','Back to login page','2023-01-22 08:10:08','2023-01-22 08:10:08'),(171,1,'en','acl/auth','sign_in_below','Sign In Below','2023-01-22 08:10:08','2023-01-22 08:10:08'),(172,1,'en','acl/auth','languages','Languages','2023-01-22 08:10:08','2023-01-22 08:10:08'),(173,1,'en','acl/auth','reset_password','Reset Password','2023-01-22 08:10:08','2023-01-22 08:10:08'),(174,1,'en','acl/permissions','notices.role_in_use','Cannot delete this role, it is still in use!','2023-01-22 08:10:08','2023-01-22 08:10:08'),(175,1,'en','acl/permissions','notices.role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(176,1,'en','acl/permissions','notices.role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(177,1,'en','acl/permissions','notices.delete_global_role','You are not allowed to delete global roles!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(178,1,'en','acl/permissions','notices.delete_success','The selected role was deleted successfully!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(179,1,'en','acl/permissions','notices.modified_success','The selected role was modified successfully!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(180,1,'en','acl/permissions','notices.create_success','The new role was successfully created','2023-01-22 08:10:09','2023-01-22 08:10:09'),(181,1,'en','acl/permissions','notices.duplicated_success','The selected role was duplicated successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(182,1,'en','acl/permissions','notices.no_select','Please select at least one record to take this action!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(183,1,'en','acl/permissions','notices.not_found','Role not found','2023-01-22 08:10:09','2023-01-22 08:10:09'),(184,1,'en','acl/permissions','name','Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(185,1,'en','acl/permissions','current_role','Current Role','2023-01-22 08:10:09','2023-01-22 08:10:09'),(186,1,'en','acl/permissions','no_role_assigned','No role assigned','2023-01-22 08:10:09','2023-01-22 08:10:09'),(187,1,'en','acl/permissions','role_assigned','Assigned Role','2023-01-22 08:10:09','2023-01-22 08:10:09'),(188,1,'en','acl/permissions','create_role','Create New Role','2023-01-22 08:10:09','2023-01-22 08:10:09'),(189,1,'en','acl/permissions','role_name','Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(190,1,'en','acl/permissions','role_description','Description','2023-01-22 08:10:09','2023-01-22 08:10:09'),(191,1,'en','acl/permissions','permission_flags','Permission Flags','2023-01-22 08:10:09','2023-01-22 08:10:09'),(192,1,'en','acl/permissions','cancel','Cancel','2023-01-22 08:10:09','2023-01-22 08:10:09'),(193,1,'en','acl/permissions','reset','Reset','2023-01-22 08:10:09','2023-01-22 08:10:09'),(194,1,'en','acl/permissions','save','Save','2023-01-22 08:10:09','2023-01-22 08:10:09'),(195,1,'en','acl/permissions','global_role_msg','This is a global role and cannot be modified. You can use the Duplicate button to make a copy of this role that you can then modify.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(196,1,'en','acl/permissions','details','Details','2023-01-22 08:10:09','2023-01-22 08:10:09'),(197,1,'en','acl/permissions','duplicate','Duplicate','2023-01-22 08:10:09','2023-01-22 08:10:09'),(198,1,'en','acl/permissions','all','All Permissions','2023-01-22 08:10:09','2023-01-22 08:10:09'),(199,1,'en','acl/permissions','list_role','List Roles','2023-01-22 08:10:09','2023-01-22 08:10:09'),(200,1,'en','acl/permissions','created_on','Created On','2023-01-22 08:10:09','2023-01-22 08:10:09'),(201,1,'en','acl/permissions','created_by','Created By','2023-01-22 08:10:09','2023-01-22 08:10:09'),(202,1,'en','acl/permissions','actions','Actions','2023-01-22 08:10:09','2023-01-22 08:10:09'),(203,1,'en','acl/permissions','role_in_use','Cannot delete this role, it is still in use!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(204,1,'en','acl/permissions','role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(205,1,'en','acl/permissions','delete_global_role','Can not delete global role','2023-01-22 08:10:09','2023-01-22 08:10:09'),(206,1,'en','acl/permissions','delete_success','Delete role successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(207,1,'en','acl/permissions','no_select','Please select at least one role to take this action!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(208,1,'en','acl/permissions','not_found','No role found!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(209,1,'en','acl/permissions','role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(210,1,'en','acl/permissions','modified_success','Modified successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(211,1,'en','acl/permissions','create_success','Create successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(212,1,'en','acl/permissions','duplicated_success','Duplicated successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(213,1,'en','acl/permissions','options','Options','2023-01-22 08:10:09','2023-01-22 08:10:09'),(214,1,'en','acl/permissions','access_denied_message','You are not allowed to do this action','2023-01-22 08:10:09','2023-01-22 08:10:09'),(215,1,'en','acl/permissions','roles','Roles','2023-01-22 08:10:09','2023-01-22 08:10:09'),(216,1,'en','acl/permissions','role_permission','Roles and Permissions','2023-01-22 08:10:09','2023-01-22 08:10:09'),(217,1,'en','acl/permissions','user_management','User Management','2023-01-22 08:10:09','2023-01-22 08:10:09'),(218,1,'en','acl/permissions','super_user_management','Super User Management','2023-01-22 08:10:09','2023-01-22 08:10:09'),(219,1,'en','acl/permissions','action_unauthorized','This action is unauthorized.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(220,1,'en','acl/reminders','password','Passwords must be at least six characters and match the confirmation.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(221,1,'en','acl/reminders','user','We can\'t find a user with that e-mail address.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(222,1,'en','acl/reminders','token','This password reset token is invalid.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(223,1,'en','acl/reminders','sent','Password reminder sent!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(224,1,'en','acl/reminders','reset','Password has been reset!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(225,1,'en','acl/users','delete_user_logged_in','Can\'t delete this user. This user is logged on!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(226,1,'en','acl/users','no_select','Please select at least one record to take this action!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(227,1,'en','acl/users','lock_user_logged_in','Can\'t lock this user. This user is logged on!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(228,1,'en','acl/users','update_success','Update status successfully!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(229,1,'en','acl/users','save_setting_failed','Something went wrong when save your setting','2023-01-22 08:10:09','2023-01-22 08:10:09'),(230,1,'en','acl/users','not_found','User not found','2023-01-22 08:10:09','2023-01-22 08:10:09'),(231,1,'en','acl/users','email_exist','That email address already belongs to an existing account','2023-01-22 08:10:09','2023-01-22 08:10:09'),(232,1,'en','acl/users','username_exist','That username address already belongs to an existing account','2023-01-22 08:10:09','2023-01-22 08:10:09'),(233,1,'en','acl/users','update_profile_success','Your profile changes were successfully saved','2023-01-22 08:10:09','2023-01-22 08:10:09'),(234,1,'en','acl/users','password_update_success','Password successfully changed','2023-01-22 08:10:09','2023-01-22 08:10:09'),(235,1,'en','acl/users','current_password_not_valid','Current password is not valid','2023-01-22 08:10:09','2023-01-22 08:10:09'),(236,1,'en','acl/users','user_exist_in','User is already a member','2023-01-22 08:10:09','2023-01-22 08:10:09'),(237,1,'en','acl/users','email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(238,1,'en','acl/users','role','Role','2023-01-22 08:10:09','2023-01-22 08:10:09'),(239,1,'en','acl/users','username','Username','2023-01-22 08:10:09','2023-01-22 08:10:09'),(240,1,'en','acl/users','last_name','Last Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(241,1,'en','acl/users','first_name','First Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(242,1,'en','acl/users','message','Message','2023-01-22 08:10:09','2023-01-22 08:10:09'),(243,1,'en','acl/users','cancel_btn','Cancel','2023-01-22 08:10:09','2023-01-22 08:10:09'),(244,1,'en','acl/users','change_password','Change password','2023-01-22 08:10:09','2023-01-22 08:10:09'),(245,1,'en','acl/users','current_password','Current password','2023-01-22 08:10:09','2023-01-22 08:10:09'),(246,1,'en','acl/users','new_password','New Password','2023-01-22 08:10:09','2023-01-22 08:10:09'),(247,1,'en','acl/users','confirm_new_password','Confirm New Password','2023-01-22 08:10:09','2023-01-22 08:10:09'),(248,1,'en','acl/users','password','Password','2023-01-22 08:10:09','2023-01-22 08:10:09'),(249,1,'en','acl/users','save','Save','2023-01-22 08:10:09','2023-01-22 08:10:09'),(250,1,'en','acl/users','cannot_delete','User could not be deleted','2023-01-22 08:10:09','2023-01-22 08:10:09'),(251,1,'en','acl/users','deleted','User deleted','2023-01-22 08:10:09','2023-01-22 08:10:09'),(252,1,'en','acl/users','last_login','Last Login','2023-01-22 08:10:09','2023-01-22 08:10:09'),(253,1,'en','acl/users','error_update_profile_image','Error when update profile image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(254,1,'en','acl/users','email_reminder_template','<h3>Hello :name</h3><p>The system has received a request to restore the password for your account, to complete this task please click the link below.</p><p><a href=\":link\">Reset password now</a></p><p>If not you ask recover password, please ignore this email.</p><p>This email is valid for 60 minutes after receiving the email.</p>','2023-01-22 08:10:09','2023-01-22 08:10:09'),(255,1,'en','acl/users','change_profile_image','Change Profile Image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(256,1,'en','acl/users','new_image','New Image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(257,1,'en','acl/users','loading','Loading','2023-01-22 08:10:09','2023-01-22 08:10:09'),(258,1,'en','acl/users','close','Close','2023-01-22 08:10:09','2023-01-22 08:10:09'),(259,1,'en','acl/users','update','Update','2023-01-22 08:10:09','2023-01-22 08:10:09'),(260,1,'en','acl/users','read_image_failed','Failed to read the image file','2023-01-22 08:10:09','2023-01-22 08:10:09'),(261,1,'en','acl/users','users','Users','2023-01-22 08:10:09','2023-01-22 08:10:09'),(262,1,'en','acl/users','update_avatar_success','Update profile image successfully!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(263,1,'en','acl/users','info.title','User profile','2023-01-22 08:10:09','2023-01-22 08:10:09'),(264,1,'en','acl/users','info.first_name','First Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(265,1,'en','acl/users','info.last_name','Last Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(266,1,'en','acl/users','info.email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(267,1,'en','acl/users','info.second_email','Secondary Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(268,1,'en','acl/users','info.address','Address','2023-01-22 08:10:09','2023-01-22 08:10:09'),(269,1,'en','acl/users','info.second_address','Secondary Address','2023-01-22 08:10:09','2023-01-22 08:10:09'),(270,1,'en','acl/users','info.birth_day','Date of birth','2023-01-22 08:10:09','2023-01-22 08:10:09'),(271,1,'en','acl/users','info.job','Job Position','2023-01-22 08:10:09','2023-01-22 08:10:09'),(272,1,'en','acl/users','info.mobile_number','Mobile Number','2023-01-22 08:10:09','2023-01-22 08:10:09'),(273,1,'en','acl/users','info.second_mobile_number','Secondary Phone','2023-01-22 08:10:09','2023-01-22 08:10:09'),(274,1,'en','acl/users','info.interes','Interests','2023-01-22 08:10:09','2023-01-22 08:10:09'),(275,1,'en','acl/users','info.about','About','2023-01-22 08:10:09','2023-01-22 08:10:09'),(276,1,'en','acl/users','gender.title','Gender','2023-01-22 08:10:09','2023-01-22 08:10:09'),(277,1,'en','acl/users','gender.male','Male','2023-01-22 08:10:09','2023-01-22 08:10:09'),(278,1,'en','acl/users','gender.female','Female','2023-01-22 08:10:09','2023-01-22 08:10:09'),(279,1,'en','acl/users','total_users','Total users','2023-01-22 08:10:09','2023-01-22 08:10:09'),(280,1,'en','acl/users','statuses.activated','Activated','2023-01-22 08:10:09','2023-01-22 08:10:09'),(281,1,'en','acl/users','statuses.deactivated','Deactivated','2023-01-22 08:10:09','2023-01-22 08:10:09'),(282,1,'en','acl/users','make_super','Make super','2023-01-22 08:10:09','2023-01-22 08:10:09'),(283,1,'en','acl/users','remove_super','Remove super','2023-01-22 08:10:09','2023-01-22 08:10:09'),(284,1,'en','acl/users','is_super','Is super?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(285,1,'en','acl/users','email_placeholder','Ex: example@gmail.com','2023-01-22 08:10:09','2023-01-22 08:10:09'),(286,1,'en','acl/users','password_confirmation','Re-type password','2023-01-22 08:10:09','2023-01-22 08:10:09'),(287,1,'en','acl/users','select_role','Select role','2023-01-22 08:10:09','2023-01-22 08:10:09'),(288,1,'en','acl/users','create_new_user','Create a new user','2023-01-22 08:10:09','2023-01-22 08:10:09'),(289,1,'en','acl/users','cannot_delete_super_user','Permission denied. Cannot delete a super user!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(290,1,'en','acl/users','assigned_role','Assigned Role','2023-01-22 08:10:09','2023-01-22 08:10:09'),(291,1,'en','acl/users','no_role_assigned','No role assigned','2023-01-22 08:10:09','2023-01-22 08:10:09'),(292,1,'en','acl/users','view_user_profile','View user\'s profile','2023-01-22 08:10:09','2023-01-22 08:10:09'),(293,1,'vi','acl/auth','login.username','Email/Tên truy cập','2023-01-22 08:10:09','2023-01-22 08:10:09'),(294,1,'vi','acl/auth','login.password','Mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(295,1,'vi','acl/auth','login.title','Đăng nhập vào quản trị','2023-01-22 08:10:09','2023-01-22 08:10:09'),(296,1,'vi','acl/auth','login.remember','Nhớ mật khẩu?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(297,1,'vi','acl/auth','login.login','Đăng nhập','2023-01-22 08:10:09','2023-01-22 08:10:09'),(298,1,'vi','acl/auth','login.placeholder.username','Vui lòng nhập tên truy cập','2023-01-22 08:10:09','2023-01-22 08:10:09'),(299,1,'vi','acl/auth','login.placeholder.email','Vui lòng nhập email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(300,1,'vi','acl/auth','login.success','Đăng nhập thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(301,1,'vi','acl/auth','login.fail','Sai tên truy cập hoặc mật khẩu.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(302,1,'vi','acl/auth','login.not_active','Tài khoản của bạn chưa được kích hoạt!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(303,1,'vi','acl/auth','login.banned','Tài khoản này đã bị khóa.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(304,1,'vi','acl/auth','login.logout_success','Đăng xuất thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(305,1,'vi','acl/auth','login.dont_have_account','Bạn không có tài khoản trong hệ thống, vui lòng liên hệ quản trị viên!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(306,1,'vi','acl/auth','login.email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(307,1,'vi','acl/auth','forgot_password.title','Quên mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(308,1,'vi','acl/auth','forgot_password.message','<p>Quên mật khẩu?</p><p>Vui lòng nhập email đăng nhập tài khoản của bạn để hệ thống gửi liên kết khôi phục mật khẩu.</p>','2023-01-22 08:10:09','2023-01-22 08:10:09'),(309,1,'vi','acl/auth','forgot_password.submit','Hoàn tất','2023-01-22 08:10:09','2023-01-22 08:10:09'),(310,1,'vi','acl/auth','reset.new_password','Mật khẩu mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(311,1,'vi','acl/auth','reset.title','Khôi phục mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(312,1,'vi','acl/auth','reset.update','Cập nhật','2023-01-22 08:10:09','2023-01-22 08:10:09'),(313,1,'vi','acl/auth','reset.wrong_token','Liên kết này không chính xác hoặc đã hết hiệu lực, vui lòng yêu cầu khôi phục mật khẩu lại!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(314,1,'vi','acl/auth','reset.user_not_found','Tên đăng nhập không tồn tại.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(315,1,'vi','acl/auth','reset.success','Khôi phục mật khẩu thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(316,1,'vi','acl/auth','reset.fail','Token không hợp lệ hoặc liên kết khôi phục mật khẩu đã hết thời gian hiệu lực!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(317,1,'vi','acl/auth','reset.reset.title','Email khôi phục mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(318,1,'vi','acl/auth','reset.send.success','Một email khôi phục mật khẩu đã được gửi tới email của bạn, vui lòng kiểm tra và hoàn tất yêu cầu.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(319,1,'vi','acl/auth','reset.send.fail','Không thể gửi email trong lúc này. Vui lòng thực hiện lại sau.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(320,1,'vi','acl/auth','reset.new-password','Mật khẩu mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(321,1,'vi','acl/auth','reset.email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(322,1,'vi','acl/auth','reset.password_confirmation','Xác nhận mật khẩu mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(323,1,'vi','acl/auth','email.reminder.title','Email khôi phục mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(324,1,'vi','acl/auth','failed','Không thành công','2023-01-22 08:10:09','2023-01-22 08:10:09'),(325,1,'vi','acl/auth','throttle','Throttle','2023-01-22 08:10:09','2023-01-22 08:10:09'),(326,1,'vi','acl/auth','back_to_login','Quay lại trang đăng nhập','2023-01-22 08:10:09','2023-01-22 08:10:09'),(327,1,'vi','acl/auth','login_title','Đăng nhập vào quản trị','2023-01-22 08:10:09','2023-01-22 08:10:09'),(328,1,'vi','acl/auth','login_via_social','Đăng nhập thông qua mạng xã hội','2023-01-22 08:10:09','2023-01-22 08:10:09'),(329,1,'vi','acl/auth','lost_your_password','Quên mật khẩu?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(330,1,'vi','acl/auth','not_member','Chưa là thành viên?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(331,1,'vi','acl/auth','register_now','Đăng ký ngay','2023-01-22 08:10:09','2023-01-22 08:10:09'),(332,1,'vi','acl/auth','languages','Ngôn ngữ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(333,1,'vi','acl/auth','password_confirmation','Xác nhận mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(334,1,'vi','acl/auth','reset_password','Khôi phục mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(335,1,'vi','acl/auth','sign_in_below','Đăng nhập','2023-01-22 08:10:09','2023-01-22 08:10:09'),(336,1,'vi','acl/permissions','notices.role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(337,1,'vi','acl/permissions','notices.role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(338,1,'vi','acl/permissions','notices.role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2023-01-22 08:10:09','2023-01-22 08:10:09'),(339,1,'vi','acl/permissions','notices.delete_global_role','Bạn không thể xóa quyền người dùng hệ thống!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(340,1,'vi','acl/permissions','notices.delete_success','Quyền người dùng đã được xóa!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(341,1,'vi','acl/permissions','notices.modified_success','Quyền người dùng đã được cập nhật thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(342,1,'vi','acl/permissions','notices.create_success','Quyền người dùng mới đã được tạo thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(343,1,'vi','acl/permissions','notices.duplicated_success','Quyền người dùng đã được sao chép thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(344,1,'vi','acl/permissions','notices.no_select','Hãy chọn ít nhất một quyền người dùng để thực hiện hành động này!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(345,1,'vi','acl/permissions','notices.not_found','Không tìm thấy quyền người dùng này','2023-01-22 08:10:09','2023-01-22 08:10:09'),(346,1,'vi','acl/permissions','name','Tên','2023-01-22 08:10:09','2023-01-22 08:10:09'),(347,1,'vi','acl/permissions','current_role','Quyền hiện tại','2023-01-22 08:10:09','2023-01-22 08:10:09'),(348,1,'vi','acl/permissions','no_role_assigned','Không có quyền hạn nào','2023-01-22 08:10:09','2023-01-22 08:10:09'),(349,1,'vi','acl/permissions','role_assigned','Quyền đã được gán','2023-01-22 08:10:09','2023-01-22 08:10:09'),(350,1,'vi','acl/permissions','create_role','Tạo quyền mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(351,1,'vi','acl/permissions','role_name','Tên','2023-01-22 08:10:09','2023-01-22 08:10:09'),(352,1,'vi','acl/permissions','role_description','Mô tả','2023-01-22 08:10:09','2023-01-22 08:10:09'),(353,1,'vi','acl/permissions','permission_flags','Cờ đánh dấu quyền hạn','2023-01-22 08:10:09','2023-01-22 08:10:09'),(354,1,'vi','acl/permissions','cancel','Hủy bỏ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(355,1,'vi','acl/permissions','reset','Làm lại','2023-01-22 08:10:09','2023-01-22 08:10:09'),(356,1,'vi','acl/permissions','save','Lưu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(357,1,'vi','acl/permissions','global_role_msg','Đây là một phân quyền toàn cục và không thể thay đổi. Bạn có thể sử dụng nút \"Nhân bản\" để tạo một bản sao chép cho phân quyền này và chỉnh sửa.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(358,1,'vi','acl/permissions','details','Chi tiết','2023-01-22 08:10:09','2023-01-22 08:10:09'),(359,1,'vi','acl/permissions','duplicate','Nhân bản','2023-01-22 08:10:09','2023-01-22 08:10:09'),(360,1,'vi','acl/permissions','all','Tất cả phân quyền','2023-01-22 08:10:09','2023-01-22 08:10:09'),(361,1,'vi','acl/permissions','list_role','Danh sách quyền','2023-01-22 08:10:09','2023-01-22 08:10:09'),(362,1,'vi','acl/permissions','created_on','Ngày tạo','2023-01-22 08:10:09','2023-01-22 08:10:09'),(363,1,'vi','acl/permissions','created_by','Được tạo bởi','2023-01-22 08:10:09','2023-01-22 08:10:09'),(364,1,'vi','acl/permissions','actions','Tác vụ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(365,1,'vi','acl/permissions','create_success','Tạo thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(366,1,'vi','acl/permissions','delete_global_role','Không thể xóa quyền hệ thống','2023-01-22 08:10:09','2023-01-22 08:10:09'),(367,1,'vi','acl/permissions','delete_success','Xóa quyền thành công','2023-01-22 08:10:09','2023-01-22 08:10:09'),(368,1,'vi','acl/permissions','duplicated_success','Nhân bản thành công','2023-01-22 08:10:09','2023-01-22 08:10:09'),(369,1,'vi','acl/permissions','modified_success','Sửa thành công','2023-01-22 08:10:09','2023-01-22 08:10:09'),(370,1,'vi','acl/permissions','no_select','Hãy chọn ít nhất một quyền để thực hiện hành động này!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(371,1,'vi','acl/permissions','not_found','Không tìm thấy quyền thành viên nào!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(372,1,'vi','acl/permissions','options','Tùy chọn','2023-01-22 08:10:09','2023-01-22 08:10:09'),(373,1,'vi','acl/permissions','role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(374,1,'vi','acl/permissions','role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2023-01-22 08:10:09','2023-01-22 08:10:09'),(375,1,'vi','acl/permissions','role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(376,1,'vi','acl/permissions','access_denied_message','Bạn không có quyền sử dụng chức năng này!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(377,1,'vi','acl/permissions','roles','Quyền','2023-01-22 08:10:09','2023-01-22 08:10:09'),(378,1,'vi','acl/permissions','role_permission','Nhóm và phân quyền','2023-01-22 08:10:09','2023-01-22 08:10:09'),(379,1,'vi','acl/permissions','user_management','Quản lý người dùng hệ thống','2023-01-22 08:10:09','2023-01-22 08:10:09'),(380,1,'vi','acl/permissions','super_user_management','Quản lý người dùng cấp cao','2023-01-22 08:10:09','2023-01-22 08:10:09'),(381,1,'vi','acl/permissions','action_unauthorized','Hành động này không được phép','2023-01-22 08:10:09','2023-01-22 08:10:09'),(382,1,'vi','acl/reminders','password','Mật khẩu phải ít nhất 6 kí tự và trùng khớp với mật khẩu xác nhận.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(383,1,'vi','acl/reminders','user','Hệ thống không thể tìm thấy tài khoản với email này.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(384,1,'vi','acl/reminders','token','Mã khôi phục mật khẩu này không hợp lệ.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(385,1,'vi','acl/reminders','sent','Liên kết khôi phục mật khẩu đã được gửi!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(386,1,'vi','acl/reminders','reset','Mật khẩu đã được thay đổi!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(387,1,'vi','acl/users','delete_user_logged_in','Không thể xóa người dùng đang đăng nhập hệ thống!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(388,1,'vi','acl/users','no_select','Hãy chọn ít nhất một trường để thực hiện hành động này!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(389,1,'vi','acl/users','lock_user_logged_in','Không thể khóa người dùng đang đăng nhập hệ thống!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(390,1,'vi','acl/users','update_success','Cập nhật trạng thái thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(391,1,'vi','acl/users','save_setting_failed','Có lỗi xảy ra trong quá trình lưu cài đặt của người dùng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(392,1,'vi','acl/users','not_found','Không tìm thấy người dùng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(393,1,'vi','acl/users','email_exist','Email này đã được sử dụng bởi người dùng khác trong hệ thống','2023-01-22 08:10:09','2023-01-22 08:10:09'),(394,1,'vi','acl/users','username_exist','Tên đăng nhập này đã được sử dụng bởi người dùng khác trong hệ thống','2023-01-22 08:10:09','2023-01-22 08:10:09'),(395,1,'vi','acl/users','update_profile_success','Thông tin tài khoản của bạn đã được cập nhật thành công','2023-01-22 08:10:09','2023-01-22 08:10:09'),(396,1,'vi','acl/users','password_update_success','Cập nhật mật khẩu thành công','2023-01-22 08:10:09','2023-01-22 08:10:09'),(397,1,'vi','acl/users','current_password_not_valid','Mật khẩu hiện tại không chính xác','2023-01-22 08:10:09','2023-01-22 08:10:09'),(398,1,'vi','acl/users','user_exist_in','Người dùng đã là thành viên','2023-01-22 08:10:09','2023-01-22 08:10:09'),(399,1,'vi','acl/users','email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(400,1,'vi','acl/users','username','Tên đăng nhập','2023-01-22 08:10:09','2023-01-22 08:10:09'),(401,1,'vi','acl/users','role','Phân quyền','2023-01-22 08:10:09','2023-01-22 08:10:09'),(402,1,'vi','acl/users','first_name','Họ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(403,1,'vi','acl/users','last_name','Tên','2023-01-22 08:10:09','2023-01-22 08:10:09'),(404,1,'vi','acl/users','message','Thông điệp','2023-01-22 08:10:09','2023-01-22 08:10:09'),(405,1,'vi','acl/users','cancel_btn','Hủy bỏ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(406,1,'vi','acl/users','password','Mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(407,1,'vi','acl/users','new_password','Mật khẩu mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(408,1,'vi','acl/users','save','Lưu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(409,1,'vi','acl/users','confirm_new_password','Xác nhận mật khẩu mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(410,1,'vi','acl/users','deleted','Xóa thành viên thành công','2023-01-22 08:10:09','2023-01-22 08:10:09'),(411,1,'vi','acl/users','cannot_delete','Không thể xóa thành viên','2023-01-22 08:10:09','2023-01-22 08:10:09'),(412,1,'vi','acl/users','last_login','Lần cuối đăng nhập','2023-01-22 08:10:09','2023-01-22 08:10:09'),(413,1,'vi','acl/users','error_update_profile_image','Có lỗi trong quá trình đổi ảnh đại diện','2023-01-22 08:10:09','2023-01-22 08:10:09'),(414,1,'vi','acl/users','email_reminder_template','<h3>Xin chào :name</h3><p>Hệ thống vừa nhận được yêu cầu khôi phục mật khẩu cho tài khoản của bạn, để hoàn tất tác vụ này vui lòng click vào đường link bên dưới.</p><p><a href=\":link\">Khôi phục mật khẩu</a></p><p>Nếu không phải bạn yêu cầu khôi phục mật khẩu, vui lòng bỏ qua email này.</p><p>Email này có giá trị trong vòng 60 phút kể từ lúc nhận được email.</p>','2023-01-22 08:10:09','2023-01-22 08:10:09'),(415,1,'vi','acl/users','change_profile_image','Thay đổi ảnh đại diện','2023-01-22 08:10:09','2023-01-22 08:10:09'),(416,1,'vi','acl/users','new_image','Ảnh mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(417,1,'vi','acl/users','loading','Đang tải','2023-01-22 08:10:09','2023-01-22 08:10:09'),(418,1,'vi','acl/users','close','Đóng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(419,1,'vi','acl/users','update','Cập nhật','2023-01-22 08:10:09','2023-01-22 08:10:09'),(420,1,'vi','acl/users','read_image_failed','Không đọc được nội dung của hình ảnh','2023-01-22 08:10:09','2023-01-22 08:10:09'),(421,1,'vi','acl/users','update_avatar_success','Cập nhật ảnh đại diện thành công!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(422,1,'vi','acl/users','users','Quản trị viên','2023-01-22 08:10:09','2023-01-22 08:10:09'),(423,1,'vi','acl/users','info.title','Thông tin người dùng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(424,1,'vi','acl/users','info.first_name','Họ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(425,1,'vi','acl/users','info.last_name','Tên','2023-01-22 08:10:09','2023-01-22 08:10:09'),(426,1,'vi','acl/users','info.email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(427,1,'vi','acl/users','info.second_email','Email dự phòng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(428,1,'vi','acl/users','info.address','Địa chỉ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(429,1,'vi','acl/users','info.second_address','Địa chỉ dự phòng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(430,1,'vi','acl/users','info.birth_day','Ngày sinh','2023-01-22 08:10:09','2023-01-22 08:10:09'),(431,1,'vi','acl/users','info.job','Nghề nghiệp','2023-01-22 08:10:09','2023-01-22 08:10:09'),(432,1,'vi','acl/users','info.mobile_number','Số điện thoại di động','2023-01-22 08:10:09','2023-01-22 08:10:09'),(433,1,'vi','acl/users','info.second_mobile_number','Số điện thoại dự phòng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(434,1,'vi','acl/users','info.interes','Sở thích','2023-01-22 08:10:09','2023-01-22 08:10:09'),(435,1,'vi','acl/users','info.about','Giới thiệu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(436,1,'vi','acl/users','gender.title','Giới tính','2023-01-22 08:10:09','2023-01-22 08:10:09'),(437,1,'vi','acl/users','gender.male','nam','2023-01-22 08:10:09','2023-01-22 08:10:09'),(438,1,'vi','acl/users','gender.female','nữ','2023-01-22 08:10:09','2023-01-22 08:10:09'),(439,1,'vi','acl/users','statuses.activated','Đang hoạt động','2023-01-22 08:10:09','2023-01-22 08:10:09'),(440,1,'vi','acl/users','statuses.deactivated','Đã khoá','2023-01-22 08:10:09','2023-01-22 08:10:09'),(441,1,'vi','acl/users','change_password','Thay đổi mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(442,1,'vi','acl/users','current_password','Mật khẩu hiện tại','2023-01-22 08:10:09','2023-01-22 08:10:09'),(443,1,'vi','acl/users','make_super','Thiết lập quyền cao nhất','2023-01-22 08:10:09','2023-01-22 08:10:09'),(444,1,'vi','acl/users','remove_super','Loại bỏ quyền cao nhất','2023-01-22 08:10:09','2023-01-22 08:10:09'),(445,1,'vi','acl/users','is_super','Quyền cao nhất?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(446,1,'vi','acl/users','email_placeholder','Ex: example@gmail.com','2023-01-22 08:10:09','2023-01-22 08:10:09'),(447,1,'vi','acl/users','password_confirmation','Nhập lại mật khẩu','2023-01-22 08:10:09','2023-01-22 08:10:09'),(448,1,'vi','acl/users','select_role','Chọn nhóm','2023-01-22 08:10:09','2023-01-22 08:10:09'),(449,1,'vi','acl/users','create_new_user','Tạo tài khoản quản trị viên mới','2023-01-22 08:10:09','2023-01-22 08:10:09'),(450,1,'vi','acl/users','cannot_delete_super_user','Vượt quyền hạn, không thể xoá quản trị viên cấp cao nhất!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(451,1,'vi','acl/users','assigned_role','Cấp quyền','2023-01-22 08:10:09','2023-01-22 08:10:09'),(452,1,'vi','acl/users','total_users','Tổng số người dùng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(453,1,'vi','acl/users','view_user_profile','Xem thông tin người dùng','2023-01-22 08:10:09','2023-01-22 08:10:09'),(454,1,'vi','acl/users','no_role_assigned','Chưa có quyền nào','2023-01-22 08:10:09','2023-01-22 08:10:09'),(455,1,'en','base/base','yes','Yes','2023-01-22 08:10:09','2023-01-22 08:10:09'),(456,1,'en','base/base','no','No','2023-01-22 08:10:09','2023-01-22 08:10:09'),(457,1,'en','base/base','is_default','Is default?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(458,1,'en','base/base','proc_close_disabled_error','Function proc_close() is disabled. Please contact your hosting provider to enable\n it. Or you can add to .env: CAN_EXECUTE_COMMAND=false to disable this feature.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(459,1,'en','base/base','email_template.header','Email template header','2023-01-22 08:10:09','2023-01-22 08:10:09'),(460,1,'en','base/base','email_template.footer','Email template footer','2023-01-22 08:10:09','2023-01-22 08:10:09'),(461,1,'en','base/base','email_template.site_title','Site title','2023-01-22 08:10:09','2023-01-22 08:10:09'),(462,1,'en','base/base','email_template.site_url','Site URL','2023-01-22 08:10:09','2023-01-22 08:10:09'),(463,1,'en','base/base','email_template.site_logo','Site Logo','2023-01-22 08:10:09','2023-01-22 08:10:09'),(464,1,'en','base/base','email_template.date_time','Current date time','2023-01-22 08:10:09','2023-01-22 08:10:09'),(465,1,'en','base/base','email_template.date_year','Current year','2023-01-22 08:10:09','2023-01-22 08:10:09'),(466,1,'en','base/base','email_template.site_admin_email','Site admin email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(467,1,'en','base/base','change_image','Change image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(468,1,'en','base/base','delete_image','Delete image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(469,1,'en','base/base','preview_image','Preview image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(470,1,'en','base/base','image','Image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(471,1,'en','base/base','using_button','Using button','2023-01-22 08:10:09','2023-01-22 08:10:09'),(472,1,'en','base/base','select_image','Select image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(473,1,'en','base/base','to_add_more_image','to add more images','2023-01-22 08:10:09','2023-01-22 08:10:09'),(474,1,'en','base/base','add_image','Add image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(475,1,'en','base/cache','cache_management','Cache management','2023-01-22 08:10:09','2023-01-22 08:10:09'),(476,1,'en','base/cache','cache_commands','Clear cache commands','2023-01-22 08:10:09','2023-01-22 08:10:09'),(477,1,'en','base/cache','commands.clear_cms_cache.title','Clear all CMS cache','2023-01-22 08:10:09','2023-01-22 08:10:09'),(478,1,'en','base/cache','commands.clear_cms_cache.description','Clear CMS caching: database caching, static blocks... Run this command when you don\'t see the changes after updating data.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(479,1,'en','base/cache','commands.clear_cms_cache.success_msg','Cache cleaned','2023-01-22 08:10:09','2023-01-22 08:10:09'),(480,1,'en','base/cache','commands.refresh_compiled_views.title','Refresh compiled views','2023-01-22 08:10:09','2023-01-22 08:10:09'),(481,1,'en','base/cache','commands.refresh_compiled_views.description','Clear compiled views to make views up to date.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(482,1,'en','base/cache','commands.refresh_compiled_views.success_msg','Cache view refreshed','2023-01-22 08:10:09','2023-01-22 08:10:09'),(483,1,'en','base/cache','commands.clear_config_cache.title','Clear config cache','2023-01-22 08:10:09','2023-01-22 08:10:09'),(484,1,'en','base/cache','commands.clear_config_cache.description','You might need to refresh the config caching when you change something on production environment.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(485,1,'en','base/cache','commands.clear_config_cache.success_msg','Config cache cleaned','2023-01-22 08:10:09','2023-01-22 08:10:09'),(486,1,'en','base/cache','commands.clear_route_cache.title','Clear route cache','2023-01-22 08:10:09','2023-01-22 08:10:09'),(487,1,'en','base/cache','commands.clear_route_cache.description','Clear cache routing.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(488,1,'en','base/cache','commands.clear_route_cache.success_msg','The route cache has been cleaned','2023-01-22 08:10:09','2023-01-22 08:10:09'),(489,1,'en','base/cache','commands.clear_log.title','Clear log','2023-01-22 08:10:09','2023-01-22 08:10:09'),(490,1,'en','base/cache','commands.clear_log.description','Clear system log files','2023-01-22 08:10:09','2023-01-22 08:10:09'),(491,1,'en','base/cache','commands.clear_log.success_msg','The system log has been cleaned','2023-01-22 08:10:09','2023-01-22 08:10:09'),(492,1,'en','base/enums','statuses.draft','Draft','2023-01-22 08:10:09','2023-01-22 08:10:09'),(493,1,'en','base/enums','statuses.pending','Pending','2023-01-22 08:10:09','2023-01-22 08:10:09'),(494,1,'en','base/enums','statuses.published','Published','2023-01-22 08:10:09','2023-01-22 08:10:09'),(495,1,'en','base/errors','401_title','Permission Denied','2023-01-22 08:10:09','2023-01-22 08:10:09'),(496,1,'en','base/errors','401_msg','<li>You have not been granted access to the section by the administrator.</li>\n <li>You may have the wrong account type.</li>\n <li>You are not authorized to view the requested resource.</li>\n <li>Your subscription may have expired.</li>','2023-01-22 08:10:09','2023-01-22 08:10:09'),(497,1,'en','base/errors','404_title','Page could not be found','2023-01-22 08:10:09','2023-01-22 08:10:09'),(498,1,'en','base/errors','404_msg','<li>The page you requested does not exist.</li>\n <li>The link you clicked is no longer.</li>\n <li>The page may have moved to a new location.</li>\n <li>An error may have occurred.</li>\n <li>You are not authorized to view the requested resource.</li>','2023-01-22 08:10:09','2023-01-22 08:10:09'),(499,1,'en','base/errors','500_title','Page could not be loaded','2023-01-22 08:10:09','2023-01-22 08:10:09'),(500,1,'en','base/errors','500_msg','<li>The page you requested does not exist.</li>\n <li>The link you clicked is no longer.</li>\n <li>The page may have moved to a new location.</li>\n <li>An error may have occurred.</li>\n <li>You are not authorized to view the requested resource.</li>','2023-01-22 08:10:09','2023-01-22 08:10:09'),(501,1,'en','base/errors','reasons','This may have occurred because of several reasons','2023-01-22 08:10:09','2023-01-22 08:10:09'),(502,1,'en','base/errors','try_again','Please try again in a few minutes, or alternatively return to the homepage by <a href=\"http://cms.local/admin\">clicking here</a>.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(503,1,'en','base/errors','not_found','Not Found','2023-01-22 08:10:09','2023-01-22 08:10:09'),(504,1,'en','base/forms','choose_image','Choose image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(505,1,'en','base/forms','actions','Actions','2023-01-22 08:10:09','2023-01-22 08:10:09'),(506,1,'en','base/forms','save','Save','2023-01-22 08:10:09','2023-01-22 08:10:09'),(507,1,'en','base/forms','save_and_continue','Save & Edit','2023-01-22 08:10:09','2023-01-22 08:10:09'),(508,1,'en','base/forms','image','Image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(509,1,'en','base/forms','image_placeholder','Insert path of image or click upload button','2023-01-22 08:10:09','2023-01-22 08:10:09'),(510,1,'en','base/forms','create','Create','2023-01-22 08:10:09','2023-01-22 08:10:09'),(511,1,'en','base/forms','edit','Edit','2023-01-22 08:10:09','2023-01-22 08:10:09'),(512,1,'en','base/forms','permalink','Permalink','2023-01-22 08:10:09','2023-01-22 08:10:09'),(513,1,'en','base/forms','ok','OK','2023-01-22 08:10:09','2023-01-22 08:10:09'),(514,1,'en','base/forms','cancel','Cancel','2023-01-22 08:10:09','2023-01-22 08:10:09'),(515,1,'en','base/forms','character_remain','character(s) remain','2023-01-22 08:10:09','2023-01-22 08:10:09'),(516,1,'en','base/forms','template','Template','2023-01-22 08:10:09','2023-01-22 08:10:09'),(517,1,'en','base/forms','choose_file','Choose file','2023-01-22 08:10:09','2023-01-22 08:10:09'),(518,1,'en','base/forms','file','File','2023-01-22 08:10:09','2023-01-22 08:10:09'),(519,1,'en','base/forms','content','Content','2023-01-22 08:10:09','2023-01-22 08:10:09'),(520,1,'en','base/forms','description','Description','2023-01-22 08:10:09','2023-01-22 08:10:09'),(521,1,'en','base/forms','name','Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(522,1,'en','base/forms','slug','Slug','2023-01-22 08:10:09','2023-01-22 08:10:09'),(523,1,'en','base/forms','title','Title','2023-01-22 08:10:09','2023-01-22 08:10:09'),(524,1,'en','base/forms','value','Value','2023-01-22 08:10:09','2023-01-22 08:10:09'),(525,1,'en','base/forms','name_placeholder','Name','2023-01-22 08:10:09','2023-01-22 08:10:09'),(526,1,'en','base/forms','alias_placeholder','Alias','2023-01-22 08:10:09','2023-01-22 08:10:09'),(527,1,'en','base/forms','description_placeholder','Short description','2023-01-22 08:10:09','2023-01-22 08:10:09'),(528,1,'en','base/forms','parent','Parent','2023-01-22 08:10:09','2023-01-22 08:10:09'),(529,1,'en','base/forms','icon','Icon','2023-01-22 08:10:09','2023-01-22 08:10:09'),(530,1,'en','base/forms','icon_placeholder','Ex: fa fa-home','2023-01-22 08:10:09','2023-01-22 08:10:09'),(531,1,'en','base/forms','order_by','Order by','2023-01-22 08:10:09','2023-01-22 08:10:09'),(532,1,'en','base/forms','order_by_placeholder','Order by','2023-01-22 08:10:09','2023-01-22 08:10:09'),(533,1,'en','base/forms','is_featured','Is featured?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(534,1,'en','base/forms','is_default','Is default?','2023-01-22 08:10:09','2023-01-22 08:10:09'),(535,1,'en','base/forms','update','Update','2023-01-22 08:10:09','2023-01-22 08:10:09'),(536,1,'en','base/forms','publish','Publish','2023-01-22 08:10:09','2023-01-22 08:10:09'),(537,1,'en','base/forms','remove_image','Remove image','2023-01-22 08:10:09','2023-01-22 08:10:09'),(538,1,'en','base/forms','remove_file','Remove file','2023-01-22 08:10:09','2023-01-22 08:10:09'),(539,1,'en','base/forms','order','Order','2023-01-22 08:10:09','2023-01-22 08:10:09'),(540,1,'en','base/forms','alias','Alias','2023-01-22 08:10:09','2023-01-22 08:10:09'),(541,1,'en','base/forms','basic_information','Basic information','2023-01-22 08:10:09','2023-01-22 08:10:09'),(542,1,'en','base/forms','short_code','Shortcode','2023-01-22 08:10:09','2023-01-22 08:10:09'),(543,1,'en','base/forms','add_short_code','Add a shortcode','2023-01-22 08:10:09','2023-01-22 08:10:09'),(544,1,'en','base/forms','add','Add','2023-01-22 08:10:09','2023-01-22 08:10:09'),(545,1,'en','base/forms','link','Link','2023-01-22 08:10:09','2023-01-22 08:10:09'),(546,1,'en','base/forms','show_hide_editor','Show/Hide Editor','2023-01-22 08:10:09','2023-01-22 08:10:09'),(547,1,'en','base/forms','basic_info_title','Basic information','2023-01-22 08:10:09','2023-01-22 08:10:09'),(548,1,'en','base/forms','expand_all','Expand all','2023-01-22 08:10:09','2023-01-22 08:10:09'),(549,1,'en','base/forms','collapse_all','Collapse all','2023-01-22 08:10:09','2023-01-22 08:10:09'),(550,1,'en','base/forms','view_new_tab','Open in new tab','2023-01-22 08:10:09','2023-01-22 08:10:09'),(551,1,'en','base/layouts','platform_admin','Platform Administration','2023-01-22 08:10:09','2023-01-22 08:10:09'),(552,1,'en','base/layouts','dashboard','Dashboard','2023-01-22 08:10:09','2023-01-22 08:10:09'),(553,1,'en','base/layouts','widgets','Widgets','2023-01-22 08:10:09','2023-01-22 08:10:09'),(554,1,'en','base/layouts','plugins','Plugins','2023-01-22 08:10:09','2023-01-22 08:10:09'),(555,1,'en','base/layouts','settings','Settings','2023-01-22 08:10:09','2023-01-22 08:10:09'),(556,1,'en','base/layouts','setting_general','General','2023-01-22 08:10:09','2023-01-22 08:10:09'),(557,1,'en','base/layouts','setting_email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(558,1,'en','base/layouts','system_information','System information','2023-01-22 08:10:09','2023-01-22 08:10:09'),(559,1,'en','base/layouts','theme','Theme','2023-01-22 08:10:09','2023-01-22 08:10:09'),(560,1,'en','base/layouts','copyright','Copyright :year © :company. Version: <span>:version</span>','2023-01-22 08:10:09','2023-01-22 08:10:09'),(561,1,'en','base/layouts','profile','Profile','2023-01-22 08:10:09','2023-01-22 08:10:09'),(562,1,'en','base/layouts','logout','Logout','2023-01-22 08:10:09','2023-01-22 08:10:09'),(563,1,'en','base/layouts','no_search_result','No results found, please try with different keywords.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(564,1,'en','base/layouts','home','Home','2023-01-22 08:10:09','2023-01-22 08:10:09'),(565,1,'en','base/layouts','search','Search','2023-01-22 08:10:09','2023-01-22 08:10:09'),(566,1,'en','base/layouts','add_new','Add new','2023-01-22 08:10:09','2023-01-22 08:10:09'),(567,1,'en','base/layouts','n_a','N/A','2023-01-22 08:10:09','2023-01-22 08:10:09'),(568,1,'en','base/layouts','page_loaded_time','Page loaded in','2023-01-22 08:10:09','2023-01-22 08:10:09'),(569,1,'en','base/layouts','view_website','View website','2023-01-22 08:10:09','2023-01-22 08:10:09'),(570,1,'en','base/notices','create_success_message','Created successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(571,1,'en','base/notices','update_success_message','Updated successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(572,1,'en','base/notices','delete_success_message','Deleted successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(573,1,'en','base/notices','success_header','Success!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(574,1,'en','base/notices','error_header','Error!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(575,1,'en','base/notices','no_select','Please select at least one record to perform this action!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(576,1,'en','base/notices','processing_request','We are processing your request.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(577,1,'en','base/notices','error','Error!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(578,1,'en','base/notices','success','Success!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(579,1,'en','base/notices','info','Info!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(580,1,'en','base/notices','enum.validate_message','The :attribute value you have entered is invalid.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(581,1,'en','base/system','no_select','Please select at least one record to take this action!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(582,1,'en','base/system','cannot_find_user','Unable to find specified user','2023-01-22 08:10:09','2023-01-22 08:10:09'),(583,1,'en','base/system','supper_revoked','Super user access revoked','2023-01-22 08:10:09','2023-01-22 08:10:09'),(584,1,'en','base/system','cannot_revoke_yourself','Can not revoke supper user access permission yourself!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(585,1,'en','base/system','cant_remove_supper','You don\'t has permission to remove this super user','2023-01-22 08:10:09','2023-01-22 08:10:09'),(586,1,'en','base/system','cant_find_user_with_email','Unable to find user with specified email address','2023-01-22 08:10:09','2023-01-22 08:10:09'),(587,1,'en','base/system','supper_granted','Super user access granted','2023-01-22 08:10:09','2023-01-22 08:10:09'),(588,1,'en','base/system','delete_log_success','Delete log file successfully!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(589,1,'en','base/system','get_member_success','Member list retrieved successfully','2023-01-22 08:10:09','2023-01-22 08:10:09'),(590,1,'en','base/system','error_occur','The following errors occurred','2023-01-22 08:10:09','2023-01-22 08:10:09'),(591,1,'en','base/system','user_management','User Management','2023-01-22 08:10:09','2023-01-22 08:10:09'),(592,1,'en','base/system','user_management_description','Manage users.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(593,1,'en','base/system','role_and_permission','Roles and Permissions','2023-01-22 08:10:09','2023-01-22 08:10:09'),(594,1,'en','base/system','role_and_permission_description','Manage the available roles.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(595,1,'en','base/system','user.list_super','List Super Users','2023-01-22 08:10:09','2023-01-22 08:10:09'),(596,1,'en','base/system','user.email','Email','2023-01-22 08:10:09','2023-01-22 08:10:09'),(597,1,'en','base/system','user.last_login','Last Login','2023-01-22 08:10:09','2023-01-22 08:10:09'),(598,1,'en','base/system','user.username','Username','2023-01-22 08:10:09','2023-01-22 08:10:09'),(599,1,'en','base/system','user.add_user','Add Super User','2023-01-22 08:10:09','2023-01-22 08:10:09'),(600,1,'en','base/system','user.cancel','Cancel','2023-01-22 08:10:09','2023-01-22 08:10:09'),(601,1,'en','base/system','user.create','Create','2023-01-22 08:10:09','2023-01-22 08:10:09'),(602,1,'en','base/system','options.features','Feature Access Control','2023-01-22 08:10:09','2023-01-22 08:10:09'),(603,1,'en','base/system','options.feature_description','Manage the available.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(604,1,'en','base/system','options.manage_super','Super User Management','2023-01-22 08:10:09','2023-01-22 08:10:09'),(605,1,'en','base/system','options.manage_super_description','Add/remove super users.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(606,1,'en','base/system','options.info','System information','2023-01-22 08:10:09','2023-01-22 08:10:09'),(607,1,'en','base/system','options.info_description','All information about current system configuration.','2023-01-22 08:10:09','2023-01-22 08:10:09'),(608,1,'en','base/system','info.title','System information','2023-01-22 08:10:09','2023-01-22 08:10:09'),(609,1,'en','base/system','info.cache','Cache','2023-01-22 08:10:09','2023-01-22 08:10:09'),(610,1,'en','base/system','info.locale','Active locale','2023-01-22 08:10:09','2023-01-22 08:10:09'),(611,1,'en','base/system','info.environment','Environment','2023-01-22 08:10:09','2023-01-22 08:10:09'),(612,1,'en','base/system','disabled_in_demo_mode','You cannot do it in demo mode!','2023-01-22 08:10:09','2023-01-22 08:10:09'),(613,1,'en','base/system','report_description','Please share this information for troubleshooting','2023-01-22 08:10:09','2023-01-22 08:10:09'),(614,1,'en','base/system','get_system_report','Get System Report','2023-01-22 08:10:09','2023-01-22 08:10:09'),(615,1,'en','base/system','system_environment','System Environment','2023-01-22 08:10:09','2023-01-22 08:10:09'),(616,1,'en','base/system','framework_version','Framework Version','2023-01-22 08:10:09','2023-01-22 08:10:09'),(617,1,'en','base/system','timezone','Timezone','2023-01-22 08:10:09','2023-01-22 08:10:09'),(618,1,'en','base/system','debug_mode','Debug Mode','2023-01-22 08:10:09','2023-01-22 08:10:09'),(619,1,'en','base/system','storage_dir_writable','Storage Dir Writable','2023-01-22 08:10:09','2023-01-22 08:10:09'),(620,1,'en','base/system','cache_dir_writable','Cache Dir Writable','2023-01-22 08:10:09','2023-01-22 08:10:09'),(621,1,'en','base/system','app_size','App Size','2023-01-22 08:10:09','2023-01-22 08:10:09'),(622,1,'en','base/system','server_environment','Server Environment','2023-01-22 08:10:09','2023-01-22 08:10:09'),(623,1,'en','base/system','php_version','PHP Version','2023-01-22 08:10:09','2023-01-22 08:10:09'),(624,1,'en','base/system','php_version_error','PHP must be >= :version','2023-01-22 08:10:09','2023-01-22 08:10:09'),(625,1,'en','base/system','server_software','Server Software','2023-01-22 08:10:10','2023-01-22 08:10:10'),(626,1,'en','base/system','server_os','Server OS','2023-01-22 08:10:10','2023-01-22 08:10:10'),(627,1,'en','base/system','database','Database','2023-01-22 08:10:10','2023-01-22 08:10:10'),(628,1,'en','base/system','ssl_installed','SSL Installed','2023-01-22 08:10:10','2023-01-22 08:10:10'),(629,1,'en','base/system','cache_driver','Cache Driver','2023-01-22 08:10:10','2023-01-22 08:10:10'),(630,1,'en','base/system','session_driver','Session Driver','2023-01-22 08:10:10','2023-01-22 08:10:10'),(631,1,'en','base/system','queue_connection','Queue Connection','2023-01-22 08:10:10','2023-01-22 08:10:10'),(632,1,'en','base/system','mbstring_ext','Mbstring Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(633,1,'en','base/system','openssl_ext','OpenSSL Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(634,1,'en','base/system','pdo_ext','PDO Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(635,1,'en','base/system','curl_ext','CURL Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(636,1,'en','base/system','exif_ext','Exif Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(637,1,'en','base/system','file_info_ext','File info Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(638,1,'en','base/system','tokenizer_ext','Tokenizer Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(639,1,'en','base/system','extra_stats','Extra Stats','2023-01-22 08:10:10','2023-01-22 08:10:10'),(640,1,'en','base/system','installed_packages','Installed packages and their version numbers','2023-01-22 08:10:10','2023-01-22 08:10:10'),(641,1,'en','base/system','extra_information','Extra Information','2023-01-22 08:10:10','2023-01-22 08:10:10'),(642,1,'en','base/system','copy_report','Copy Report','2023-01-22 08:10:10','2023-01-22 08:10:10'),(643,1,'en','base/system','package_name','Package Name','2023-01-22 08:10:10','2023-01-22 08:10:10'),(644,1,'en','base/system','dependency_name','Dependency Name','2023-01-22 08:10:10','2023-01-22 08:10:10'),(645,1,'en','base/system','version','Version','2023-01-22 08:10:10','2023-01-22 08:10:10'),(646,1,'en','base/system','cms_version','CMS Version','2023-01-22 08:10:10','2023-01-22 08:10:10'),(647,1,'en','base/system','imagick_or_gd_ext','Imagick/GD Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(648,1,'en','base/system','updater','System Updater','2023-01-22 08:10:10','2023-01-22 08:10:10'),(649,1,'en','base/tables','id','ID','2023-01-22 08:10:10','2023-01-22 08:10:10'),(650,1,'en','base/tables','name','Name','2023-01-22 08:10:10','2023-01-22 08:10:10'),(651,1,'en','base/tables','slug','Slug','2023-01-22 08:10:10','2023-01-22 08:10:10'),(652,1,'en','base/tables','title','Title','2023-01-22 08:10:10','2023-01-22 08:10:10'),(653,1,'en','base/tables','order_by','Order By','2023-01-22 08:10:10','2023-01-22 08:10:10'),(654,1,'en','base/tables','order','Order','2023-01-22 08:10:10','2023-01-22 08:10:10'),(655,1,'en','base/tables','status','Status','2023-01-22 08:10:10','2023-01-22 08:10:10'),(656,1,'en','base/tables','created_at','Created At','2023-01-22 08:10:10','2023-01-22 08:10:10'),(657,1,'en','base/tables','updated_at','Updated At','2023-01-22 08:10:10','2023-01-22 08:10:10'),(658,1,'en','base/tables','description','Description','2023-01-22 08:10:10','2023-01-22 08:10:10'),(659,1,'en','base/tables','operations','Operations','2023-01-22 08:10:10','2023-01-22 08:10:10'),(660,1,'en','base/tables','url','URL','2023-01-22 08:10:10','2023-01-22 08:10:10'),(661,1,'en','base/tables','author','Author','2023-01-22 08:10:10','2023-01-22 08:10:10'),(662,1,'en','base/tables','notes','Notes','2023-01-22 08:10:10','2023-01-22 08:10:10'),(663,1,'en','base/tables','column','Column','2023-01-22 08:10:10','2023-01-22 08:10:10'),(664,1,'en','base/tables','origin','Origin','2023-01-22 08:10:10','2023-01-22 08:10:10'),(665,1,'en','base/tables','after_change','After changes','2023-01-22 08:10:10','2023-01-22 08:10:10'),(666,1,'en','base/tables','views','Views','2023-01-22 08:10:10','2023-01-22 08:10:10'),(667,1,'en','base/tables','browser','Browser','2023-01-22 08:10:10','2023-01-22 08:10:10'),(668,1,'en','base/tables','session','Session','2023-01-22 08:10:10','2023-01-22 08:10:10'),(669,1,'en','base/tables','activated','activated','2023-01-22 08:10:10','2023-01-22 08:10:10'),(670,1,'en','base/tables','deactivated','deactivated','2023-01-22 08:10:10','2023-01-22 08:10:10'),(671,1,'en','base/tables','is_featured','Is featured','2023-01-22 08:10:10','2023-01-22 08:10:10'),(672,1,'en','base/tables','edit','Edit','2023-01-22 08:10:10','2023-01-22 08:10:10'),(673,1,'en','base/tables','delete','Delete','2023-01-22 08:10:10','2023-01-22 08:10:10'),(674,1,'en','base/tables','restore','Restore','2023-01-22 08:10:10','2023-01-22 08:10:10'),(675,1,'en','base/tables','activate','Activate','2023-01-22 08:10:10','2023-01-22 08:10:10'),(676,1,'en','base/tables','deactivate','Deactivate','2023-01-22 08:10:10','2023-01-22 08:10:10'),(677,1,'en','base/tables','excel','Excel','2023-01-22 08:10:10','2023-01-22 08:10:10'),(678,1,'en','base/tables','export','Export','2023-01-22 08:10:10','2023-01-22 08:10:10'),(679,1,'en','base/tables','csv','CSV','2023-01-22 08:10:10','2023-01-22 08:10:10'),(680,1,'en','base/tables','pdf','PDF','2023-01-22 08:10:10','2023-01-22 08:10:10'),(681,1,'en','base/tables','print','Print','2023-01-22 08:10:10','2023-01-22 08:10:10'),(682,1,'en','base/tables','reset','Reset','2023-01-22 08:10:10','2023-01-22 08:10:10'),(683,1,'en','base/tables','reload','Reload','2023-01-22 08:10:10','2023-01-22 08:10:10'),(684,1,'en','base/tables','display','Display','2023-01-22 08:10:10','2023-01-22 08:10:10'),(685,1,'en','base/tables','all','All','2023-01-22 08:10:10','2023-01-22 08:10:10'),(686,1,'en','base/tables','add_new','Add New','2023-01-22 08:10:10','2023-01-22 08:10:10'),(687,1,'en','base/tables','action','Actions','2023-01-22 08:10:10','2023-01-22 08:10:10'),(688,1,'en','base/tables','delete_entry','Delete','2023-01-22 08:10:10','2023-01-22 08:10:10'),(689,1,'en','base/tables','view','View Detail','2023-01-22 08:10:10','2023-01-22 08:10:10'),(690,1,'en','base/tables','save','Save','2023-01-22 08:10:10','2023-01-22 08:10:10'),(691,1,'en','base/tables','show_from','Show from','2023-01-22 08:10:10','2023-01-22 08:10:10'),(692,1,'en','base/tables','to','to','2023-01-22 08:10:10','2023-01-22 08:10:10'),(693,1,'en','base/tables','in','in','2023-01-22 08:10:10','2023-01-22 08:10:10'),(694,1,'en','base/tables','records','records','2023-01-22 08:10:10','2023-01-22 08:10:10'),(695,1,'en','base/tables','no_data','No data to display','2023-01-22 08:10:10','2023-01-22 08:10:10'),(696,1,'en','base/tables','no_record','No record','2023-01-22 08:10:10','2023-01-22 08:10:10'),(697,1,'en','base/tables','confirm_delete','Confirm delete','2023-01-22 08:10:10','2023-01-22 08:10:10'),(698,1,'en','base/tables','confirm_delete_msg','Do you really want to delete this record?','2023-01-22 08:10:10','2023-01-22 08:10:10'),(699,1,'en','base/tables','confirm_delete_many_msg','Do you really want to delete selected record(s)?','2023-01-22 08:10:10','2023-01-22 08:10:10'),(700,1,'en','base/tables','cancel','Cancel','2023-01-22 08:10:10','2023-01-22 08:10:10'),(701,1,'en','base/tables','template','Template','2023-01-22 08:10:10','2023-01-22 08:10:10'),(702,1,'en','base/tables','email','Email','2023-01-22 08:10:10','2023-01-22 08:10:10'),(703,1,'en','base/tables','last_login','Last login','2023-01-22 08:10:10','2023-01-22 08:10:10'),(704,1,'en','base/tables','shortcode','Shortcode','2023-01-22 08:10:10','2023-01-22 08:10:10'),(705,1,'en','base/tables','image','Image','2023-01-22 08:10:10','2023-01-22 08:10:10'),(706,1,'en','base/tables','bulk_changes','Bulk changes','2023-01-22 08:10:10','2023-01-22 08:10:10'),(707,1,'en','base/tables','submit','Submit','2023-01-22 08:10:10','2023-01-22 08:10:10'),(708,1,'en','base/tables','please_select_record','Please select at least one record to perform this action!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(709,1,'en','base/tabs','detail','Detail','2023-01-22 08:10:10','2023-01-22 08:10:10'),(710,1,'en','base/tabs','file','Files','2023-01-22 08:10:10','2023-01-22 08:10:10'),(711,1,'en','base/tabs','record_note','Record Note','2023-01-22 08:10:10','2023-01-22 08:10:10'),(712,1,'en','base/tabs','revision','Revision History','2023-01-22 08:10:10','2023-01-22 08:10:10'),(713,1,'vi','base/base','yes','Có','2023-01-22 08:10:10','2023-01-22 08:10:10'),(714,1,'vi','base/base','no','Không','2023-01-22 08:10:10','2023-01-22 08:10:10'),(715,1,'vi','base/base','is_default','Mặc định?','2023-01-22 08:10:10','2023-01-22 08:10:10'),(716,1,'vi','base/base','proc_close_disabled_error','Hàm proc_close() đã bị tắt. Vui lòng liên hệ nhà cung cấp hosting để mở hàm này. Hoặc có thể thêm vào .env: CAN_EXECUTE_COMMAND=false để tắt tính năng này.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(717,1,'vi','base/base','add_image','Thêm ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(718,1,'vi','base/base','change_image','Đổi ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(719,1,'vi','base/base','delete_image','Xóa ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(720,1,'vi','base/base','email_template.date_time','Ngày giờ hiện tại','2023-01-22 08:10:10','2023-01-22 08:10:10'),(721,1,'vi','base/base','email_template.date_year','Năm hiện tại','2023-01-22 08:10:10','2023-01-22 08:10:10'),(722,1,'vi','base/base','email_template.footer','Mẫu chân trang email','2023-01-22 08:10:10','2023-01-22 08:10:10'),(723,1,'vi','base/base','email_template.header','Mẫu đầu trang email','2023-01-22 08:10:10','2023-01-22 08:10:10'),(724,1,'vi','base/base','email_template.site_admin_email','Email quản trị viên','2023-01-22 08:10:10','2023-01-22 08:10:10'),(725,1,'vi','base/base','email_template.site_logo','Logo của trang','2023-01-22 08:10:10','2023-01-22 08:10:10'),(726,1,'vi','base/base','email_template.site_title','Tiêu đề trang','2023-01-22 08:10:10','2023-01-22 08:10:10'),(727,1,'vi','base/base','email_template.site_url','URL trang','2023-01-22 08:10:10','2023-01-22 08:10:10'),(728,1,'vi','base/base','image','Hình ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(729,1,'vi','base/base','preview_image','Ảnh xem trước','2023-01-22 08:10:10','2023-01-22 08:10:10'),(730,1,'vi','base/base','select_image','Chọn ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(731,1,'vi','base/base','to_add_more_image','để thêm hình ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(732,1,'vi','base/base','using_button','Sử dụng nút','2023-01-22 08:10:10','2023-01-22 08:10:10'),(733,1,'vi','base/cache','cache_management','Quản lý bộ nhớ đệm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(734,1,'vi','base/cache','cache_commands','Các lệnh xoá bộ nhớ đệm cơ bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(735,1,'vi','base/cache','commands.clear_cms_cache.title','Xóa tất cả bộ đệm hiện có của ứng dụng','2023-01-22 08:10:10','2023-01-22 08:10:10'),(736,1,'vi','base/cache','commands.clear_cms_cache.description','Xóa các bộ nhớ đệm của ứng dụng: cơ sở dữ liệu, nội dung tĩnh... Chạy lệnh này khi bạn thử cập nhật dữ liệu nhưng giao diện không thay đổi','2023-01-22 08:10:10','2023-01-22 08:10:10'),(737,1,'vi','base/cache','commands.clear_cms_cache.success_msg','Bộ đệm đã được xóa','2023-01-22 08:10:10','2023-01-22 08:10:10'),(738,1,'vi','base/cache','commands.refresh_compiled_views.title','Làm mới bộ đệm giao diện','2023-01-22 08:10:10','2023-01-22 08:10:10'),(739,1,'vi','base/cache','commands.refresh_compiled_views.description','Làm mới bộ đệm giao diện giúp phần giao diện luôn mới nhất','2023-01-22 08:10:10','2023-01-22 08:10:10'),(740,1,'vi','base/cache','commands.refresh_compiled_views.success_msg','Bộ đệm giao diện đã được làm mới','2023-01-22 08:10:10','2023-01-22 08:10:10'),(741,1,'vi','base/cache','commands.clear_config_cache.title','Xóa bộ nhớ đệm của phần cấu hình','2023-01-22 08:10:10','2023-01-22 08:10:10'),(742,1,'vi','base/cache','commands.clear_config_cache.description','Bạn cần làm mới bộ đệm cấu hình khi bạn tạo ra sự thay đổi nào đó ở môi trường thành phẩm.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(743,1,'vi','base/cache','commands.clear_config_cache.success_msg','Bộ đệm cấu hình đã được xóa','2023-01-22 08:10:10','2023-01-22 08:10:10'),(744,1,'vi','base/cache','commands.clear_route_cache.title','Xoá cache đường dẫn','2023-01-22 08:10:10','2023-01-22 08:10:10'),(745,1,'vi','base/cache','commands.clear_route_cache.description','Cần thực hiện thao tác này khi thấy không xuất hiện đường dẫn mới.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(746,1,'vi','base/cache','commands.clear_route_cache.success_msg','Bộ đệm điều hướng đã bị xóa','2023-01-22 08:10:10','2023-01-22 08:10:10'),(747,1,'vi','base/cache','commands.clear_log.description','Xoá lịch sử lỗi','2023-01-22 08:10:10','2023-01-22 08:10:10'),(748,1,'vi','base/cache','commands.clear_log.success_msg','Lịch sử lỗi đã được làm sạch','2023-01-22 08:10:10','2023-01-22 08:10:10'),(749,1,'vi','base/cache','commands.clear_log.title','Xoá lịch sử lỗi','2023-01-22 08:10:10','2023-01-22 08:10:10'),(750,1,'vi','base/enums','statuses.draft','Bản nháp','2023-01-22 08:10:10','2023-01-22 08:10:10'),(751,1,'vi','base/enums','statuses.pending','Đang chờ xử lý','2023-01-22 08:10:10','2023-01-22 08:10:10'),(752,1,'vi','base/enums','statuses.published','Đã xuất bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(753,1,'vi','base/errors','401_title','Bạn không có quyền truy cập trang này','2023-01-22 08:10:10','2023-01-22 08:10:10'),(754,1,'vi','base/errors','401_msg','<li>Bạn không được cấp quyền truy cập bởi quản trị viên.</li>\n <li>Bạn sử dụng sai loại tài khoản.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-01-22 08:10:10','2023-01-22 08:10:10'),(755,1,'vi','base/errors','404_title','Không tìm thấy trang yêu cầu','2023-01-22 08:10:10','2023-01-22 08:10:10'),(756,1,'vi','base/errors','404_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n <li>Có thể có lỗi xảy ra.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-01-22 08:10:10','2023-01-22 08:10:10'),(757,1,'vi','base/errors','500_title','Không thể tải trang','2023-01-22 08:10:10','2023-01-22 08:10:10'),(758,1,'vi','base/errors','500_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n <li>Có thể có lỗi xảy ra.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-01-22 08:10:10','2023-01-22 08:10:10'),(759,1,'vi','base/errors','reasons','Điều này có thể xảy ra vì nhiều lý do.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(760,1,'vi','base/errors','try_again','Vui lòng thử lại trong vài phút, hoặc quay trở lại trang chủ bằng cách <a href=\"http://cms.local/admin\"> nhấn vào đây </a>.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(761,1,'vi','base/errors','not_found','Không tìm thấy','2023-01-22 08:10:10','2023-01-22 08:10:10'),(762,1,'vi','base/forms','choose_image','Chọn ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(763,1,'vi','base/forms','actions','Tác vụ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(764,1,'vi','base/forms','save','Lưu','2023-01-22 08:10:10','2023-01-22 08:10:10'),(765,1,'vi','base/forms','save_and_continue','Lưu & chỉnh sửa','2023-01-22 08:10:10','2023-01-22 08:10:10'),(766,1,'vi','base/forms','image','Hình ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(767,1,'vi','base/forms','image_placeholder','Chèn đường dẫn hình ảnh hoặc nhấn nút để chọn hình','2023-01-22 08:10:10','2023-01-22 08:10:10'),(768,1,'vi','base/forms','create','Tạo mới','2023-01-22 08:10:10','2023-01-22 08:10:10'),(769,1,'vi','base/forms','edit','Sửa','2023-01-22 08:10:10','2023-01-22 08:10:10'),(770,1,'vi','base/forms','permalink','Đường dẫn','2023-01-22 08:10:10','2023-01-22 08:10:10'),(771,1,'vi','base/forms','ok','OK','2023-01-22 08:10:10','2023-01-22 08:10:10'),(772,1,'vi','base/forms','cancel','Hủy bỏ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(773,1,'vi','base/forms','character_remain','kí tự còn lại','2023-01-22 08:10:10','2023-01-22 08:10:10'),(774,1,'vi','base/forms','template','Template','2023-01-22 08:10:10','2023-01-22 08:10:10'),(775,1,'vi','base/forms','choose_file','Chọn tập tin','2023-01-22 08:10:10','2023-01-22 08:10:10'),(776,1,'vi','base/forms','file','Tập tin','2023-01-22 08:10:10','2023-01-22 08:10:10'),(777,1,'vi','base/forms','content','Nội dung','2023-01-22 08:10:10','2023-01-22 08:10:10'),(778,1,'vi','base/forms','description','Mô tả','2023-01-22 08:10:10','2023-01-22 08:10:10'),(779,1,'vi','base/forms','name','Tên','2023-01-22 08:10:10','2023-01-22 08:10:10'),(780,1,'vi','base/forms','name_placeholder','Nhập tên','2023-01-22 08:10:10','2023-01-22 08:10:10'),(781,1,'vi','base/forms','description_placeholder','Mô tả ngắn','2023-01-22 08:10:10','2023-01-22 08:10:10'),(782,1,'vi','base/forms','parent','Cha','2023-01-22 08:10:10','2023-01-22 08:10:10'),(783,1,'vi','base/forms','icon','Biểu tượng','2023-01-22 08:10:10','2023-01-22 08:10:10'),(784,1,'vi','base/forms','order_by','Sắp xếp','2023-01-22 08:10:10','2023-01-22 08:10:10'),(785,1,'vi','base/forms','order_by_placeholder','Sắp xếp','2023-01-22 08:10:10','2023-01-22 08:10:10'),(786,1,'vi','base/forms','slug','Slug','2023-01-22 08:10:10','2023-01-22 08:10:10'),(787,1,'vi','base/forms','is_featured','Nổi bật?','2023-01-22 08:10:10','2023-01-22 08:10:10'),(788,1,'vi','base/forms','is_default','Mặc định?','2023-01-22 08:10:10','2023-01-22 08:10:10'),(789,1,'vi','base/forms','icon_placeholder','Ví dụ: fa fa-home','2023-01-22 08:10:10','2023-01-22 08:10:10'),(790,1,'vi','base/forms','update','Cập nhật','2023-01-22 08:10:10','2023-01-22 08:10:10'),(791,1,'vi','base/forms','publish','Xuất bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(792,1,'vi','base/forms','remove_image','Xoá ảnh','2023-01-22 08:10:10','2023-01-22 08:10:10'),(793,1,'vi','base/forms','add','Thêm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(794,1,'vi','base/forms','add_short_code','Thêm shortcode','2023-01-22 08:10:10','2023-01-22 08:10:10'),(795,1,'vi','base/forms','alias','Mã thay thế','2023-01-22 08:10:10','2023-01-22 08:10:10'),(796,1,'vi','base/forms','alias_placeholder','Mã thay thế','2023-01-22 08:10:10','2023-01-22 08:10:10'),(797,1,'vi','base/forms','basic_information','Thông tin cơ bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(798,1,'vi','base/forms','link','Liên kết','2023-01-22 08:10:10','2023-01-22 08:10:10'),(799,1,'vi','base/forms','order','Thứ tự','2023-01-22 08:10:10','2023-01-22 08:10:10'),(800,1,'vi','base/forms','short_code','Shortcode','2023-01-22 08:10:10','2023-01-22 08:10:10'),(801,1,'vi','base/forms','title','Tiêu đề','2023-01-22 08:10:10','2023-01-22 08:10:10'),(802,1,'vi','base/forms','value','Giá trị','2023-01-22 08:10:10','2023-01-22 08:10:10'),(803,1,'vi','base/forms','show_hide_editor','Ẩn/Hiện trình soạn thảo','2023-01-22 08:10:10','2023-01-22 08:10:10'),(804,1,'vi','base/forms','basic_info_title','Thông tin cơ bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(805,1,'vi','base/forms','remove_file','Xóa tập tin','2023-01-22 08:10:10','2023-01-22 08:10:10'),(806,1,'vi','base/layouts','platform_admin','Quản trị hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(807,1,'vi','base/layouts','dashboard','Bảng điều khiển','2023-01-22 08:10:10','2023-01-22 08:10:10'),(808,1,'vi','base/layouts','widgets','Tiện ích','2023-01-22 08:10:10','2023-01-22 08:10:10'),(809,1,'vi','base/layouts','plugins','Tiện ích mở rộng','2023-01-22 08:10:10','2023-01-22 08:10:10'),(810,1,'vi','base/layouts','settings','Cài đặt','2023-01-22 08:10:10','2023-01-22 08:10:10'),(811,1,'vi','base/layouts','setting_general','Cơ bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(812,1,'vi','base/layouts','system_information','Thông tin hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(813,1,'vi','base/layouts','theme','Giao diện','2023-01-22 08:10:10','2023-01-22 08:10:10'),(814,1,'vi','base/layouts','copyright','Bản quyền :year © :company. Phiên bản: <span>:version</span>','2023-01-22 08:10:10','2023-01-22 08:10:10'),(815,1,'vi','base/layouts','profile','Thông tin cá nhân','2023-01-22 08:10:10','2023-01-22 08:10:10'),(816,1,'vi','base/layouts','logout','Đăng xuất','2023-01-22 08:10:10','2023-01-22 08:10:10'),(817,1,'vi','base/layouts','no_search_result','Không có kết quả tìm kiếm, hãy thử lại với từ khóa khác.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(818,1,'vi','base/layouts','home','Trang chủ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(819,1,'vi','base/layouts','search','Tìm kiếm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(820,1,'vi','base/layouts','add_new','Thêm mới','2023-01-22 08:10:10','2023-01-22 08:10:10'),(821,1,'vi','base/layouts','n_a','N/A','2023-01-22 08:10:10','2023-01-22 08:10:10'),(822,1,'vi','base/layouts','page_loaded_time','Trang tải xong trong','2023-01-22 08:10:10','2023-01-22 08:10:10'),(823,1,'vi','base/layouts','view_website','Xem trang ngoài','2023-01-22 08:10:10','2023-01-22 08:10:10'),(824,1,'vi','base/layouts','setting_email','Email','2023-01-22 08:10:10','2023-01-22 08:10:10'),(825,1,'vi','base/notices','create_success_message','Tạo thành công','2023-01-22 08:10:10','2023-01-22 08:10:10'),(826,1,'vi','base/notices','update_success_message','Cập nhật thành công','2023-01-22 08:10:10','2023-01-22 08:10:10'),(827,1,'vi','base/notices','delete_success_message','Xóa thành công','2023-01-22 08:10:10','2023-01-22 08:10:10'),(828,1,'vi','base/notices','success_header','Thành công!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(829,1,'vi','base/notices','error_header','Lỗi!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(830,1,'vi','base/notices','no_select','Chọn ít nhất 1 trường để thực hiện hành động này!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(831,1,'vi','base/notices','processing_request','Hệ thống đang xử lý yêu cầu.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(832,1,'vi','base/notices','error','Lỗi!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(833,1,'vi','base/notices','success','Thành công!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(834,1,'vi','base/notices','info','Thông tin!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(835,1,'vi','base/notices','enum.validate_message','Giá trị của :attribute không hợp lệ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(836,1,'vi','base/system','no_select','Hãy chọn ít nhất 1 trường để thực hiện hành động này!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(837,1,'vi','base/system','cannot_find_user','Không thể tải được thông tin người dùng','2023-01-22 08:10:10','2023-01-22 08:10:10'),(838,1,'vi','base/system','supper_revoked','Quyền quản trị viên cao nhất đã được gỡ bỏ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(839,1,'vi','base/system','cannot_revoke_yourself','Không thể gỡ bỏ quyền quản trị cấp cao của chính bạn!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(840,1,'vi','base/system','cant_remove_supper','Bạn không có quyền xóa quản trị viên cấp cao','2023-01-22 08:10:10','2023-01-22 08:10:10'),(841,1,'vi','base/system','cant_find_user_with_email','Không thể tìm thấy người dùng với email này','2023-01-22 08:10:10','2023-01-22 08:10:10'),(842,1,'vi','base/system','supper_granted','Quyền quản trị cao nhất đã được gán','2023-01-22 08:10:10','2023-01-22 08:10:10'),(843,1,'vi','base/system','delete_log_success','Xóa tập tin log thành công!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(844,1,'vi','base/system','get_member_success','Hiển thị danh sách thành viên thành công','2023-01-22 08:10:10','2023-01-22 08:10:10'),(845,1,'vi','base/system','error_occur','Có lỗi dưới đây','2023-01-22 08:10:10','2023-01-22 08:10:10'),(846,1,'vi','base/system','role_and_permission','Phân quyền hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(847,1,'vi','base/system','role_and_permission_description','Quản lý những phân quyền trong hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(848,1,'vi','base/system','user.list_super','Danh sách quản trị viên cấp cao','2023-01-22 08:10:10','2023-01-22 08:10:10'),(849,1,'vi','base/system','user.username','Tên đăng nhập','2023-01-22 08:10:10','2023-01-22 08:10:10'),(850,1,'vi','base/system','user.email','Email','2023-01-22 08:10:10','2023-01-22 08:10:10'),(851,1,'vi','base/system','user.last_login','Đăng nhập lần cuối ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(852,1,'vi','base/system','user.add_user','Thêm quản trị viên cấp cao','2023-01-22 08:10:10','2023-01-22 08:10:10'),(853,1,'vi','base/system','user.cancel','Hủy bỏ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(854,1,'vi','base/system','user.create','Thêm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(855,1,'vi','base/system','options.features','Kiểm soát truy cập các tính năng','2023-01-22 08:10:10','2023-01-22 08:10:10'),(856,1,'vi','base/system','options.feature_description','Bật/tắt các tính năng.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(857,1,'vi','base/system','options.manage_super','Quản lý quản trị viên cấp cao','2023-01-22 08:10:10','2023-01-22 08:10:10'),(858,1,'vi','base/system','options.manage_super_description','Thêm/xóa quản trị viên cấp cao','2023-01-22 08:10:10','2023-01-22 08:10:10'),(859,1,'vi','base/system','options.info','Thông tin hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(860,1,'vi','base/system','options.info_description','Những thông tin về cấu hình hiện tại của hệ thống.','2023-01-22 08:10:10','2023-01-22 08:10:10'),(861,1,'vi','base/system','info.title','Thông tin hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(862,1,'vi','base/system','info.cache','Bộ nhớ đệm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(863,1,'vi','base/system','info.environment','Môi trường','2023-01-22 08:10:10','2023-01-22 08:10:10'),(864,1,'vi','base/system','info.locale','Ngôn ngữ hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(865,1,'vi','base/system','user_management','Quản lý thành viên','2023-01-22 08:10:10','2023-01-22 08:10:10'),(866,1,'vi','base/system','user_management_description','Quản lý người dùng trong hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(867,1,'vi','base/system','app_size','Kích thước ứng dụng','2023-01-22 08:10:10','2023-01-22 08:10:10'),(868,1,'vi','base/system','cache_dir_writable','Có thể ghi bộ nhớ đệm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(869,1,'vi','base/system','cache_driver','Loại lưu trữ bộ nhớ đệm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(870,1,'vi','base/system','copy_report','Sao chép báo cáo','2023-01-22 08:10:10','2023-01-22 08:10:10'),(871,1,'vi','base/system','curl_ext','CURL Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(872,1,'vi','base/system','database','Hệ thống dữ liệu','2023-01-22 08:10:10','2023-01-22 08:10:10'),(873,1,'vi','base/system','debug_mode','Chế độ sửa lỗi','2023-01-22 08:10:10','2023-01-22 08:10:10'),(874,1,'vi','base/system','dependency_name','Tên gói','2023-01-22 08:10:10','2023-01-22 08:10:10'),(875,1,'vi','base/system','exif_ext','Exif Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(876,1,'vi','base/system','extra_information','Thông tin mở rộng','2023-01-22 08:10:10','2023-01-22 08:10:10'),(877,1,'vi','base/system','extra_stats','Thống kê thêm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(878,1,'vi','base/system','file_info_ext','File info Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(879,1,'vi','base/system','framework_version','Phiên bản framework','2023-01-22 08:10:10','2023-01-22 08:10:10'),(880,1,'vi','base/system','get_system_report','Lấy thông tin hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(881,1,'vi','base/system','installed_packages','Các gói đã cài đặt và phiên bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(882,1,'vi','base/system','mbstring_ext','Mbstring Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(883,1,'vi','base/system','openssl_ext','OpenSSL Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(884,1,'vi','base/system','package_name','Tên gói','2023-01-22 08:10:10','2023-01-22 08:10:10'),(885,1,'vi','base/system','pdo_ext','PDO Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(886,1,'vi','base/system','php_version','Phiên bản PHP','2023-01-22 08:10:10','2023-01-22 08:10:10'),(887,1,'vi','base/system','report_description','Vui lòng chia sẻ thông tin này nhằm mục đích điều tra nguyên nhân gây lỗi','2023-01-22 08:10:10','2023-01-22 08:10:10'),(888,1,'vi','base/system','server_environment','Môi trường máy chủ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(889,1,'vi','base/system','server_os','Hệ điều hành của máy chủ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(890,1,'vi','base/system','server_software','Phần mềm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(891,1,'vi','base/system','session_driver','Loại lưu trữ phiên làm việc','2023-01-22 08:10:10','2023-01-22 08:10:10'),(892,1,'vi','base/system','ssl_installed','Đã cài đặt chứng chỉ SSL','2023-01-22 08:10:10','2023-01-22 08:10:10'),(893,1,'vi','base/system','storage_dir_writable','Có thể lưu trữ dữ liệu tạm','2023-01-22 08:10:10','2023-01-22 08:10:10'),(894,1,'vi','base/system','system_environment','Môi trường hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(895,1,'vi','base/system','timezone','Múi giờ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(896,1,'vi','base/system','tokenizer_ext','Tokenizer Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(897,1,'vi','base/system','version','Phiên bản','2023-01-22 08:10:10','2023-01-22 08:10:10'),(898,1,'vi','base/system','cms_version','Phiên bản CMS','2023-01-22 08:10:10','2023-01-22 08:10:10'),(899,1,'vi','base/system','queue_connection','Queue Connection','2023-01-22 08:10:10','2023-01-22 08:10:10'),(900,1,'vi','base/system','disabled_in_demo_mode','Bạn không thể thực hiện hành động này ở chế độ demo!','2023-01-22 08:10:10','2023-01-22 08:10:10'),(901,1,'vi','base/system','imagick_or_gd_ext','Imagick/GD Ext','2023-01-22 08:10:10','2023-01-22 08:10:10'),(902,1,'vi','base/system','php_version_error','Phiên bản PHP phải >= :version','2023-01-22 08:10:10','2023-01-22 08:10:10'),(903,1,'vi','base/system','updater','Nâng cấp hệ thống','2023-01-22 08:10:10','2023-01-22 08:10:10'),(904,1,'vi','base/tables','id','ID','2023-01-22 08:10:10','2023-01-22 08:10:10'),(905,1,'vi','base/tables','name','Tên','2023-01-22 08:10:10','2023-01-22 08:10:10'),(906,1,'vi','base/tables','order_by','Thứ tự','2023-01-22 08:10:10','2023-01-22 08:10:10'),(907,1,'vi','base/tables','status','Trạng thái','2023-01-22 08:10:10','2023-01-22 08:10:10'),(908,1,'vi','base/tables','created_at','Ngày tạo','2023-01-22 08:10:10','2023-01-22 08:10:10'),(909,1,'vi','base/tables','updated_at','Ngày cập nhật','2023-01-22 08:10:10','2023-01-22 08:10:10'),(910,1,'vi','base/tables','operations','Tác vụ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(911,1,'vi','base/tables','url','URL','2023-01-22 08:10:10','2023-01-22 08:10:10'),(912,1,'vi','base/tables','author','Người tạo','2023-01-22 08:10:10','2023-01-22 08:10:10'),(913,1,'vi','base/tables','column','Cột','2023-01-22 08:10:10','2023-01-22 08:10:10'),(914,1,'vi','base/tables','origin','Bản cũ','2023-01-22 08:10:10','2023-01-22 08:10:10'),(915,1,'vi','base/tables','after_change','Sau khi thay đổi','2023-01-22 08:10:10','2023-01-22 08:10:10'),(916,1,'vi','base/tables','notes','Ghi chú','2023-01-22 08:10:10','2023-01-22 08:10:10'),(917,1,'vi','base/tables','activated','kích hoạt','2023-01-22 08:10:10','2023-01-22 08:10:10'),(918,1,'vi','base/tables','browser','Trình duyệt','2023-01-22 08:10:10','2023-01-22 08:10:10'),(919,1,'vi','base/tables','deactivated','hủy kích hoạt','2023-01-22 08:10:10','2023-01-22 08:10:10'),(920,1,'vi','base/tables','description','Mô tả','2023-01-22 08:10:10','2023-01-22 08:10:10'),(921,1,'vi','base/tables','session','Phiên','2023-01-22 08:10:10','2023-01-22 08:10:10'),(922,1,'vi','base/tables','views','Lượt xem','2023-01-22 08:10:10','2023-01-22 08:10:10'),(923,1,'vi','base/tables','restore','Khôi phục','2023-01-22 08:10:10','2023-01-22 08:10:10'),(924,1,'vi','base/tables','edit','Sửa','2023-01-22 08:10:10','2023-01-22 08:10:10'),(925,1,'vi','base/tables','delete','Xóa','2023-01-22 08:10:10','2023-01-22 08:10:10'),(926,1,'vi','base/tables','action','Hành động','2023-01-22 08:10:10','2023-01-22 08:10:10'),(927,1,'vi','base/tables','activate','Kích hoạt','2023-01-22 08:10:10','2023-01-22 08:10:10'),(928,1,'vi','base/tables','add_new','Thêm mới','2023-01-22 08:10:10','2023-01-22 08:10:10'),(929,1,'vi','base/tables','all','Tất cả','2023-01-22 08:10:11','2023-01-22 08:10:11'),(930,1,'vi','base/tables','cancel','Hủy bỏ','2023-01-22 08:10:11','2023-01-22 08:10:11'),(931,1,'vi','base/tables','confirm_delete','Xác nhận xóa','2023-01-22 08:10:11','2023-01-22 08:10:11'),(932,1,'vi','base/tables','confirm_delete_msg','Bạn có chắc chắn muốn xóa bản ghi này?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(933,1,'vi','base/tables','csv','CSV','2023-01-22 08:10:11','2023-01-22 08:10:11'),(934,1,'vi','base/tables','deactivate','Hủy kích hoạt','2023-01-22 08:10:11','2023-01-22 08:10:11'),(935,1,'vi','base/tables','delete_entry','Xóa bản ghi','2023-01-22 08:10:11','2023-01-22 08:10:11'),(936,1,'vi','base/tables','display','Hiển thị','2023-01-22 08:10:11','2023-01-22 08:10:11'),(937,1,'vi','base/tables','excel','Excel','2023-01-22 08:10:11','2023-01-22 08:10:11'),(938,1,'vi','base/tables','export','Xuất bản','2023-01-22 08:10:11','2023-01-22 08:10:11'),(939,1,'vi','base/tables','in','trong tổng số','2023-01-22 08:10:11','2023-01-22 08:10:11'),(940,1,'vi','base/tables','no_data','Không có dữ liệu để hiển thị','2023-01-22 08:10:11','2023-01-22 08:10:11'),(941,1,'vi','base/tables','no_record','Không có dữ liệu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(942,1,'vi','base/tables','pdf','PDF','2023-01-22 08:10:11','2023-01-22 08:10:11'),(943,1,'vi','base/tables','print','In','2023-01-22 08:10:11','2023-01-22 08:10:11'),(944,1,'vi','base/tables','records','bản ghi','2023-01-22 08:10:11','2023-01-22 08:10:11'),(945,1,'vi','base/tables','reload','Tải lại','2023-01-22 08:10:11','2023-01-22 08:10:11'),(946,1,'vi','base/tables','reset','Làm mới','2023-01-22 08:10:11','2023-01-22 08:10:11'),(947,1,'vi','base/tables','save','Lưu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(948,1,'vi','base/tables','show_from','Hiển thị từ','2023-01-22 08:10:11','2023-01-22 08:10:11'),(949,1,'vi','base/tables','template','Giao diện','2023-01-22 08:10:11','2023-01-22 08:10:11'),(950,1,'vi','base/tables','to','đến','2023-01-22 08:10:11','2023-01-22 08:10:11'),(951,1,'vi','base/tables','view','Xem chi tiết','2023-01-22 08:10:11','2023-01-22 08:10:11'),(952,1,'vi','base/tables','email','Email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(953,1,'vi','base/tables','image','Hình ảnh','2023-01-22 08:10:11','2023-01-22 08:10:11'),(954,1,'vi','base/tables','is_featured','Nổi bật','2023-01-22 08:10:11','2023-01-22 08:10:11'),(955,1,'vi','base/tables','last_login','Lần cuối đăng nhập','2023-01-22 08:10:11','2023-01-22 08:10:11'),(956,1,'vi','base/tables','order','Thứ tự','2023-01-22 08:10:11','2023-01-22 08:10:11'),(957,1,'vi','base/tables','shortcode','Shortcode','2023-01-22 08:10:11','2023-01-22 08:10:11'),(958,1,'vi','base/tables','slug','Slug','2023-01-22 08:10:11','2023-01-22 08:10:11'),(959,1,'vi','base/tables','title','Tiêu đề','2023-01-22 08:10:11','2023-01-22 08:10:11'),(960,1,'vi','base/tables','bulk_changes','Thay đổi hàng loạt','2023-01-22 08:10:11','2023-01-22 08:10:11'),(961,1,'vi','base/tables','confirm_delete_many_msg','Bạn có chắc chắn muốn xóa những bản ghi này?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(962,1,'vi','base/tables','submit','Hoàn tất','2023-01-22 08:10:11','2023-01-22 08:10:11'),(963,1,'vi','base/tables','please_select_record','Vui lòng chọn ít nhất 1 bản ghi để thực hiện hành động này!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(964,1,'vi','base/tabs','detail','Chi tiết','2023-01-22 08:10:11','2023-01-22 08:10:11'),(965,1,'vi','base/tabs','file','Tập tin','2023-01-22 08:10:11','2023-01-22 08:10:11'),(966,1,'vi','base/tabs','record_note','Ghi chú','2023-01-22 08:10:11','2023-01-22 08:10:11'),(967,1,'vi','base/tabs','revision','Lịch sử thay đổi','2023-01-22 08:10:11','2023-01-22 08:10:11'),(968,1,'en','core/acl/auth','login.username','Email/Username','2023-01-22 08:10:11','2023-01-22 08:10:11'),(969,1,'en','core/acl/auth','login.email','Email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(970,1,'en','core/acl/auth','login.password','Password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(971,1,'en','core/acl/auth','login.title','User Login','2023-01-22 08:10:11','2023-01-22 08:10:11'),(972,1,'en','core/acl/auth','login.remember','Remember me?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(973,1,'en','core/acl/auth','login.login','Sign in','2023-01-22 08:10:11','2023-01-22 08:10:11'),(974,1,'en','core/acl/auth','login.placeholder.username','Please enter your username','2023-01-22 08:10:11','2023-01-22 08:10:11'),(975,1,'en','core/acl/auth','login.placeholder.email','Please enter your email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(976,1,'en','core/acl/auth','login.success','Login successfully!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(977,1,'en','core/acl/auth','login.fail','Wrong username or password.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(978,1,'en','core/acl/auth','login.not_active','Your account has not been activated yet!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(979,1,'en','core/acl/auth','login.banned','This account is banned.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(980,1,'en','core/acl/auth','login.logout_success','Logout successfully!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(981,1,'en','core/acl/auth','login.dont_have_account','You don\'t have account on this system, please contact administrator for more information!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(982,1,'en','core/acl/auth','forgot_password.title','Forgot Password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(983,1,'en','core/acl/auth','forgot_password.message','<p>Have you forgotten your password?</p><p>Please enter your email account. System will send a email with active link to reset your password.</p>','2023-01-22 08:10:11','2023-01-22 08:10:11'),(984,1,'en','core/acl/auth','forgot_password.submit','Submit','2023-01-22 08:10:11','2023-01-22 08:10:11'),(985,1,'en','core/acl/auth','reset.new_password','New password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(986,1,'en','core/acl/auth','reset.password_confirmation','Confirm new password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(987,1,'en','core/acl/auth','reset.email','Email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(988,1,'en','core/acl/auth','reset.title','Reset your password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(989,1,'en','core/acl/auth','reset.update','Update','2023-01-22 08:10:11','2023-01-22 08:10:11'),(990,1,'en','core/acl/auth','reset.wrong_token','This link is invalid or expired. Please try using reset form again.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(991,1,'en','core/acl/auth','reset.user_not_found','This username is not exist.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(992,1,'en','core/acl/auth','reset.success','Reset password successfully!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(993,1,'en','core/acl/auth','reset.fail','Token is invalid, the reset password link has been expired!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(994,1,'en','core/acl/auth','reset.reset.title','Email reset password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(995,1,'en','core/acl/auth','reset.send.success','A email was sent to your email account. Please check and complete this action.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(996,1,'en','core/acl/auth','reset.send.fail','Can not send email in this time. Please try again later.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(997,1,'en','core/acl/auth','reset.new-password','New password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(998,1,'en','core/acl/auth','email.reminder.title','Email reset password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(999,1,'en','core/acl/auth','password_confirmation','Password confirm','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1000,1,'en','core/acl/auth','failed','Failed','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1001,1,'en','core/acl/auth','throttle','Throttle','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1002,1,'en','core/acl/auth','not_member','Not a member yet?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1003,1,'en','core/acl/auth','register_now','Register now','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1004,1,'en','core/acl/auth','lost_your_password','Lost your password?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1005,1,'en','core/acl/auth','login_title','Admin','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1006,1,'en','core/acl/auth','login_via_social','Login with social networks','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1007,1,'en','core/acl/auth','back_to_login','Back to login page','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1008,1,'en','core/acl/auth','sign_in_below','Sign In Below','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1009,1,'en','core/acl/auth','languages','Languages','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1010,1,'en','core/acl/auth','reset_password','Reset Password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1011,1,'en','core/acl/auth','settings.email.title','ACL','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1012,1,'en','core/acl/auth','settings.email.description','ACL email configuration','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1013,1,'en','core/acl/permissions','notices.role_in_use','Cannot delete this role, it is still in use!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1014,1,'en','core/acl/permissions','notices.role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1015,1,'en','core/acl/permissions','notices.role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1016,1,'en','core/acl/permissions','notices.delete_global_role','You are not allowed to delete global roles!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1017,1,'en','core/acl/permissions','notices.delete_success','The selected role was deleted successfully!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1018,1,'en','core/acl/permissions','notices.modified_success','The selected role was modified successfully!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1019,1,'en','core/acl/permissions','notices.create_success','The new role was successfully created','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1020,1,'en','core/acl/permissions','notices.duplicated_success','The selected role was duplicated successfully','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1021,1,'en','core/acl/permissions','notices.no_select','Please select at least one record to take this action!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1022,1,'en','core/acl/permissions','notices.not_found','Role not found','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1023,1,'en','core/acl/permissions','name','Name','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1024,1,'en','core/acl/permissions','current_role','Current Role','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1025,1,'en','core/acl/permissions','no_role_assigned','No role assigned','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1026,1,'en','core/acl/permissions','role_assigned','Assigned Role','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1027,1,'en','core/acl/permissions','create_role','Create New Role','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1028,1,'en','core/acl/permissions','role_name','Name','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1029,1,'en','core/acl/permissions','role_description','Description','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1030,1,'en','core/acl/permissions','permission_flags','Permission Flags','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1031,1,'en','core/acl/permissions','cancel','Cancel','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1032,1,'en','core/acl/permissions','reset','Reset','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1033,1,'en','core/acl/permissions','save','Save','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1034,1,'en','core/acl/permissions','global_role_msg','This is a global role and cannot be modified. You can use the Duplicate button to make a copy of this role that you can then modify.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1035,1,'en','core/acl/permissions','details','Details','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1036,1,'en','core/acl/permissions','duplicate','Duplicate','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1037,1,'en','core/acl/permissions','all','All Permissions','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1038,1,'en','core/acl/permissions','list_role','List Roles','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1039,1,'en','core/acl/permissions','created_on','Created On','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1040,1,'en','core/acl/permissions','created_by','Created By','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1041,1,'en','core/acl/permissions','actions','Actions','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1042,1,'en','core/acl/permissions','role_in_use','Cannot delete this role, it is still in use!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1043,1,'en','core/acl/permissions','role_delete_belong_user','You are not able to delete this role; it belongs to someone else!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1044,1,'en','core/acl/permissions','delete_global_role','Can not delete global role','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1045,1,'en','core/acl/permissions','delete_success','Delete role successfully','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1046,1,'en','core/acl/permissions','no_select','Please select at least one role to take this action!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1047,1,'en','core/acl/permissions','not_found','No role found!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1048,1,'en','core/acl/permissions','role_edit_belong_user','You are not able to edit this role; it belongs to someone else!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1049,1,'en','core/acl/permissions','modified_success','Modified successfully','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1050,1,'en','core/acl/permissions','create_success','Create successfully','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1051,1,'en','core/acl/permissions','duplicated_success','Duplicated successfully','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1052,1,'en','core/acl/permissions','options','Options','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1053,1,'en','core/acl/permissions','access_denied_message','You are not allowed to do this action','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1054,1,'en','core/acl/permissions','roles','Roles','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1055,1,'en','core/acl/permissions','role_permission','Roles and Permissions','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1056,1,'en','core/acl/permissions','user_management','User Management','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1057,1,'en','core/acl/permissions','super_user_management','Super User Management','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1058,1,'en','core/acl/permissions','action_unauthorized','This action is unauthorized.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1059,1,'en','core/acl/reminders','password','Passwords must be at least six characters and match the confirmation.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1060,1,'en','core/acl/reminders','user','We can\'t find a user with that e-mail address.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1061,1,'en','core/acl/reminders','token','This password reset token is invalid.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1062,1,'en','core/acl/reminders','sent','Password reminder sent!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1063,1,'en','core/acl/reminders','reset','Password has been reset!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1064,1,'en','core/acl/users','delete_user_logged_in','Can\'t delete this user. This user is logged on!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1065,1,'en','core/acl/users','no_select','Please select at least one record to take this action!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1066,1,'en','core/acl/users','lock_user_logged_in','Can\'t lock this user. This user is logged on!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1067,1,'en','core/acl/users','update_success','Update status successfully!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1068,1,'en','core/acl/users','save_setting_failed','Something went wrong when save your setting','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1069,1,'en','core/acl/users','not_found','User not found','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1070,1,'en','core/acl/users','email_exist','That email address already belongs to an existing account','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1071,1,'en','core/acl/users','username_exist','That username address already belongs to an existing account','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1072,1,'en','core/acl/users','update_profile_success','Your profile changes were successfully saved','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1073,1,'en','core/acl/users','password_update_success','Password successfully changed','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1074,1,'en','core/acl/users','current_password_not_valid','Current password is not valid','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1075,1,'en','core/acl/users','user_exist_in','User is already a member','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1076,1,'en','core/acl/users','email','Email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1077,1,'en','core/acl/users','role','Role','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1078,1,'en','core/acl/users','username','Username','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1079,1,'en','core/acl/users','last_name','Last Name','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1080,1,'en','core/acl/users','first_name','First Name','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1081,1,'en','core/acl/users','message','Message','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1082,1,'en','core/acl/users','cancel_btn','Cancel','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1083,1,'en','core/acl/users','change_password','Change password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1084,1,'en','core/acl/users','current_password','Current password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1085,1,'en','core/acl/users','new_password','New Password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1086,1,'en','core/acl/users','confirm_new_password','Confirm New Password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1087,1,'en','core/acl/users','password','Password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1088,1,'en','core/acl/users','save','Save','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1089,1,'en','core/acl/users','cannot_delete','User could not be deleted','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1090,1,'en','core/acl/users','deleted','User deleted','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1091,1,'en','core/acl/users','last_login','Last Login','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1092,1,'en','core/acl/users','error_update_profile_image','Error when update profile image','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1093,1,'en','core/acl/users','email_reminder_template','<h3>Hello :name</h3><p>The system has received a request to restore the password for your account, to complete this task please click the link below.</p><p><a href=\":link\">Reset password now</a></p><p>If not you ask recover password, please ignore this email.</p><p>This email is valid for 60 minutes after receiving the email.</p>','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1094,1,'en','core/acl/users','change_profile_image','Change Profile Image','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1095,1,'en','core/acl/users','new_image','New Image','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1096,1,'en','core/acl/users','loading','Loading','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1097,1,'en','core/acl/users','close','Close','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1098,1,'en','core/acl/users','update','Update','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1099,1,'en','core/acl/users','read_image_failed','Failed to read the image file','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1100,1,'en','core/acl/users','users','Users','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1101,1,'en','core/acl/users','update_avatar_success','Update profile image successfully!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1102,1,'en','core/acl/users','info.title','User profile','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1103,1,'en','core/acl/users','info.first_name','First Name','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1104,1,'en','core/acl/users','info.last_name','Last Name','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1105,1,'en','core/acl/users','total_users','Total users','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1106,1,'en','core/acl/users','statuses.activated','Activated','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1107,1,'en','core/acl/users','statuses.deactivated','Deactivated','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1108,1,'en','core/acl/users','make_super','Make super','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1109,1,'en','core/acl/users','remove_super','Remove super','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1110,1,'en','core/acl/users','is_super','Is super?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1111,1,'en','core/acl/users','email_placeholder','Ex: example@gmail.com','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1112,1,'en','core/acl/users','password_confirmation','Re-type password','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1113,1,'en','core/acl/users','select_role','Select role','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1114,1,'en','core/acl/users','create_new_user','Create a new user','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1115,1,'en','core/acl/users','cannot_delete_super_user','Permission denied. Cannot delete a super user!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1116,1,'en','core/acl/users','assigned_role','Assigned Role','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1117,1,'en','core/acl/users','no_role_assigned','No role assigned','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1118,1,'en','core/acl/users','view_user_profile','View user\'s profile','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1119,1,'vi','core/acl/auth','login.username','Email/Tên truy cập','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1120,1,'vi','core/acl/auth','login.password','Mật khẩu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1121,1,'vi','core/acl/auth','login.title','Đăng nhập vào quản trị','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1122,1,'vi','core/acl/auth','login.remember','Nhớ mật khẩu?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1123,1,'vi','core/acl/auth','login.login','Đăng nhập','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1124,1,'vi','core/acl/auth','login.placeholder.username','Vui lòng nhập tên truy cập','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1125,1,'vi','core/acl/auth','login.placeholder.email','Vui lòng nhập email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1126,1,'vi','core/acl/auth','login.success','Đăng nhập thành công!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1127,1,'vi','core/acl/auth','login.fail','Sai tên truy cập hoặc mật khẩu.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1128,1,'vi','core/acl/auth','login.not_active','Tài khoản của bạn chưa được kích hoạt!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1129,1,'vi','core/acl/auth','login.banned','Tài khoản này đã bị khóa.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1130,1,'vi','core/acl/auth','login.logout_success','Đăng xuất thành công!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1131,1,'vi','core/acl/auth','login.dont_have_account','Bạn không có tài khoản trong hệ thống, vui lòng liên hệ quản trị viên!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1132,1,'vi','core/acl/auth','login.email','Email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1133,1,'vi','core/acl/auth','forgot_password.title','Quên mật khẩu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1134,1,'vi','core/acl/auth','forgot_password.message','<p>Quên mật khẩu?</p><p>Vui lòng nhập email đăng nhập tài khoản của bạn để hệ thống gửi liên kết khôi phục mật khẩu.</p>','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1135,1,'vi','core/acl/auth','forgot_password.submit','Hoàn tất','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1136,1,'vi','core/acl/auth','reset.new_password','Mật khẩu mới','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1137,1,'vi','core/acl/auth','reset.title','Khôi phục mật khẩu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1138,1,'vi','core/acl/auth','reset.update','Cập nhật','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1139,1,'vi','core/acl/auth','reset.wrong_token','Liên kết này không chính xác hoặc đã hết hiệu lực, vui lòng yêu cầu khôi phục mật khẩu lại!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1140,1,'vi','core/acl/auth','reset.user_not_found','Tên đăng nhập không tồn tại.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1141,1,'vi','core/acl/auth','reset.success','Khôi phục mật khẩu thành công!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1142,1,'vi','core/acl/auth','reset.fail','Token không hợp lệ hoặc liên kết khôi phục mật khẩu đã hết thời gian hiệu lực!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1143,1,'vi','core/acl/auth','reset.reset.title','Email khôi phục mật khẩu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1144,1,'vi','core/acl/auth','reset.send.success','Một email khôi phục mật khẩu đã được gửi tới email của bạn, vui lòng kiểm tra và hoàn tất yêu cầu.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1145,1,'vi','core/acl/auth','reset.send.fail','Không thể gửi email trong lúc này. Vui lòng thực hiện lại sau.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1146,1,'vi','core/acl/auth','reset.new-password','Mật khẩu mới','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1147,1,'vi','core/acl/auth','reset.email','Email','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1148,1,'vi','core/acl/auth','reset.password_confirmation','Xác nhận mật khẩu mới','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1149,1,'vi','core/acl/auth','email.reminder.title','Email khôi phục mật khẩu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1150,1,'vi','core/acl/auth','failed','Không thành công','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1151,1,'vi','core/acl/auth','throttle','Throttle','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1152,1,'vi','core/acl/auth','back_to_login','Quay lại trang đăng nhập','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1153,1,'vi','core/acl/auth','login_title','Đăng nhập vào quản trị','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1154,1,'vi','core/acl/auth','login_via_social','Đăng nhập thông qua mạng xã hội','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1155,1,'vi','core/acl/auth','lost_your_password','Quên mật khẩu?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1156,1,'vi','core/acl/auth','not_member','Chưa là thành viên?','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1157,1,'vi','core/acl/auth','register_now','Đăng ký ngay','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1158,1,'vi','core/acl/auth','languages','Ngôn ngữ','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1159,1,'vi','core/acl/auth','password_confirmation','Xác nhận mật khẩu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1160,1,'vi','core/acl/auth','reset_password','Khôi phục mật khẩu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1161,1,'vi','core/acl/auth','sign_in_below','Đăng nhập','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1162,1,'vi','core/acl/permissions','notices.role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1163,1,'vi','core/acl/permissions','notices.role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1164,1,'vi','core/acl/permissions','notices.role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1165,1,'vi','core/acl/permissions','notices.delete_global_role','Bạn không thể xóa quyền người dùng hệ thống!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1166,1,'vi','core/acl/permissions','notices.delete_success','Quyền người dùng đã được xóa!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1167,1,'vi','core/acl/permissions','notices.modified_success','Quyền người dùng đã được cập nhật thành công!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1168,1,'vi','core/acl/permissions','notices.create_success','Quyền người dùng mới đã được tạo thành công!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1169,1,'vi','core/acl/permissions','notices.duplicated_success','Quyền người dùng đã được sao chép thành công!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1170,1,'vi','core/acl/permissions','notices.no_select','Hãy chọn ít nhất một quyền người dùng để thực hiện hành động này!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1171,1,'vi','core/acl/permissions','notices.not_found','Không tìm thấy quyền người dùng này','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1172,1,'vi','core/acl/permissions','name','Tên','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1173,1,'vi','core/acl/permissions','current_role','Quyền hiện tại','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1174,1,'vi','core/acl/permissions','no_role_assigned','Không có quyền hạn nào','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1175,1,'vi','core/acl/permissions','role_assigned','Quyền đã được gán','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1176,1,'vi','core/acl/permissions','create_role','Tạo quyền mới','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1177,1,'vi','core/acl/permissions','role_name','Tên','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1178,1,'vi','core/acl/permissions','role_description','Mô tả','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1179,1,'vi','core/acl/permissions','permission_flags','Cờ đánh dấu quyền hạn','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1180,1,'vi','core/acl/permissions','cancel','Hủy bỏ','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1181,1,'vi','core/acl/permissions','reset','Làm lại','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1182,1,'vi','core/acl/permissions','save','Lưu','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1183,1,'vi','core/acl/permissions','global_role_msg','Đây là một phân quyền toàn cục và không thể thay đổi. Bạn có thể sử dụng nút \"Nhân bản\" để tạo một bản sao chép cho phân quyền này và chỉnh sửa.','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1184,1,'vi','core/acl/permissions','details','Chi tiết','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1185,1,'vi','core/acl/permissions','duplicate','Nhân bản','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1186,1,'vi','core/acl/permissions','all','Tất cả phân quyền','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1187,1,'vi','core/acl/permissions','list_role','Danh sách quyền','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1188,1,'vi','core/acl/permissions','created_on','Ngày tạo','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1189,1,'vi','core/acl/permissions','created_by','Được tạo bởi','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1190,1,'vi','core/acl/permissions','actions','Tác vụ','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1191,1,'vi','core/acl/permissions','create_success','Tạo thành công!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1192,1,'vi','core/acl/permissions','delete_global_role','Không thể xóa quyền hệ thống','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1193,1,'vi','core/acl/permissions','delete_success','Xóa quyền thành công','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1194,1,'vi','core/acl/permissions','duplicated_success','Nhân bản thành công','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1195,1,'vi','core/acl/permissions','modified_success','Sửa thành công','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1196,1,'vi','core/acl/permissions','no_select','Hãy chọn ít nhất một quyền để thực hiện hành động này!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1197,1,'vi','core/acl/permissions','not_found','Không tìm thấy quyền thành viên nào!','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1198,1,'vi','core/acl/permissions','options','Tùy chọn','2023-01-22 08:10:11','2023-01-22 08:10:11'),(1199,1,'vi','core/acl/permissions','role_delete_belong_user','Không thể xóa quyền hạn này vì nó thuộc về người khác!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1200,1,'vi','core/acl/permissions','role_edit_belong_user','Bạn không được phép sửa quyền này vì nó thuộc về người khác','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1201,1,'vi','core/acl/permissions','role_in_use','Không thể xóa quyền người dùng này vì nó đang được sử dụng!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1202,1,'vi','core/acl/permissions','access_denied_message','Bạn không có quyền sử dụng chức năng này!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1203,1,'vi','core/acl/permissions','roles','Quyền','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1204,1,'vi','core/acl/permissions','role_permission','Nhóm và phân quyền','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1205,1,'vi','core/acl/permissions','user_management','Quản lý người dùng hệ thống','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1206,1,'vi','core/acl/permissions','super_user_management','Quản lý người dùng cấp cao','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1207,1,'vi','core/acl/permissions','action_unauthorized','Hành động này không được phép','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1208,1,'vi','core/acl/reminders','password','Mật khẩu phải ít nhất 6 kí tự và trùng khớp với mật khẩu xác nhận.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1209,1,'vi','core/acl/reminders','user','Hệ thống không thể tìm thấy tài khoản với email này.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1210,1,'vi','core/acl/reminders','token','Mã khôi phục mật khẩu này không hợp lệ.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1211,1,'vi','core/acl/reminders','sent','Liên kết khôi phục mật khẩu đã được gửi!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1212,1,'vi','core/acl/reminders','reset','Mật khẩu đã được thay đổi!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1213,1,'vi','core/acl/users','delete_user_logged_in','Không thể xóa người dùng đang đăng nhập hệ thống!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1214,1,'vi','core/acl/users','no_select','Hãy chọn ít nhất một trường để thực hiện hành động này!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1215,1,'vi','core/acl/users','lock_user_logged_in','Không thể khóa người dùng đang đăng nhập hệ thống!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1216,1,'vi','core/acl/users','update_success','Cập nhật trạng thái thành công!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1217,1,'vi','core/acl/users','save_setting_failed','Có lỗi xảy ra trong quá trình lưu cài đặt của người dùng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1218,1,'vi','core/acl/users','not_found','Không tìm thấy người dùng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1219,1,'vi','core/acl/users','email_exist','Email này đã được sử dụng bởi người dùng khác trong hệ thống','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1220,1,'vi','core/acl/users','username_exist','Tên đăng nhập này đã được sử dụng bởi người dùng khác trong hệ thống','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1221,1,'vi','core/acl/users','update_profile_success','Thông tin tài khoản của bạn đã được cập nhật thành công','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1222,1,'vi','core/acl/users','password_update_success','Cập nhật mật khẩu thành công','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1223,1,'vi','core/acl/users','current_password_not_valid','Mật khẩu hiện tại không chính xác','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1224,1,'vi','core/acl/users','user_exist_in','Người dùng đã là thành viên','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1225,1,'vi','core/acl/users','email','Email','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1226,1,'vi','core/acl/users','username','Tên đăng nhập','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1227,1,'vi','core/acl/users','role','Phân quyền','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1228,1,'vi','core/acl/users','first_name','Họ','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1229,1,'vi','core/acl/users','last_name','Tên','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1230,1,'vi','core/acl/users','message','Thông điệp','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1231,1,'vi','core/acl/users','cancel_btn','Hủy bỏ','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1232,1,'vi','core/acl/users','password','Mật khẩu','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1233,1,'vi','core/acl/users','new_password','Mật khẩu mới','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1234,1,'vi','core/acl/users','save','Lưu','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1235,1,'vi','core/acl/users','confirm_new_password','Xác nhận mật khẩu mới','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1236,1,'vi','core/acl/users','deleted','Xóa thành viên thành công','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1237,1,'vi','core/acl/users','cannot_delete','Không thể xóa thành viên','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1238,1,'vi','core/acl/users','last_login','Lần cuối đăng nhập','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1239,1,'vi','core/acl/users','error_update_profile_image','Có lỗi trong quá trình đổi ảnh đại diện','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1240,1,'vi','core/acl/users','email_reminder_template','<h3>Xin chào :name</h3><p>Hệ thống vừa nhận được yêu cầu khôi phục mật khẩu cho tài khoản của bạn, để hoàn tất tác vụ này vui lòng click vào đường link bên dưới.</p><p><a href=\":link\">Khôi phục mật khẩu</a></p><p>Nếu không phải bạn yêu cầu khôi phục mật khẩu, vui lòng bỏ qua email này.</p><p>Email này có giá trị trong vòng 60 phút kể từ lúc nhận được email.</p>','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1241,1,'vi','core/acl/users','change_profile_image','Thay đổi ảnh đại diện','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1242,1,'vi','core/acl/users','new_image','Ảnh mới','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1243,1,'vi','core/acl/users','loading','Đang tải','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1244,1,'vi','core/acl/users','close','Đóng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1245,1,'vi','core/acl/users','update','Cập nhật','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1246,1,'vi','core/acl/users','read_image_failed','Không đọc được nội dung của hình ảnh','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1247,1,'vi','core/acl/users','update_avatar_success','Cập nhật ảnh đại diện thành công!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1248,1,'vi','core/acl/users','users','Quản trị viên','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1249,1,'vi','core/acl/users','info.title','Thông tin người dùng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1250,1,'vi','core/acl/users','info.first_name','Họ','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1251,1,'vi','core/acl/users','info.last_name','Tên','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1252,1,'vi','core/acl/users','info.email','Email','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1253,1,'vi','core/acl/users','info.second_email','Email dự phòng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1254,1,'vi','core/acl/users','info.address','Địa chỉ','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1255,1,'vi','core/acl/users','info.second_address','Địa chỉ dự phòng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1256,1,'vi','core/acl/users','info.birth_day','Ngày sinh','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1257,1,'vi','core/acl/users','info.job','Nghề nghiệp','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1258,1,'vi','core/acl/users','info.mobile_number','Số điện thoại di động','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1259,1,'vi','core/acl/users','info.second_mobile_number','Số điện thoại dự phòng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1260,1,'vi','core/acl/users','info.interes','Sở thích','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1261,1,'vi','core/acl/users','info.about','Giới thiệu','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1262,1,'vi','core/acl/users','gender.title','Giới tính','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1263,1,'vi','core/acl/users','gender.male','nam','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1264,1,'vi','core/acl/users','gender.female','nữ','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1265,1,'vi','core/acl/users','statuses.activated','Đang hoạt động','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1266,1,'vi','core/acl/users','statuses.deactivated','Đã khoá','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1267,1,'vi','core/acl/users','change_password','Thay đổi mật khẩu','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1268,1,'vi','core/acl/users','current_password','Mật khẩu hiện tại','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1269,1,'vi','core/acl/users','make_super','Thiết lập quyền cao nhất','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1270,1,'vi','core/acl/users','remove_super','Loại bỏ quyền cao nhất','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1271,1,'vi','core/acl/users','is_super','Quyền cao nhất?','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1272,1,'vi','core/acl/users','email_placeholder','Ex: example@gmail.com','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1273,1,'vi','core/acl/users','password_confirmation','Nhập lại mật khẩu','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1274,1,'vi','core/acl/users','select_role','Chọn nhóm','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1275,1,'vi','core/acl/users','create_new_user','Tạo tài khoản quản trị viên mới','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1276,1,'vi','core/acl/users','cannot_delete_super_user','Vượt quyền hạn, không thể xoá quản trị viên cấp cao nhất!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1277,1,'vi','core/acl/users','assigned_role','Cấp quyền','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1278,1,'vi','core/acl/users','total_users','Tổng số người dùng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1279,1,'vi','core/acl/users','view_user_profile','Xem thông tin người dùng','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1280,1,'vi','core/acl/users','no_role_assigned','Chưa có quyền nào','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1281,1,'en','core/base/base','yes','Yes','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1282,1,'en','core/base/base','no','No','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1283,1,'en','core/base/base','is_default','Is default?','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1284,1,'en','core/base/base','proc_close_disabled_error','Function proc_close() is disabled. Please contact your hosting provider to enable\n it. Or you can add to .env: CAN_EXECUTE_COMMAND=false to disable this feature.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1285,1,'en','core/base/base','email_template.header','Email template header','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1286,1,'en','core/base/base','email_template.footer','Email template footer','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1287,1,'en','core/base/base','email_template.site_title','Site title','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1288,1,'en','core/base/base','email_template.site_url','Site URL','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1289,1,'en','core/base/base','email_template.site_logo','Site Logo','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1290,1,'en','core/base/base','email_template.date_time','Current date time','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1291,1,'en','core/base/base','email_template.date_year','Current year','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1292,1,'en','core/base/base','email_template.site_admin_email','Site admin email','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1293,1,'en','core/base/base','change_image','Change image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1294,1,'en','core/base/base','delete_image','Delete image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1295,1,'en','core/base/base','preview_image','Preview image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1296,1,'en','core/base/base','image','Image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1297,1,'en','core/base/base','using_button','Using button','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1298,1,'en','core/base/base','select_image','Select image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1299,1,'en','core/base/base','to_add_more_image','to add more images','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1300,1,'en','core/base/base','add_image','Add image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1301,1,'en','core/base/base','tools','Tools','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1302,1,'en','core/base/cache','cache_management','Cache management','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1303,1,'en','core/base/cache','cache_commands','Clear cache commands','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1304,1,'en','core/base/cache','commands.clear_cms_cache.title','Clear all CMS cache','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1305,1,'en','core/base/cache','commands.clear_cms_cache.description','Clear CMS caching: database caching, static blocks... Run this command when you don\'t see the changes after updating data.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1306,1,'en','core/base/cache','commands.clear_cms_cache.success_msg','Cache cleaned','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1307,1,'en','core/base/cache','commands.refresh_compiled_views.title','Refresh compiled views','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1308,1,'en','core/base/cache','commands.refresh_compiled_views.description','Clear compiled views to make views up to date.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1309,1,'en','core/base/cache','commands.refresh_compiled_views.success_msg','Cache view refreshed','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1310,1,'en','core/base/cache','commands.clear_config_cache.title','Clear config cache','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1311,1,'en','core/base/cache','commands.clear_config_cache.description','You might need to refresh the config caching when you change something on production environment.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1312,1,'en','core/base/cache','commands.clear_config_cache.success_msg','Config cache cleaned','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1313,1,'en','core/base/cache','commands.clear_route_cache.title','Clear route cache','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1314,1,'en','core/base/cache','commands.clear_route_cache.description','Clear cache routing.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1315,1,'en','core/base/cache','commands.clear_route_cache.success_msg','The route cache has been cleaned','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1316,1,'en','core/base/cache','commands.clear_log.title','Clear log','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1317,1,'en','core/base/cache','commands.clear_log.description','Clear system log files','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1318,1,'en','core/base/cache','commands.clear_log.success_msg','The system log has been cleaned','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1319,1,'en','core/base/enums','statuses.draft','Draft','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1320,1,'en','core/base/enums','statuses.pending','Pending','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1321,1,'en','core/base/enums','statuses.published','Published','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1322,1,'en','core/base/errors','401_title','Permission Denied','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1323,1,'en','core/base/errors','401_msg','<li>You have not been granted access to the section by the administrator.</li>\n <li>You may have the wrong account type.</li>\n <li>You are not authorized to view the requested resource.</li>\n <li>Your subscription may have expired.</li>','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1324,1,'en','core/base/errors','404_title','Page could not be found','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1325,1,'en','core/base/errors','404_msg','<li>The page you requested does not exist.</li>\n <li>The link you clicked is no longer.</li>\n <li>The page may have moved to a new location.</li>\n <li>An error may have occurred.</li>\n <li>You are not authorized to view the requested resource.</li>','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1326,1,'en','core/base/errors','500_title','Page could not be loaded','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1327,1,'en','core/base/errors','500_msg','<li>The page you requested does not exist.</li>\n <li>The link you clicked is no longer.</li>\n <li>The page may have moved to a new location.</li>\n <li>An error may have occurred.</li>\n <li>You are not authorized to view the requested resource.</li>','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1328,1,'en','core/base/errors','reasons','This may have occurred because of several reasons','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1329,1,'en','core/base/errors','try_again','Please try again in a few minutes, or alternatively return to the homepage by <a href=\":link\">clicking here</a>.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1330,1,'en','core/base/errors','not_found','Not Found','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1331,1,'en','core/base/forms','choose_image','Choose image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1332,1,'en','core/base/forms','actions','Actions','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1333,1,'en','core/base/forms','save','Save & Exit','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1334,1,'en','core/base/forms','save_and_continue','Save','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1335,1,'en','core/base/forms','image','Image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1336,1,'en','core/base/forms','image_placeholder','Insert path of image or click upload button','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1337,1,'en','core/base/forms','create','Create','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1338,1,'en','core/base/forms','edit','Edit','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1339,1,'en','core/base/forms','permalink','Permalink','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1340,1,'en','core/base/forms','ok','OK','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1341,1,'en','core/base/forms','cancel','Cancel','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1342,1,'en','core/base/forms','character_remain','character(s) remain','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1343,1,'en','core/base/forms','template','Template','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1344,1,'en','core/base/forms','choose_file','Choose file','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1345,1,'en','core/base/forms','file','File','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1346,1,'en','core/base/forms','content','Content','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1347,1,'en','core/base/forms','description','Description','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1348,1,'en','core/base/forms','name','Name','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1349,1,'en','core/base/forms','slug','Slug','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1350,1,'en','core/base/forms','title','Title','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1351,1,'en','core/base/forms','value','Value','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1352,1,'en','core/base/forms','name_placeholder','Name','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1353,1,'en','core/base/forms','alias_placeholder','Alias','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1354,1,'en','core/base/forms','description_placeholder','Short description','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1355,1,'en','core/base/forms','parent','Parent','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1356,1,'en','core/base/forms','icon','Icon','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1357,1,'en','core/base/forms','icon_placeholder','Ex: fa fa-home','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1358,1,'en','core/base/forms','order_by','Order by','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1359,1,'en','core/base/forms','order_by_placeholder','Order by','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1360,1,'en','core/base/forms','is_featured','Is featured?','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1361,1,'en','core/base/forms','is_default','Is default?','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1362,1,'en','core/base/forms','update','Update','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1363,1,'en','core/base/forms','publish','Publish','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1364,1,'en','core/base/forms','remove_image','Remove image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1365,1,'en','core/base/forms','remove_file','Remove file','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1366,1,'en','core/base/forms','order','Order','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1367,1,'en','core/base/forms','alias','Alias','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1368,1,'en','core/base/forms','basic_information','Basic information','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1369,1,'en','core/base/forms','short_code','Shortcode','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1370,1,'en','core/base/forms','add_short_code','Add a shortcode','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1371,1,'en','core/base/forms','add','Add','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1372,1,'en','core/base/forms','link','Link','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1373,1,'en','core/base/forms','show_hide_editor','Show/Hide Editor','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1374,1,'en','core/base/forms','basic_info_title','Basic information','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1375,1,'en','core/base/forms','expand_all','Expand all','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1376,1,'en','core/base/forms','collapse_all','Collapse all','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1377,1,'en','core/base/forms','view_new_tab','Open in new tab','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1378,1,'en','core/base/forms','view_preview_image','View preview image','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1379,1,'en','core/base/layouts','platform_admin','Platform Administration','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1380,1,'en','core/base/layouts','dashboard','Dashboard','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1381,1,'en','core/base/layouts','widgets','Widgets','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1382,1,'en','core/base/layouts','plugins','Plugins','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1383,1,'en','core/base/layouts','settings','Settings','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1384,1,'en','core/base/layouts','setting_general','General','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1385,1,'en','core/base/layouts','setting_email','Email','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1386,1,'en','core/base/layouts','system_information','System information','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1387,1,'en','core/base/layouts','theme','Theme','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1388,1,'en','core/base/layouts','copyright','Copyright :year © :company. Version: <span>:version</span>','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1389,1,'en','core/base/layouts','profile','Profile','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1390,1,'en','core/base/layouts','logout','Logout','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1391,1,'en','core/base/layouts','no_search_result','No results found, please try with different keywords.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1392,1,'en','core/base/layouts','home','Home','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1393,1,'en','core/base/layouts','search','Search','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1394,1,'en','core/base/layouts','add_new','Add new','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1395,1,'en','core/base/layouts','n_a','N/A','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1396,1,'en','core/base/layouts','page_loaded_time','Page loaded in','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1397,1,'en','core/base/layouts','view_website','View website','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1398,1,'en','core/base/notices','create_success_message','Created successfully','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1399,1,'en','core/base/notices','update_success_message','Updated successfully','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1400,1,'en','core/base/notices','delete_success_message','Deleted successfully','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1401,1,'en','core/base/notices','success_header','Success!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1402,1,'en','core/base/notices','error_header','Error!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1403,1,'en','core/base/notices','no_select','Please select at least one record to perform this action!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1404,1,'en','core/base/notices','processing_request','We are processing your request.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1405,1,'en','core/base/notices','error','Error!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1406,1,'en','core/base/notices','success','Success!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1407,1,'en','core/base/notices','info','Info!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1408,1,'en','core/base/notices','enum.validate_message','The :attribute value you have entered is invalid.','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1409,1,'en','core/base/system','no_select','Please select at least one record to take this action!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1410,1,'en','core/base/system','cannot_find_user','Unable to find specified user','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1411,1,'en','core/base/system','supper_revoked','Super user access revoked','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1412,1,'en','core/base/system','cannot_revoke_yourself','Can not revoke supper user access permission yourself!','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1413,1,'en','core/base/system','cant_remove_supper','You don\'t has permission to remove this super user','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1414,1,'en','core/base/system','cant_find_user_with_email','Unable to find user with specified email address','2023-01-22 08:10:12','2023-01-22 08:10:12'),(1415,1,'en','core/base/system','supper_granted','Super user access granted','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1416,1,'en','core/base/system','delete_log_success','Delete log file successfully!','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1417,1,'en','core/base/system','get_member_success','Member list retrieved successfully','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1418,1,'en','core/base/system','error_occur','The following errors occurred','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1419,1,'en','core/base/system','user_management','User Management','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1420,1,'en','core/base/system','user_management_description','Manage users.','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1421,1,'en','core/base/system','role_and_permission','Roles and Permissions','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1422,1,'en','core/base/system','role_and_permission_description','Manage the available roles.','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1423,1,'en','core/base/system','user.list_super','List Super Users','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1424,1,'en','core/base/system','user.email','Email','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1425,1,'en','core/base/system','user.last_login','Last Login','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1426,1,'en','core/base/system','user.username','Username','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1427,1,'en','core/base/system','user.add_user','Add Super User','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1428,1,'en','core/base/system','user.cancel','Cancel','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1429,1,'en','core/base/system','user.create','Create','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1430,1,'en','core/base/system','options.features','Feature Access Control','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1431,1,'en','core/base/system','options.feature_description','Manage the available.','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1432,1,'en','core/base/system','options.manage_super','Super User Management','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1433,1,'en','core/base/system','options.manage_super_description','Add/remove super users.','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1434,1,'en','core/base/system','options.info','System information','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1435,1,'en','core/base/system','options.info_description','All information about current system configuration.','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1436,1,'en','core/base/system','info.title','System information','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1437,1,'en','core/base/system','info.cache','Cache','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1438,1,'en','core/base/system','info.locale','Active locale','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1439,1,'en','core/base/system','info.environment','Environment','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1440,1,'en','core/base/system','disabled_in_demo_mode','You cannot do it in demo mode!','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1441,1,'en','core/base/system','report_description','Please share this information for troubleshooting','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1442,1,'en','core/base/system','get_system_report','Get System Report','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1443,1,'en','core/base/system','system_environment','System Environment','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1444,1,'en','core/base/system','framework_version','Framework Version','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1445,1,'en','core/base/system','timezone','Timezone','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1446,1,'en','core/base/system','debug_mode','Debug Mode','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1447,1,'en','core/base/system','debug_mode_off','Debug Mode Off','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1448,1,'en','core/base/system','storage_dir_writable','Storage Dir Writable','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1449,1,'en','core/base/system','cache_dir_writable','Cache Dir Writable','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1450,1,'en','core/base/system','app_size','App Size','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1451,1,'en','core/base/system','server_environment','Server Environment','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1452,1,'en','core/base/system','php_version','PHP Version','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1453,1,'en','core/base/system','php_version_error','PHP must be >= :version','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1454,1,'en','core/base/system','server_software','Server Software','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1455,1,'en','core/base/system','server_os','Server OS','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1456,1,'en','core/base/system','database','Database','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1457,1,'en','core/base/system','ssl_installed','SSL Installed','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1458,1,'en','core/base/system','cache_driver','Cache Driver','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1459,1,'en','core/base/system','session_driver','Session Driver','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1460,1,'en','core/base/system','queue_connection','Queue Connection','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1461,1,'en','core/base/system','mbstring_ext','Mbstring Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1462,1,'en','core/base/system','openssl_ext','OpenSSL Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1463,1,'en','core/base/system','pdo_ext','PDO Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1464,1,'en','core/base/system','curl_ext','CURL Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1465,1,'en','core/base/system','exif_ext','Exif Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1466,1,'en','core/base/system','file_info_ext','File info Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1467,1,'en','core/base/system','tokenizer_ext','Tokenizer Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1468,1,'en','core/base/system','extra_stats','Extra Stats','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1469,1,'en','core/base/system','installed_packages','Installed packages and their version numbers','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1470,1,'en','core/base/system','extra_information','Extra Information','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1471,1,'en','core/base/system','copy_report','Copy Report','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1472,1,'en','core/base/system','package_name','Package Name','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1473,1,'en','core/base/system','dependency_name','Dependency Name','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1474,1,'en','core/base/system','version','Version','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1475,1,'en','core/base/system','cms_version','CMS Version','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1476,1,'en','core/base/system','imagick_or_gd_ext','Imagick/GD Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1477,1,'en','core/base/system','updater','System Updater','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1478,1,'en','core/base/system','zip','Zip Ext','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1479,1,'en','core/base/system','memory_limit','Memory limit','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1480,1,'en','core/base/system','max_execution_time','Max execution time (s)','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1481,1,'en','core/base/system','cleanup.title','Cleanup System','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1482,1,'en','core/base/system','cleanup.table.name','Table Name','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1483,1,'en','core/base/system','cleanup.table.count','Records','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1484,1,'en','core/base/system','cleanup.backup_alert','Please backup your database and script files before cleanup, it will clear your data in database.','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1485,1,'en','core/base/system','cleanup.messenger_choose_without_table','Please choose to ignore tables that do not want to be cleaned','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1486,1,'en','core/base/system','cleanup.messenger_confirm_cleanup','Are you sure you want to database cleanup action, it will clear your data in database?','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1487,1,'en','core/base/system','cleanup.submit_button','Cleanup','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1488,1,'en','core/base/system','cleanup.success_message','Cleaned data successfully','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1489,1,'en','core/base/tables','id','ID','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1490,1,'en','core/base/tables','name','Name','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1491,1,'en','core/base/tables','slug','Slug','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1492,1,'en','core/base/tables','title','Title','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1493,1,'en','core/base/tables','order_by','Order By','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1494,1,'en','core/base/tables','order','Order','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1495,1,'en','core/base/tables','status','Status','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1496,1,'en','core/base/tables','created_at','Created At','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1497,1,'en','core/base/tables','updated_at','Updated At','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1498,1,'en','core/base/tables','description','Description','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1499,1,'en','core/base/tables','operations','Operations','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1500,1,'en','core/base/tables','url','URL','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1501,1,'en','core/base/tables','author','Author','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1502,1,'en','core/base/tables','notes','Notes','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1503,1,'en','core/base/tables','column','Column','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1504,1,'en','core/base/tables','origin','Origin','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1505,1,'en','core/base/tables','after_change','After changes','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1506,1,'en','core/base/tables','views','Views','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1507,1,'en','core/base/tables','browser','Browser','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1508,1,'en','core/base/tables','session','Session','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1509,1,'en','core/base/tables','activated','activated','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1510,1,'en','core/base/tables','deactivated','deactivated','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1511,1,'en','core/base/tables','is_featured','Is featured','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1512,1,'en','core/base/tables','edit','Edit','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1513,1,'en','core/base/tables','delete','Delete','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1514,1,'en','core/base/tables','restore','Restore','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1515,1,'en','core/base/tables','activate','Activate','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1516,1,'en','core/base/tables','deactivate','Deactivate','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1517,1,'en','core/base/tables','excel','Excel','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1518,1,'en','core/base/tables','export','Export','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1519,1,'en','core/base/tables','csv','CSV','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1520,1,'en','core/base/tables','pdf','PDF','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1521,1,'en','core/base/tables','print','Print','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1522,1,'en','core/base/tables','reset','Reset','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1523,1,'en','core/base/tables','reload','Reload','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1524,1,'en','core/base/tables','display','Display','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1525,1,'en','core/base/tables','all','All','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1526,1,'en','core/base/tables','add_new','Add New','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1527,1,'en','core/base/tables','action','Actions','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1528,1,'en','core/base/tables','delete_entry','Delete','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1529,1,'en','core/base/tables','view','View Detail','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1530,1,'en','core/base/tables','save','Save','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1531,1,'en','core/base/tables','show_from','Show from','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1532,1,'en','core/base/tables','to','to','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1533,1,'en','core/base/tables','in','in','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1534,1,'en','core/base/tables','records','records','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1535,1,'en','core/base/tables','no_data','No data to display','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1536,1,'en','core/base/tables','no_record','No record','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1537,1,'en','core/base/tables','confirm_delete','Confirm delete','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1538,1,'en','core/base/tables','confirm_delete_msg','Do you really want to delete this record?','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1539,1,'en','core/base/tables','confirm_delete_many_msg','Do you really want to delete selected record(s)?','2023-01-22 08:10:13','2023-01-22 08:10:13'),(1540,1,'en','core/base/tables','cancel','Cancel','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1541,1,'en','core/base/tables','template','Template','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1542,1,'en','core/base/tables','email','Email','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1543,1,'en','core/base/tables','last_login','Last login','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1544,1,'en','core/base/tables','shortcode','Shortcode','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1545,1,'en','core/base/tables','image','Image','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1546,1,'en','core/base/tables','bulk_changes','Bulk changes','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1547,1,'en','core/base/tables','submit','Submit','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1548,1,'en','core/base/tables','please_select_record','Please select at least one record to perform this action!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1549,1,'en','core/base/tabs','detail','Detail','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1550,1,'en','core/base/tabs','file','Files','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1551,1,'en','core/base/tabs','record_note','Record Note','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1552,1,'en','core/base/tabs','revision','Revision History','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1553,1,'vi','core/base/base','yes','Có','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1554,1,'vi','core/base/base','no','Không','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1555,1,'vi','core/base/base','is_default','Mặc định?','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1556,1,'vi','core/base/base','proc_close_disabled_error','Hàm proc_close() đã bị tắt. Vui lòng liên hệ nhà cung cấp hosting để mở hàm này. Hoặc có thể thêm vào .env: CAN_EXECUTE_COMMAND=false để tắt tính năng này.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1557,1,'vi','core/base/base','add_image','Thêm ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1558,1,'vi','core/base/base','change_image','Đổi ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1559,1,'vi','core/base/base','delete_image','Xóa ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1560,1,'vi','core/base/base','email_template.date_time','Ngày giờ hiện tại','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1561,1,'vi','core/base/base','email_template.date_year','Năm hiện tại','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1562,1,'vi','core/base/base','email_template.footer','Mẫu chân trang email','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1563,1,'vi','core/base/base','email_template.header','Mẫu đầu trang email','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1564,1,'vi','core/base/base','email_template.site_admin_email','Email quản trị viên','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1565,1,'vi','core/base/base','email_template.site_logo','Logo của trang','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1566,1,'vi','core/base/base','email_template.site_title','Tiêu đề trang','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1567,1,'vi','core/base/base','email_template.site_url','URL trang','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1568,1,'vi','core/base/base','image','Hình ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1569,1,'vi','core/base/base','preview_image','Ảnh xem trước','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1570,1,'vi','core/base/base','select_image','Chọn ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1571,1,'vi','core/base/base','to_add_more_image','để thêm hình ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1572,1,'vi','core/base/base','using_button','Sử dụng nút','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1573,1,'vi','core/base/cache','cache_management','Quản lý bộ nhớ đệm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1574,1,'vi','core/base/cache','cache_commands','Các lệnh xoá bộ nhớ đệm cơ bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1575,1,'vi','core/base/cache','commands.clear_cms_cache.title','Xóa tất cả bộ đệm hiện có của ứng dụng','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1576,1,'vi','core/base/cache','commands.clear_cms_cache.description','Xóa các bộ nhớ đệm của ứng dụng: cơ sở dữ liệu, nội dung tĩnh... Chạy lệnh này khi bạn thử cập nhật dữ liệu nhưng giao diện không thay đổi','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1577,1,'vi','core/base/cache','commands.clear_cms_cache.success_msg','Bộ đệm đã được xóa','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1578,1,'vi','core/base/cache','commands.refresh_compiled_views.title','Làm mới bộ đệm giao diện','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1579,1,'vi','core/base/cache','commands.refresh_compiled_views.description','Làm mới bộ đệm giao diện giúp phần giao diện luôn mới nhất','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1580,1,'vi','core/base/cache','commands.refresh_compiled_views.success_msg','Bộ đệm giao diện đã được làm mới','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1581,1,'vi','core/base/cache','commands.clear_config_cache.title','Xóa bộ nhớ đệm của phần cấu hình','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1582,1,'vi','core/base/cache','commands.clear_config_cache.description','Bạn cần làm mới bộ đệm cấu hình khi bạn tạo ra sự thay đổi nào đó ở môi trường thành phẩm.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1583,1,'vi','core/base/cache','commands.clear_config_cache.success_msg','Bộ đệm cấu hình đã được xóa','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1584,1,'vi','core/base/cache','commands.clear_route_cache.title','Xoá cache đường dẫn','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1585,1,'vi','core/base/cache','commands.clear_route_cache.description','Cần thực hiện thao tác này khi thấy không xuất hiện đường dẫn mới.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1586,1,'vi','core/base/cache','commands.clear_route_cache.success_msg','Bộ đệm điều hướng đã bị xóa','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1587,1,'vi','core/base/cache','commands.clear_log.description','Xoá lịch sử lỗi','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1588,1,'vi','core/base/cache','commands.clear_log.success_msg','Lịch sử lỗi đã được làm sạch','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1589,1,'vi','core/base/cache','commands.clear_log.title','Xoá lịch sử lỗi','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1590,1,'vi','core/base/enums','statuses.draft','Bản nháp','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1591,1,'vi','core/base/enums','statuses.pending','Đang chờ xử lý','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1592,1,'vi','core/base/enums','statuses.published','Đã xuất bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1593,1,'vi','core/base/errors','401_title','Bạn không có quyền truy cập trang này','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1594,1,'vi','core/base/errors','401_msg','<li>Bạn không được cấp quyền truy cập bởi quản trị viên.</li>\n <li>Bạn sử dụng sai loại tài khoản.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1595,1,'vi','core/base/errors','404_title','Không tìm thấy trang yêu cầu','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1596,1,'vi','core/base/errors','404_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n <li>Có thể có lỗi xảy ra.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1597,1,'vi','core/base/errors','500_title','Không thể tải trang','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1598,1,'vi','core/base/errors','500_msg','<li>Trang bạn yêu cầu không tồn tại.</li>\n <li>Liên kết bạn vừa nhấn không còn được sử dụng.</li>\n <li>Trang này có thể đã được chuyển sang vị trí khác.</li>\n <li>Có thể có lỗi xảy ra.</li>\n <li>Bạn không được cấp quyền để có thể truy cập trang này</li>','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1599,1,'vi','core/base/errors','reasons','Điều này có thể xảy ra vì nhiều lý do.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1600,1,'vi','core/base/errors','try_again','Vui lòng thử lại trong vài phút, hoặc quay trở lại trang chủ bằng cách <a href=\":link\"> nhấn vào đây </a>.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1601,1,'vi','core/base/errors','not_found','Không tìm thấy','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1602,1,'vi','core/base/forms','choose_image','Chọn ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1603,1,'vi','core/base/forms','actions','Tác vụ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1604,1,'vi','core/base/forms','save','Lưu','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1605,1,'vi','core/base/forms','save_and_continue','Lưu & chỉnh sửa','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1606,1,'vi','core/base/forms','image','Hình ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1607,1,'vi','core/base/forms','image_placeholder','Chèn đường dẫn hình ảnh hoặc nhấn nút để chọn hình','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1608,1,'vi','core/base/forms','create','Tạo mới','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1609,1,'vi','core/base/forms','edit','Sửa','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1610,1,'vi','core/base/forms','permalink','Đường dẫn','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1611,1,'vi','core/base/forms','ok','OK','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1612,1,'vi','core/base/forms','cancel','Hủy bỏ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1613,1,'vi','core/base/forms','character_remain','kí tự còn lại','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1614,1,'vi','core/base/forms','template','Template','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1615,1,'vi','core/base/forms','choose_file','Chọn tập tin','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1616,1,'vi','core/base/forms','file','Tập tin','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1617,1,'vi','core/base/forms','content','Nội dung','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1618,1,'vi','core/base/forms','description','Mô tả','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1619,1,'vi','core/base/forms','name','Tên','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1620,1,'vi','core/base/forms','name_placeholder','Nhập tên','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1621,1,'vi','core/base/forms','description_placeholder','Mô tả ngắn','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1622,1,'vi','core/base/forms','parent','Cha','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1623,1,'vi','core/base/forms','icon','Biểu tượng','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1624,1,'vi','core/base/forms','order_by','Sắp xếp','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1625,1,'vi','core/base/forms','order_by_placeholder','Sắp xếp','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1626,1,'vi','core/base/forms','slug','Slug','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1627,1,'vi','core/base/forms','is_featured','Nổi bật?','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1628,1,'vi','core/base/forms','is_default','Mặc định?','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1629,1,'vi','core/base/forms','icon_placeholder','Ví dụ: fa fa-home','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1630,1,'vi','core/base/forms','update','Cập nhật','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1631,1,'vi','core/base/forms','publish','Xuất bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1632,1,'vi','core/base/forms','remove_image','Xoá ảnh','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1633,1,'vi','core/base/forms','add','Thêm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1634,1,'vi','core/base/forms','add_short_code','Thêm shortcode','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1635,1,'vi','core/base/forms','alias','Mã thay thế','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1636,1,'vi','core/base/forms','alias_placeholder','Mã thay thế','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1637,1,'vi','core/base/forms','basic_information','Thông tin cơ bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1638,1,'vi','core/base/forms','link','Liên kết','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1639,1,'vi','core/base/forms','order','Thứ tự','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1640,1,'vi','core/base/forms','short_code','Shortcode','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1641,1,'vi','core/base/forms','title','Tiêu đề','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1642,1,'vi','core/base/forms','value','Giá trị','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1643,1,'vi','core/base/forms','show_hide_editor','Ẩn/Hiện trình soạn thảo','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1644,1,'vi','core/base/forms','basic_info_title','Thông tin cơ bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1645,1,'vi','core/base/forms','remove_file','Xóa tập tin','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1646,1,'vi','core/base/layouts','platform_admin','Quản trị hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1647,1,'vi','core/base/layouts','dashboard','Bảng điều khiển','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1648,1,'vi','core/base/layouts','widgets','Tiện ích','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1649,1,'vi','core/base/layouts','plugins','Tiện ích mở rộng','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1650,1,'vi','core/base/layouts','settings','Cài đặt','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1651,1,'vi','core/base/layouts','setting_general','Cơ bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1652,1,'vi','core/base/layouts','system_information','Thông tin hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1653,1,'vi','core/base/layouts','theme','Giao diện','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1654,1,'vi','core/base/layouts','copyright','Bản quyền :year © :company. Phiên bản: <span>:version</span>','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1655,1,'vi','core/base/layouts','profile','Thông tin cá nhân','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1656,1,'vi','core/base/layouts','logout','Đăng xuất','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1657,1,'vi','core/base/layouts','no_search_result','Không có kết quả tìm kiếm, hãy thử lại với từ khóa khác.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1658,1,'vi','core/base/layouts','home','Trang chủ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1659,1,'vi','core/base/layouts','search','Tìm kiếm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1660,1,'vi','core/base/layouts','add_new','Thêm mới','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1661,1,'vi','core/base/layouts','n_a','N/A','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1662,1,'vi','core/base/layouts','page_loaded_time','Trang tải xong trong','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1663,1,'vi','core/base/layouts','view_website','Xem trang ngoài','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1664,1,'vi','core/base/layouts','setting_email','Email','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1665,1,'vi','core/base/mail','send-fail','Gửi email không thành công','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1666,1,'vi','core/base/notices','create_success_message','Tạo thành công','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1667,1,'vi','core/base/notices','update_success_message','Cập nhật thành công','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1668,1,'vi','core/base/notices','delete_success_message','Xóa thành công','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1669,1,'vi','core/base/notices','success_header','Thành công!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1670,1,'vi','core/base/notices','error_header','Lỗi!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1671,1,'vi','core/base/notices','no_select','Chọn ít nhất 1 trường để thực hiện hành động này!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1672,1,'vi','core/base/notices','processing_request','Hệ thống đang xử lý yêu cầu.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1673,1,'vi','core/base/notices','error','Lỗi!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1674,1,'vi','core/base/notices','success','Thành công!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1675,1,'vi','core/base/notices','info','Thông tin!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1676,1,'vi','core/base/notices','enum.validate_message','Giá trị của :attribute không hợp lệ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1677,1,'vi','core/base/system','no_select','Hãy chọn ít nhất 1 trường để thực hiện hành động này!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1678,1,'vi','core/base/system','cannot_find_user','Không thể tải được thông tin người dùng','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1679,1,'vi','core/base/system','supper_revoked','Quyền quản trị viên cao nhất đã được gỡ bỏ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1680,1,'vi','core/base/system','cannot_revoke_yourself','Không thể gỡ bỏ quyền quản trị cấp cao của chính bạn!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1681,1,'vi','core/base/system','cant_remove_supper','Bạn không có quyền xóa quản trị viên cấp cao','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1682,1,'vi','core/base/system','cant_find_user_with_email','Không thể tìm thấy người dùng với email này','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1683,1,'vi','core/base/system','supper_granted','Quyền quản trị cao nhất đã được gán','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1684,1,'vi','core/base/system','delete_log_success','Xóa tập tin log thành công!','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1685,1,'vi','core/base/system','get_member_success','Hiển thị danh sách thành viên thành công','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1686,1,'vi','core/base/system','error_occur','Có lỗi dưới đây','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1687,1,'vi','core/base/system','role_and_permission','Phân quyền hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1688,1,'vi','core/base/system','role_and_permission_description','Quản lý những phân quyền trong hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1689,1,'vi','core/base/system','user.list_super','Danh sách quản trị viên cấp cao','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1690,1,'vi','core/base/system','user.username','Tên đăng nhập','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1691,1,'vi','core/base/system','user.email','Email','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1692,1,'vi','core/base/system','user.last_login','Đăng nhập lần cuối ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1693,1,'vi','core/base/system','user.add_user','Thêm quản trị viên cấp cao','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1694,1,'vi','core/base/system','user.cancel','Hủy bỏ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1695,1,'vi','core/base/system','user.create','Thêm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1696,1,'vi','core/base/system','options.features','Kiểm soát truy cập các tính năng','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1697,1,'vi','core/base/system','options.feature_description','Bật/tắt các tính năng.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1698,1,'vi','core/base/system','options.manage_super','Quản lý quản trị viên cấp cao','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1699,1,'vi','core/base/system','options.manage_super_description','Thêm/xóa quản trị viên cấp cao','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1700,1,'vi','core/base/system','options.info','Thông tin hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1701,1,'vi','core/base/system','options.info_description','Những thông tin về cấu hình hiện tại của hệ thống.','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1702,1,'vi','core/base/system','info.title','Thông tin hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1703,1,'vi','core/base/system','info.cache','Bộ nhớ đệm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1704,1,'vi','core/base/system','info.environment','Môi trường','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1705,1,'vi','core/base/system','info.locale','Ngôn ngữ hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1706,1,'vi','core/base/system','user_management','Quản lý thành viên','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1707,1,'vi','core/base/system','user_management_description','Quản lý người dùng trong hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1708,1,'vi','core/base/system','app_size','Kích thước ứng dụng','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1709,1,'vi','core/base/system','cache_dir_writable','Có thể ghi bộ nhớ đệm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1710,1,'vi','core/base/system','cache_driver','Loại lưu trữ bộ nhớ đệm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1711,1,'vi','core/base/system','copy_report','Sao chép báo cáo','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1712,1,'vi','core/base/system','curl_ext','CURL Ext','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1713,1,'vi','core/base/system','database','Hệ thống dữ liệu','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1714,1,'vi','core/base/system','debug_mode','Chế độ sửa lỗi','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1715,1,'vi','core/base/system','debug_mode_off','Tắt chế độ sửa lỗi','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1716,1,'vi','core/base/system','dependency_name','Tên gói','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1717,1,'vi','core/base/system','exif_ext','Exif Ext','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1718,1,'vi','core/base/system','extra_information','Thông tin mở rộng','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1719,1,'vi','core/base/system','extra_stats','Thống kê thêm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1720,1,'vi','core/base/system','file_info_ext','File info Ext','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1721,1,'vi','core/base/system','framework_version','Phiên bản framework','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1722,1,'vi','core/base/system','get_system_report','Lấy thông tin hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1723,1,'vi','core/base/system','installed_packages','Các gói đã cài đặt và phiên bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1724,1,'vi','core/base/system','mbstring_ext','Mbstring Ext','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1725,1,'vi','core/base/system','openssl_ext','OpenSSL Ext','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1726,1,'vi','core/base/system','package_name','Tên gói','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1727,1,'vi','core/base/system','pdo_ext','PDO Ext','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1728,1,'vi','core/base/system','php_version','Phiên bản PHP','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1729,1,'vi','core/base/system','report_description','Vui lòng chia sẻ thông tin này nhằm mục đích điều tra nguyên nhân gây lỗi','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1730,1,'vi','core/base/system','server_environment','Môi trường máy chủ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1731,1,'vi','core/base/system','server_os','Hệ điều hành của máy chủ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1732,1,'vi','core/base/system','server_software','Phần mềm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1733,1,'vi','core/base/system','session_driver','Loại lưu trữ phiên làm việc','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1734,1,'vi','core/base/system','ssl_installed','Đã cài đặt chứng chỉ SSL','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1735,1,'vi','core/base/system','storage_dir_writable','Có thể lưu trữ dữ liệu tạm','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1736,1,'vi','core/base/system','system_environment','Môi trường hệ thống','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1737,1,'vi','core/base/system','timezone','Múi giờ','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1738,1,'vi','core/base/system','tokenizer_ext','Tokenizer Ext','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1739,1,'vi','core/base/system','version','Phiên bản','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1740,1,'vi','core/base/system','cms_version','Phiên bản CMS','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1741,1,'vi','core/base/system','queue_connection','Queue Connection','2023-01-22 08:10:14','2023-01-22 08:10:14'),(1742,1,'vi','core/base/system','disabled_in_demo_mode','Bạn không thể thực hiện hành động này ở chế độ demo!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1743,1,'vi','core/base/system','imagick_or_gd_ext','Imagick/GD Ext','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1744,1,'vi','core/base/system','php_version_error','Phiên bản PHP phải >= :version','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1745,1,'vi','core/base/system','updater','Nâng cấp hệ thống','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1746,1,'vi','core/base/tables','id','ID','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1747,1,'vi','core/base/tables','name','Tên','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1748,1,'vi','core/base/tables','order_by','Thứ tự','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1749,1,'vi','core/base/tables','status','Trạng thái','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1750,1,'vi','core/base/tables','created_at','Ngày tạo','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1751,1,'vi','core/base/tables','updated_at','Ngày cập nhật','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1752,1,'vi','core/base/tables','operations','Tác vụ','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1753,1,'vi','core/base/tables','url','URL','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1754,1,'vi','core/base/tables','author','Người tạo','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1755,1,'vi','core/base/tables','column','Cột','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1756,1,'vi','core/base/tables','origin','Bản cũ','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1757,1,'vi','core/base/tables','after_change','Sau khi thay đổi','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1758,1,'vi','core/base/tables','notes','Ghi chú','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1759,1,'vi','core/base/tables','activated','kích hoạt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1760,1,'vi','core/base/tables','browser','Trình duyệt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1761,1,'vi','core/base/tables','deactivated','hủy kích hoạt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1762,1,'vi','core/base/tables','description','Mô tả','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1763,1,'vi','core/base/tables','session','Phiên','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1764,1,'vi','core/base/tables','views','Lượt xem','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1765,1,'vi','core/base/tables','restore','Khôi phục','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1766,1,'vi','core/base/tables','edit','Sửa','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1767,1,'vi','core/base/tables','delete','Xóa','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1768,1,'vi','core/base/tables','action','Hành động','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1769,1,'vi','core/base/tables','activate','Kích hoạt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1770,1,'vi','core/base/tables','add_new','Thêm mới','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1771,1,'vi','core/base/tables','all','Tất cả','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1772,1,'vi','core/base/tables','cancel','Hủy bỏ','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1773,1,'vi','core/base/tables','confirm_delete','Xác nhận xóa','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1774,1,'vi','core/base/tables','confirm_delete_msg','Bạn có chắc chắn muốn xóa bản ghi này?','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1775,1,'vi','core/base/tables','csv','CSV','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1776,1,'vi','core/base/tables','deactivate','Hủy kích hoạt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1777,1,'vi','core/base/tables','delete_entry','Xóa bản ghi','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1778,1,'vi','core/base/tables','display','Hiển thị','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1779,1,'vi','core/base/tables','excel','Excel','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1780,1,'vi','core/base/tables','export','Xuất bản','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1781,1,'vi','core/base/tables','in','trong tổng số','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1782,1,'vi','core/base/tables','no_data','Không có dữ liệu để hiển thị','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1783,1,'vi','core/base/tables','no_record','Không có dữ liệu','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1784,1,'vi','core/base/tables','pdf','PDF','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1785,1,'vi','core/base/tables','print','In','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1786,1,'vi','core/base/tables','records','bản ghi','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1787,1,'vi','core/base/tables','reload','Tải lại','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1788,1,'vi','core/base/tables','reset','Làm mới','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1789,1,'vi','core/base/tables','save','Lưu','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1790,1,'vi','core/base/tables','show_from','Hiển thị từ','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1791,1,'vi','core/base/tables','template','Giao diện','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1792,1,'vi','core/base/tables','to','đến','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1793,1,'vi','core/base/tables','view','Xem chi tiết','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1794,1,'vi','core/base/tables','email','Email','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1795,1,'vi','core/base/tables','image','Hình ảnh','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1796,1,'vi','core/base/tables','is_featured','Nổi bật','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1797,1,'vi','core/base/tables','last_login','Lần cuối đăng nhập','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1798,1,'vi','core/base/tables','order','Thứ tự','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1799,1,'vi','core/base/tables','shortcode','Shortcode','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1800,1,'vi','core/base/tables','slug','Slug','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1801,1,'vi','core/base/tables','title','Tiêu đề','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1802,1,'vi','core/base/tables','bulk_changes','Thay đổi hàng loạt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1803,1,'vi','core/base/tables','confirm_delete_many_msg','Bạn có chắc chắn muốn xóa những bản ghi này?','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1804,1,'vi','core/base/tables','submit','Hoàn tất','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1805,1,'vi','core/base/tables','please_select_record','Vui lòng chọn ít nhất 1 bản ghi để thực hiện hành động này!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1806,1,'vi','core/base/tabs','detail','Chi tiết','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1807,1,'vi','core/base/tabs','file','Tập tin','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1808,1,'vi','core/base/tabs','record_note','Ghi chú','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1809,1,'vi','core/base/tabs','revision','Lịch sử thay đổi','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1810,1,'en','core/dashboard/dashboard','update_position_success','Update widget position successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1811,1,'en','core/dashboard/dashboard','hide_success','Update widget successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1812,1,'en','core/dashboard/dashboard','confirm_hide','Are you sure?','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1813,1,'en','core/dashboard/dashboard','hide_message','Do you really want to hide this widget? It will be disappear on Dashboard!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1814,1,'en','core/dashboard/dashboard','confirm_hide_btn','Yes, hide this widget','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1815,1,'en','core/dashboard/dashboard','cancel_hide_btn','Cancel','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1816,1,'en','core/dashboard/dashboard','collapse_expand','Collapse/Expand','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1817,1,'en','core/dashboard/dashboard','hide','Hide','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1818,1,'en','core/dashboard/dashboard','reload','Reload','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1819,1,'en','core/dashboard/dashboard','save_setting_success','Save widget settings successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1820,1,'en','core/dashboard/dashboard','widget_not_exists','Widget is not exits!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1821,1,'en','core/dashboard/dashboard','manage_widgets','Manage Widgets','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1822,1,'en','core/dashboard/dashboard','fullscreen','Full screen','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1823,1,'en','core/dashboard/dashboard','title','Dashboard','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1824,1,'en','core/dashboard/dashboard','predefined_ranges.today','Today','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1825,1,'en','core/dashboard/dashboard','predefined_ranges.yesterday','Yesterday','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1826,1,'en','core/dashboard/dashboard','predefined_ranges.this_week','This Week','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1827,1,'en','core/dashboard/dashboard','predefined_ranges.last_7_days','Last 7 Days','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1828,1,'en','core/dashboard/dashboard','predefined_ranges.this_month','This Month','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1829,1,'en','core/dashboard/dashboard','predefined_ranges.last_30_days','Last 30 Days','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1830,1,'en','core/dashboard/dashboard','predefined_ranges.this_year','This Year','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1831,1,'vi','core/dashboard/dashboard','cancel_hide_btn','Hủy bỏ','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1832,1,'vi','core/dashboard/dashboard','collapse_expand','Mở rộng','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1833,1,'vi','core/dashboard/dashboard','confirm_hide','Bạn có chắc?','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1834,1,'vi','core/dashboard/dashboard','confirm_hide_btn','Vâng, ẩn tiện ích này','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1835,1,'vi','core/dashboard/dashboard','hide','Ẩn','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1836,1,'vi','core/dashboard/dashboard','hide_message','Bạn có chắc chắn muốn ẩn tiện ích này? Nó sẽ không được hiển thị trên trang chủ nữa!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1837,1,'vi','core/dashboard/dashboard','hide_success','Ẩn tiện ích thành công!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1838,1,'vi','core/dashboard/dashboard','manage_widgets','Quản lý tiện ích','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1839,1,'vi','core/dashboard/dashboard','reload','Làm mới','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1840,1,'vi','core/dashboard/dashboard','save_setting_success','Lưu tiện ích thành công','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1841,1,'vi','core/dashboard/dashboard','update_position_success','Cập nhật vị trí tiện ích thành công!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1842,1,'vi','core/dashboard/dashboard','widget_not_exists','Tiện ích này không tồn tại!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1843,1,'vi','core/dashboard/dashboard','fullscreen','Toàn màn hình','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1844,1,'vi','core/dashboard/dashboard','title','Trang quản trị','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1845,1,'en','core/media/media','filter','Filter','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1846,1,'en','core/media/media','everything','Everything','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1847,1,'en','core/media/media','image','Image','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1848,1,'en','core/media/media','video','Video','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1849,1,'en','core/media/media','document','Document','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1850,1,'en','core/media/media','view_in','View in','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1851,1,'en','core/media/media','all_media','All media','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1852,1,'en','core/media/media','trash','Trash','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1853,1,'en','core/media/media','recent','Recent','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1854,1,'en','core/media/media','favorites','Favorites','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1855,1,'en','core/media/media','upload','Upload','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1856,1,'en','core/media/media','create_folder','Create folder','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1857,1,'en','core/media/media','refresh','Refresh','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1858,1,'en','core/media/media','empty_trash','Empty trash','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1859,1,'en','core/media/media','search_file_and_folder','Search in current folder','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1860,1,'en','core/media/media','sort','Sort','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1861,1,'en','core/media/media','file_name_asc','File name - ASC','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1862,1,'en','core/media/media','file_name_desc','File name - DESC','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1863,1,'en','core/media/media','uploaded_date_asc','Uploaded date - ASC','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1864,1,'en','core/media/media','uploaded_date_desc','Uploaded date - DESC','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1865,1,'en','core/media/media','size_asc','Size - ASC','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1866,1,'en','core/media/media','size_desc','Size - DESC','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1867,1,'en','core/media/media','actions','Actions','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1868,1,'en','core/media/media','nothing_is_selected','Nothing is selected','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1869,1,'en','core/media/media','insert','Insert','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1870,1,'en','core/media/media','folder_name','Folder name','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1871,1,'en','core/media/media','create','Create','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1872,1,'en','core/media/media','rename','Rename','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1873,1,'en','core/media/media','crop','Crop','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1874,1,'en','core/media/media','close','Close','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1875,1,'en','core/media/media','save_changes','Save changes','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1876,1,'en','core/media/media','move_to_trash','Move items to trash','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1877,1,'en','core/media/media','confirm_trash','Are you sure you want to move these items to trash?','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1878,1,'en','core/media/media','confirm','Confirm','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1879,1,'en','core/media/media','confirm_delete','Delete item(s)','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1880,1,'en','core/media/media','confirm_delete_description','Your request cannot rollback. Are you sure you wanna delete these items?','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1881,1,'en','core/media/media','empty_trash_title','Empty trash','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1882,1,'en','core/media/media','empty_trash_description','Your request cannot rollback. Are you sure you wanna remove all items in trash?','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1883,1,'en','core/media/media','up_level','Up one level','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1884,1,'en','core/media/media','upload_progress','Upload progress','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1885,1,'en','core/media/media','folder_created','Folder is created successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1886,1,'en','core/media/media','gallery','Media gallery','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1887,1,'en','core/media/media','trash_error','Error when delete selected item(s)','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1888,1,'en','core/media/media','trash_success','Moved selected item(s) to trash successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1889,1,'en','core/media/media','restore_error','Error when restore selected item(s)','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1890,1,'en','core/media/media','restore_success','Restore selected item(s) successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1891,1,'en','core/media/media','copy_success','Copied selected item(s) successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1892,1,'en','core/media/media','delete_success','Deleted selected item(s) successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1893,1,'en','core/media/media','favorite_success','Favorite selected item(s) successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1894,1,'en','core/media/media','remove_favorite_success','Remove selected item(s) from favorites successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1895,1,'en','core/media/media','rename_error','Error when rename item(s)','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1896,1,'en','core/media/media','rename_success','Rename selected item(s) successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1897,1,'en','core/media/media','crop_success','Crop image successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1898,1,'en','core/media/media','empty_trash_success','Empty trash successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1899,1,'en','core/media/media','invalid_action','Invalid action!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1900,1,'en','core/media/media','file_not_exists','File is not exists!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1901,1,'en','core/media/media','download_file_error','Error when downloading files!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1902,1,'en','core/media/media','missing_zip_archive_extension','Please enable ZipArchive extension to download file!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1903,1,'en','core/media/media','can_not_download_file','Can not download this file!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1904,1,'en','core/media/media','invalid_request','Invalid request!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1905,1,'en','core/media/media','add_success','Add item successfully!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1906,1,'en','core/media/media','file_too_big','File too big. Max file upload is :size bytes','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1907,1,'en','core/media/media','file_too_big_readable_size','File too big. Max file upload is :size.','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1908,1,'en','core/media/media','can_not_detect_file_type','File type is not allowed or can not detect file type!','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1909,1,'en','core/media/media','upload_failed','The file is NOT uploaded completely. The server allows max upload file size is :size . Please check your file size OR try to upload again in case of having network errors','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1910,1,'en','core/media/media','failed_to_crop_image','The file cropping must be image type','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1911,1,'en','core/media/media','menu_name','Media','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1912,1,'en','core/media/media','add','Add media','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1913,1,'en','core/media/media','javascript.name','Name','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1914,1,'en','core/media/media','javascript.url','URL','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1915,1,'en','core/media/media','javascript.full_url','Full URL','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1916,1,'en','core/media/media','javascript.size','Size','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1917,1,'en','core/media/media','javascript.mime_type','Type','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1918,1,'en','core/media/media','javascript.created_at','Uploaded at','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1919,1,'en','core/media/media','javascript.updated_at','Modified at','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1920,1,'en','core/media/media','javascript.nothing_selected','Nothing is selected','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1921,1,'en','core/media/media','javascript.visit_link','Open link','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1922,1,'en','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1923,1,'en','core/media/media','javascript.no_item.all_media.title','Drop files and folders here','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1924,1,'en','core/media/media','javascript.no_item.all_media.message','Or use the upload button above','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1925,1,'en','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1926,1,'en','core/media/media','javascript.no_item.trash.title','There is nothing in your trash currently','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1927,1,'en','core/media/media','javascript.no_item.trash.message','Delete files to move them to trash automatically. Delete files from trash to remove them permanently','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1928,1,'en','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1929,1,'en','core/media/media','javascript.no_item.favorites.title','You have not added anything to your favorites yet','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1930,1,'en','core/media/media','javascript.no_item.favorites.message','Add files to favorites to easily find them later','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1931,1,'en','core/media/media','javascript.no_item.recent.icon','far fa-clock','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1932,1,'en','core/media/media','javascript.no_item.recent.title','You did not opened anything yet','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1933,1,'en','core/media/media','javascript.no_item.recent.message','All recent files that you opened will be appeared here','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1934,1,'en','core/media/media','javascript.no_item.default.icon','fas fa-sync','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1935,1,'en','core/media/media','javascript.no_item.default.title','No items','2023-01-22 08:10:15','2023-01-22 08:10:15'),(1936,1,'en','core/media/media','javascript.no_item.default.message','This directory has no item','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1937,1,'en','core/media/media','javascript.clipboard.success','These file links has been copied to clipboard','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1938,1,'en','core/media/media','javascript.message.error_header','Error','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1939,1,'en','core/media/media','javascript.message.success_header','Success','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1940,1,'en','core/media/media','javascript.download.error','No files selected or cannot download these files','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1941,1,'en','core/media/media','javascript.actions_list.basic.preview','Preview','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1942,1,'en','core/media/media','javascript.actions_list.basic.crop','Crop','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1943,1,'en','core/media/media','javascript.actions_list.file.copy_link','Copy link','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1944,1,'en','core/media/media','javascript.actions_list.file.rename','Rename','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1945,1,'en','core/media/media','javascript.actions_list.file.make_copy','Make a copy','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1946,1,'en','core/media/media','javascript.actions_list.user.favorite','Add to favorite','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1947,1,'en','core/media/media','javascript.actions_list.user.remove_favorite','Remove favorite','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1948,1,'en','core/media/media','javascript.actions_list.other.download','Download','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1949,1,'en','core/media/media','javascript.actions_list.other.trash','Move to trash','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1950,1,'en','core/media/media','javascript.actions_list.other.delete','Delete permanently','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1951,1,'en','core/media/media','javascript.actions_list.other.restore','Restore','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1952,1,'en','core/media/media','javascript.change_image','Change image','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1953,1,'en','core/media/media','javascript.delete_image','Delete image','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1954,1,'en','core/media/media','javascript.choose_image','Choose image','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1955,1,'en','core/media/media','javascript.preview_image','Preview image','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1956,1,'en','core/media/media','name_invalid','The folder name has invalid character(s).','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1957,1,'en','core/media/media','url_invalid','Please provide a valid URL','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1958,1,'en','core/media/media','path_invalid','Please provide a valid path','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1959,1,'en','core/media/media','download_link','Download','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1960,1,'en','core/media/media','url','URL','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1961,1,'en','core/media/media','download_explain','Enter one URL per line.','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1962,1,'en','core/media/media','downloading','Downloading...','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1963,1,'en','core/media/media','prepare_file_to_download','Preparing file to download...','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1964,1,'en','core/media/media','cropper.height','Height','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1965,1,'en','core/media/media','cropper.width','Width','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1966,1,'en','core/media/media','cropper.aspect_ratio','Aspect ratio?','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1967,1,'vi','core/media/media','filter','Lọc','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1968,1,'vi','core/media/media','everything','Tất cả','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1969,1,'vi','core/media/media','image','Hình ảnh','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1970,1,'vi','core/media/media','video','Phim','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1971,1,'vi','core/media/media','document','Tài liệu','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1972,1,'vi','core/media/media','view_in','Chế độ xem','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1973,1,'vi','core/media/media','all_media','Tất cả tập tin','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1974,1,'vi','core/media/media','trash','Thùng rác','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1975,1,'vi','core/media/media','recent','Gần đây','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1976,1,'vi','core/media/media','favorites','Được gắn dấu sao','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1977,1,'vi','core/media/media','upload','Tải lên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1978,1,'vi','core/media/media','create_folder','Tạo thư mục','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1979,1,'vi','core/media/media','refresh','Làm mới','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1980,1,'vi','core/media/media','empty_trash','Dọn thùng rác','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1981,1,'vi','core/media/media','search_file_and_folder','Tìm kiếm tập tin và thư mục','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1982,1,'vi','core/media/media','sort','Sắp xếp','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1983,1,'vi','core/media/media','file_name_asc','Tên tập tin - ASC','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1984,1,'vi','core/media/media','file_name_desc','Tên tập tin - DESC','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1985,1,'vi','core/media/media','uploaded_date_asc','Ngày tải lên - ASC','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1986,1,'vi','core/media/media','uploaded_date_desc','Ngày tải lên - DESC','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1987,1,'vi','core/media/media','size_asc','Kích thước - ASC','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1988,1,'vi','core/media/media','size_desc','Kích thước - DESC','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1989,1,'vi','core/media/media','actions','Hành động','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1990,1,'vi','core/media/media','nothing_is_selected','Không có tập tin nào được chọn','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1991,1,'vi','core/media/media','insert','Chèn','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1992,1,'vi','core/media/media','folder_name','Tên thư mục','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1993,1,'vi','core/media/media','create','Tạo','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1994,1,'vi','core/media/media','rename','Đổi tên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1995,1,'vi','core/media/media','close','Đóng','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1996,1,'vi','core/media/media','save_changes','Lưu thay đổi','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1997,1,'vi','core/media/media','move_to_trash','Đưa vào thùng rác','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1998,1,'vi','core/media/media','confirm_trash','Bạn có chắc chắn muốn bỏ những tập tin này vào thùng rác?','2023-01-22 08:10:16','2023-01-22 08:10:16'),(1999,1,'vi','core/media/media','confirm','Xác nhận','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2000,1,'vi','core/media/media','confirm_delete','Xóa tập tin','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2001,1,'vi','core/media/media','confirm_delete_description','Hành động này không thể khôi phục. Bạn có chắc chắn muốn xóa các tập tin này?','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2002,1,'vi','core/media/media','empty_trash_title','Dọn sạch thùng rác','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2003,1,'vi','core/media/media','empty_trash_description','Hành động này không thể khôi phục. Bạn có chắc chắn muốn dọn sạch thùng rác?','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2004,1,'vi','core/media/media','up_level','Quay lại một cấp','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2005,1,'vi','core/media/media','upload_progress','Tiến trình tải lên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2006,1,'vi','core/media/media','folder_created','Tạo thư mục thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2007,1,'vi','core/media/media','gallery','Thư viện tập tin','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2008,1,'vi','core/media/media','trash_error','Có lỗi khi xóa tập tin/thư mục','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2009,1,'vi','core/media/media','trash_success','Xóa tập tin/thư mục thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2010,1,'vi','core/media/media','restore_error','Có lỗi trong quá trình khôi phục','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2011,1,'vi','core/media/media','restore_success','Khôi phục thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2012,1,'vi','core/media/media','copy_success','Sao chép thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2013,1,'vi','core/media/media','delete_success','Xóa thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2014,1,'vi','core/media/media','favorite_success','Thêm dấu sao thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2015,1,'vi','core/media/media','remove_favorite_success','Bỏ dấu sao thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2016,1,'vi','core/media/media','rename_error','Có lỗi trong quá trình đổi tên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2017,1,'vi','core/media/media','rename_success','Đổi tên thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2018,1,'vi','core/media/media','invalid_action','Hành động không hợp lệ!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2019,1,'vi','core/media/media','file_not_exists','Tập tin không tồn tại!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2020,1,'vi','core/media/media','download_file_error','Có lỗi trong quá trình tải xuống tập tin!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2021,1,'vi','core/media/media','missing_zip_archive_extension','Hãy bật ZipArchive extension để tải tập tin!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2022,1,'vi','core/media/media','can_not_download_file','Không thể tải tập tin!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2023,1,'vi','core/media/media','invalid_request','Yêu cầu không hợp lệ!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2024,1,'vi','core/media/media','add_success','Thêm thành công!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2025,1,'vi','core/media/media','file_too_big','Tập tin quá lớn. Giới hạn tải lên là :size bytes','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2026,1,'vi','core/media/media','can_not_detect_file_type','Loại tập tin không hợp lệ hoặc không thể xác định loại tập tin!','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2027,1,'vi','core/media/media','upload_failed','The file is NOT uploaded completely. The server allows max upload file size is :size . Please check your file size OR try to upload again in case of having network errors','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2028,1,'vi','core/media/media','menu_name','Quản lý tập tin','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2029,1,'vi','core/media/media','add','Thêm tập tin','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2030,1,'vi','core/media/media','javascript.name','Tên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2031,1,'vi','core/media/media','javascript.url','Đường dẫn','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2032,1,'vi','core/media/media','javascript.full_url','Đường dẫn tuyệt đối','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2033,1,'vi','core/media/media','javascript.size','Kích thước','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2034,1,'vi','core/media/media','javascript.mime_type','Loại','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2035,1,'vi','core/media/media','javascript.created_at','Được tải lên lúc','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2036,1,'vi','core/media/media','javascript.updated_at','Được chỉnh sửa lúc','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2037,1,'vi','core/media/media','javascript.nothing_selected','Bạn chưa chọn tập tin nào','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2038,1,'vi','core/media/media','javascript.visit_link','Mở liên kết','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2039,1,'vi','core/media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2040,1,'vi','core/media/media','javascript.no_item.all_media.title','Bạn có thể kéo thả tập tin vào đây để tải lên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2041,1,'vi','core/media/media','javascript.no_item.all_media.message','Hoặc có thể bấm nút Tải lên ở phía trên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2042,1,'vi','core/media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2043,1,'vi','core/media/media','javascript.no_item.trash.title','Hiện tại không có tập tin nào trong thùng rác','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2044,1,'vi','core/media/media','javascript.no_item.trash.message','Xóa tập tin sẽ đem tập tin lưu vào thùng rác. Xóa tập tin trong thùng rác sẽ xóa vĩnh viễn.','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2045,1,'vi','core/media/media','javascript.no_item.favorites.icon','fas fa-star','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2046,1,'vi','core/media/media','javascript.no_item.favorites.title','Bạn chưa đặt tập tin nào vào mục yêu thích','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2047,1,'vi','core/media/media','javascript.no_item.favorites.message','Thêm tập tin vào mục yêu thích để tìm kiếm chúng dễ dàng sau này.','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2048,1,'vi','core/media/media','javascript.no_item.recent.icon','far fa-clock','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2049,1,'vi','core/media/media','javascript.no_item.recent.title','Bạn chưa mở tập tin nào.','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2050,1,'vi','core/media/media','javascript.no_item.recent.message','Mục này hiển thị các tập tin bạn đã xem gần đây.','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2051,1,'vi','core/media/media','javascript.no_item.default.icon','fas fa-sync','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2052,1,'vi','core/media/media','javascript.no_item.default.title','Thư mục trống','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2053,1,'vi','core/media/media','javascript.no_item.default.message','Thư mục này chưa có tập tin nào','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2054,1,'vi','core/media/media','javascript.clipboard.success','Đường dẫn của các tập tin đã được sao chép vào clipboard','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2055,1,'vi','core/media/media','javascript.message.error_header','Lỗi','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2056,1,'vi','core/media/media','javascript.message.success_header','Thành công','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2057,1,'vi','core/media/media','javascript.download.error','Bạn chưa chọn tập tin nào hoặc tập tin này không cho phép tải về','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2058,1,'vi','core/media/media','javascript.actions_list.basic.preview','Xem trước','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2059,1,'vi','core/media/media','javascript.actions_list.file.copy_link','Sao chép đường dẫn','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2060,1,'vi','core/media/media','javascript.actions_list.file.rename','Đổi tên','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2061,1,'vi','core/media/media','javascript.actions_list.file.make_copy','Nhân bản','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2062,1,'vi','core/media/media','javascript.actions_list.user.favorite','Yêu thích','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2063,1,'vi','core/media/media','javascript.actions_list.user.remove_favorite','Xóa khỏi mục yêu thích','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2064,1,'vi','core/media/media','javascript.actions_list.other.download','Tải xuống','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2065,1,'vi','core/media/media','javascript.actions_list.other.trash','Chuyển vào thùng rác','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2066,1,'vi','core/media/media','javascript.actions_list.other.delete','Xóa hoàn toàn','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2067,1,'vi','core/media/media','javascript.actions_list.other.restore','Khôi phục','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2068,1,'vi','core/media/media','empty_trash_success','Dọn sạch thùng rác thành công','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2069,1,'vi','core/media/media','name_invalid','Tên thư mục chứa ký tự không hợp lệ','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2070,1,'vi','core/media/media','path_invalid','Vui lòng cung cấp 1 đường dẫn hợp lệ','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2071,1,'vi','core/media/media','url_invalid','Vui lòng cung cấp 1 đường dẫn hợp lệ','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2072,1,'vi','core/media/media','download_explain','Mỗi URL trên 1 dòng','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2073,1,'vi','core/media/media','download_link','Tải xuống','2023-01-22 08:10:16','2023-01-22 08:10:16'),(2074,1,'vi','core/media/media','downloading','Đang tải xuống','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2075,1,'en','core/setting/setting','title','Settings','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2076,1,'en','core/setting/setting','email_setting_title','Email settings','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2077,1,'en','core/setting/setting','general.theme','Theme','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2078,1,'en','core/setting/setting','general.description','Setting site information','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2079,1,'en','core/setting/setting','general.title','General','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2080,1,'en','core/setting/setting','general.general_block','General Information','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2081,1,'en','core/setting/setting','general.rich_editor','Rich Editor','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2082,1,'en','core/setting/setting','general.site_title','Site title','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2083,1,'en','core/setting/setting','general.admin_email','Admin Email','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2084,1,'en','core/setting/setting','general.seo_block','SEO Configuration','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2085,1,'en','core/setting/setting','general.seo_title','SEO Title','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2086,1,'en','core/setting/setting','general.seo_description','SEO Description','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2087,1,'en','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2088,1,'en','core/setting/setting','general.placeholder.site_title','Site Title (maximum 120 characters)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2089,1,'en','core/setting/setting','general.placeholder.admin_email','Admin Email','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2090,1,'en','core/setting/setting','general.placeholder.seo_title','SEO Title (maximum 120 characters)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2091,1,'en','core/setting/setting','general.placeholder.seo_description','SEO Description (maximum 120 characters)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2092,1,'en','core/setting/setting','general.placeholder.google_analytics','Google Analytics','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2093,1,'en','core/setting/setting','general.cache_admin_menu','Cache admin menu?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2094,1,'en','core/setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2095,1,'en','core/setting/setting','general.time_zone','Timezone','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2096,1,'en','core/setting/setting','general.default_admin_theme','Default admin theme','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2097,1,'en','core/setting/setting','general.enable_change_admin_theme','Enable change admin theme?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2098,1,'en','core/setting/setting','general.enable','Enable','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2099,1,'en','core/setting/setting','general.disable','Disable','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2100,1,'en','core/setting/setting','general.enable_cache','Enable cache?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2101,1,'en','core/setting/setting','general.disable_cache_in_the_admin_panel','Disable cache in the admin panel?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2102,1,'en','core/setting/setting','general.cache_time','Cache time (minutes)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2103,1,'en','core/setting/setting','general.enable_cache_site_map','Enable cache site map?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2104,1,'en','core/setting/setting','general.cache_time_site_map','Cache Time Site map (minutes)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2105,1,'en','core/setting/setting','general.admin_logo','Admin logo','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2106,1,'en','core/setting/setting','general.admin_favicon','Admin favicon','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2107,1,'en','core/setting/setting','general.admin_title','Admin title','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2108,1,'en','core/setting/setting','general.admin_title_placeholder','Title show to tab of browser','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2109,1,'en','core/setting/setting','general.cache_block','Cache','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2110,1,'en','core/setting/setting','general.admin_appearance_title','Admin appearance','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2111,1,'en','core/setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2112,1,'en','core/setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2113,1,'en','core/setting/setting','general.webmaster_tools_description','Google Webmaster Tools (GWT) is free software that helps you manage the technical side of your website','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2114,1,'en','core/setting/setting','general.cache_description','Config cache for system for optimize speed','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2115,1,'en','core/setting/setting','general.yes','Yes','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2116,1,'en','core/setting/setting','general.no','No','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2117,1,'en','core/setting/setting','general.show_on_front','Your homepage displays','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2118,1,'en','core/setting/setting','general.select','— Select —','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2119,1,'en','core/setting/setting','general.show_site_name','Show site name after page title, separate with \"-\"?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2120,1,'en','core/setting/setting','general.locale','Site language','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2121,1,'en','core/setting/setting','general.locale_direction','Front site language direction','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2122,1,'en','core/setting/setting','general.admin_locale_direction','Admin language direction','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2123,1,'en','core/setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2124,1,'en','core/setting/setting','general.minutes','minutes','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2125,1,'en','core/setting/setting','email.subject','Subject','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2126,1,'en','core/setting/setting','email.content','Content','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2127,1,'en','core/setting/setting','email.title','Setting for email template','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2128,1,'en','core/setting/setting','email.description','Email template using HTML & system variables.','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2129,1,'en','core/setting/setting','email.reset_to_default','Reset to default','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2130,1,'en','core/setting/setting','email.back','Back to settings','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2131,1,'en','core/setting/setting','email.reset_success','Reset back to default successfully','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2132,1,'en','core/setting/setting','email.confirm_reset','Confirm reset email template?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2133,1,'en','core/setting/setting','email.confirm_message','Do you really want to reset this email template to default?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2134,1,'en','core/setting/setting','email.continue','Continue','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2135,1,'en','core/setting/setting','email.sender_name','Sender name','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2136,1,'en','core/setting/setting','email.sender_name_placeholder','Name','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2137,1,'en','core/setting/setting','email.sender_email','Sender email','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2138,1,'en','core/setting/setting','email.mailer','Mailer','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2139,1,'en','core/setting/setting','email.port','Port','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2140,1,'en','core/setting/setting','email.port_placeholder','Ex: 587','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2141,1,'en','core/setting/setting','email.host','Host','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2142,1,'en','core/setting/setting','email.host_placeholder','Ex: smtp.gmail.com','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2143,1,'en','core/setting/setting','email.username','Username','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2144,1,'en','core/setting/setting','email.username_placeholder','Username to login to mail server','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2145,1,'en','core/setting/setting','email.password','Password','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2146,1,'en','core/setting/setting','email.password_placeholder','Password to login to mail server','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2147,1,'en','core/setting/setting','email.encryption','Encryption','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2148,1,'en','core/setting/setting','email.mail_gun_domain','Domain','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2149,1,'en','core/setting/setting','email.mail_gun_domain_placeholder','Domain','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2150,1,'en','core/setting/setting','email.mail_gun_secret','Secret','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2151,1,'en','core/setting/setting','email.mail_gun_secret_placeholder','Secret','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2152,1,'en','core/setting/setting','email.mail_gun_endpoint','Endpoint','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2153,1,'en','core/setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2154,1,'en','core/setting/setting','email.log_channel','Log channel','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2155,1,'en','core/setting/setting','email.sendmail_path','Sendmail Path','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2156,1,'en','core/setting/setting','email.encryption_placeholder','Encryption: ssl or tls','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2157,1,'en','core/setting/setting','email.ses_key','Key','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2158,1,'en','core/setting/setting','email.ses_key_placeholder','Key','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2159,1,'en','core/setting/setting','email.ses_secret','Secret','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2160,1,'en','core/setting/setting','email.ses_secret_placeholder','Secret','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2161,1,'en','core/setting/setting','email.ses_region','Region','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2162,1,'en','core/setting/setting','email.ses_region_placeholder','Region','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2163,1,'en','core/setting/setting','email.postmark_token','Token','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2164,1,'en','core/setting/setting','email.postmark_token_placeholder','Token','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2165,1,'en','core/setting/setting','email.template_title','Email templates','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2166,1,'en','core/setting/setting','email.template_description','Base templates for all emails','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2167,1,'en','core/setting/setting','email.template_header','Email template header','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2168,1,'en','core/setting/setting','email.template_header_description','Template for header of emails','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2169,1,'en','core/setting/setting','email.template_footer','Email template footer','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2170,1,'en','core/setting/setting','email.template_footer_description','Template for footer of emails','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2171,1,'en','core/setting/setting','email.default','Default','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2172,1,'en','core/setting/setting','email.using_queue_to_send_mail','Using queue job to send emails (Must to setup Queue first https://laravel.com/docs/queues#supervisor-configuration)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2173,1,'en','core/setting/setting','media.title','Media','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2174,1,'en','core/setting/setting','media.driver','Driver','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2175,1,'en','core/setting/setting','media.description','Settings for media','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2176,1,'en','core/setting/setting','media.aws_access_key_id','AWS Access Key ID','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2177,1,'en','core/setting/setting','media.aws_secret_key','AWS Secret Key','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2178,1,'en','core/setting/setting','media.aws_default_region','AWS Default Region','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2179,1,'en','core/setting/setting','media.aws_bucket','AWS Bucket','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2180,1,'en','core/setting/setting','media.aws_url','AWS URL','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2181,1,'en','core/setting/setting','media.aws_endpoint','AWS Endpoint (Optional)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2182,1,'en','core/setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2183,1,'en','core/setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2184,1,'en','core/setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2185,1,'en','core/setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2186,1,'en','core/setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2187,1,'en','core/setting/setting','media.do_spaces_cdn_enabled','Is DO Spaces CDN enabled?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2188,1,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2189,1,'en','core/setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://your-custom-domain.com','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2190,1,'en','core/setting/setting','media.wasabi_access_key_id','Wasabi Access Key ID','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2191,1,'en','core/setting/setting','media.wasabi_secret_key','Wasabi Secret Key','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2192,1,'en','core/setting/setting','media.wasabi_default_region','Wasabi Default Region','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2193,1,'en','core/setting/setting','media.wasabi_bucket','Wasabi Bucket','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2194,1,'en','core/setting/setting','media.wasabi_root','Wasabi Root','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2195,1,'en','core/setting/setting','media.default_placeholder_image','Default placeholder image','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2196,1,'en','core/setting/setting','media.enable_chunk','Enable chunk size upload?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2197,1,'en','core/setting/setting','media.chunk_size','Chunk size (Bytes)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2198,1,'en','core/setting/setting','media.chunk_size_placeholder','Default: 1048576 ~ 1MB','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2199,1,'en','core/setting/setting','media.max_file_size','Chunk max file size (MB)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2200,1,'en','core/setting/setting','media.max_file_size_placeholder','Default: 1048576 ~ 1GB','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2201,1,'en','core/setting/setting','media.enable_watermark','Enable watermark?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2202,1,'en','core/setting/setting','media.watermark_source','Watermark image','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2203,1,'en','core/setting/setting','media.watermark_size','Size of watermark (%)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2204,1,'en','core/setting/setting','media.watermark_size_placeholder','Default: 10 (%)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2205,1,'en','core/setting/setting','media.watermark_opacity','Watermark Opacity (%)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2206,1,'en','core/setting/setting','media.watermark_opacity_placeholder','Default: 70 (%)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2207,1,'en','core/setting/setting','media.watermark_position','Watermark position','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2208,1,'en','core/setting/setting','media.watermark_position_x','Watermark position X','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2209,1,'en','core/setting/setting','media.watermark_position_y','Watermark position Y','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2210,1,'en','core/setting/setting','media.watermark_position_top_left','Top left','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2211,1,'en','core/setting/setting','media.watermark_position_top_right','Top right','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2212,1,'en','core/setting/setting','media.watermark_position_bottom_left','Bottom left','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2213,1,'en','core/setting/setting','media.watermark_position_bottom_right','Bottom right','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2214,1,'en','core/setting/setting','media.watermark_position_center','Center','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2215,1,'en','core/setting/setting','media.turn_off_automatic_url_translation_into_latin','Turn off automatic URL translation into Latin?','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2216,1,'en','core/setting/setting','media.bunnycdn_hostname','Hostname','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2217,1,'en','core/setting/setting','media.bunnycdn_zone','Zone Name (The name of your storage zone)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2218,1,'en','core/setting/setting','media.bunnycdn_key','FTP & API Access Password (The storage zone API Access Password)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2219,1,'en','core/setting/setting','media.bunnycdn_region','Region (The storage zone region)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2220,1,'en','core/setting/setting','media.optional','Optional','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2221,1,'en','core/setting/setting','media.sizes','Media thumbnails sizes','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2222,1,'en','core/setting/setting','media.media_sizes_helper','Set width or height to 0 if you just want to crop by width or height. Need to click on \"Generate thumbnails\" to apply changes.','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2223,1,'en','core/setting/setting','media.width','Width','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2224,1,'en','core/setting/setting','media.height','Height','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2225,1,'en','core/setting/setting','media.default_size_value','Default: :size','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2226,1,'en','core/setting/setting','media.all','All','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2227,1,'en','core/setting/setting','media.media_folders_can_add_watermark','Add watermark for images in folders:','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2228,1,'en','core/setting/setting','media.max_upload_filesize','Max upload filesize (MB)','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2229,1,'en','core/setting/setting','media.max_upload_filesize_placeholder','Default: :size, must less than :size.','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2230,1,'en','core/setting/setting','media.max_upload_filesize_helper','Your server allows to upload files maximum :size, you can change this value to limit upload filesize.','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2231,1,'en','core/setting/setting','media.image_processing_library','Image processing library','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2232,1,'en','core/setting/setting','license.purchase_code','Purchase code','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2233,1,'en','core/setting/setting','license.buyer','Buyer','2023-01-22 08:10:17','2023-01-22 08:10:17'),(2234,1,'en','core/setting/setting','field_type_not_exists','This field type does not exist','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2235,1,'en','core/setting/setting','save_settings','Save settings','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2236,1,'en','core/setting/setting','template','Template','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2237,1,'en','core/setting/setting','description','Description','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2238,1,'en','core/setting/setting','enable','Enable','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2239,1,'en','core/setting/setting','send','Send','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2240,1,'en','core/setting/setting','test_email_description','To send test email, please make sure you are updated configuration to send mail!','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2241,1,'en','core/setting/setting','test_email_input_placeholder','Enter the email which you want to send test email.','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2242,1,'en','core/setting/setting','test_email_modal_title','Send a test email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2243,1,'en','core/setting/setting','test_send_mail','Send test mail','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2244,1,'en','core/setting/setting','test_email_send_success','Send email successfully!','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2245,1,'en','core/setting/setting','locale_direction_ltr','Left to Right','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2246,1,'en','core/setting/setting','locale_direction_rtl','Right to Left','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2247,1,'en','core/setting/setting','saving','Saving...','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2248,1,'en','core/setting/setting','emails_warning','You can add up to :count emails','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2249,1,'en','core/setting/setting','email_add_more','Add more','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2250,1,'en','core/setting/setting','generate','Generate','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2251,1,'en','core/setting/setting','generate_thumbnails','Generate thumbnails','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2252,1,'en','core/setting/setting','generate_thumbnails_success','Generate thumbnails successfully. :count files are generated!','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2253,1,'en','core/setting/setting','generate_thumbnails_error','We are unable to regenerate thumbnail for these files :count files!','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2254,1,'en','core/setting/setting','generate_thumbnails_description','Are you sure you want to re-generate thumbnails for all images? It will take time so please DO NOT leave this page, wait until it is finished.','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2255,1,'en','core/setting/setting','enable_chunk_description','Chunk size upload is used to upload large file size.','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2256,1,'en','core/setting/setting','watermark_description','WARNING: Watermark is just added to new uploaded images, it won\'t be added to existing images. Disable watermark won\'t remove watermark from existing images.','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2257,1,'en','core/setting/setting','submit','Submit','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2258,1,'en','core/setting/setting','back','Back','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2259,1,'en','core/setting/setting','enter_sample_value','Enter sample values for testing','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2260,1,'en','core/setting/setting','preview','Preview','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2261,1,'vi','core/setting/setting','title','Cài đặt','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2262,1,'vi','core/setting/setting','general.theme','Giao diện','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2263,1,'vi','core/setting/setting','general.description','Cấu hình những thông tin cài đặt website.','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2264,1,'vi','core/setting/setting','general.title','Thông tin chung','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2265,1,'vi','core/setting/setting','general.general_block','Thông tin chung','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2266,1,'vi','core/setting/setting','general.site_title','Tên trang','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2267,1,'vi','core/setting/setting','general.admin_email','Email quản trị viên','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2268,1,'vi','core/setting/setting','general.seo_block','Cấu hình SEO','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2269,1,'vi','core/setting/setting','general.seo_title','Tiêu đề SEO','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2270,1,'vi','core/setting/setting','general.seo_description','Mô tả SEO','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2271,1,'vi','core/setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2272,1,'vi','core/setting/setting','general.google_site_verification','Google site verification','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2273,1,'vi','core/setting/setting','general.placeholder.site_title','Tên trang (tối đa 120 kí tự)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2274,1,'vi','core/setting/setting','general.placeholder.admin_email','Admin Email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2275,1,'vi','core/setting/setting','general.placeholder.google_analytics','Ví dụ: UA-42767940-2','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2276,1,'vi','core/setting/setting','general.placeholder.google_site_verification','Mã xác nhận trang web dùng cho Google Webmaster Tool','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2277,1,'vi','core/setting/setting','general.placeholder.seo_title','Tiêu đề SEO (tối đa 120 kí tự)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2278,1,'vi','core/setting/setting','general.placeholder.seo_description','Mô tả SEO (tối đa 120 kí tự)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2279,1,'vi','core/setting/setting','general.enable_change_admin_theme','Cho phép thay đổi giao diện quản trị?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2280,1,'vi','core/setting/setting','general.enable','Bật','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2281,1,'vi','core/setting/setting','general.disable','Tắt','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2282,1,'vi','core/setting/setting','general.enable_cache','Bật bộ nhớ đệm?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2283,1,'vi','core/setting/setting','general.cache_time','Thời gian lưu bộ nhớ đệm (phút)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2284,1,'vi','core/setting/setting','general.cache_time_site_map','Thời gian lưu sơ đồ trang trong bộ nhớ đệm','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2285,1,'vi','core/setting/setting','general.admin_logo','Logo trang quản trị','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2286,1,'vi','core/setting/setting','general.admin_title','Tiêu đề trang quản trị','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2287,1,'vi','core/setting/setting','general.admin_title_placeholder','Tiêu đề hiển thị trên thẻ trình duyệt','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2288,1,'vi','core/setting/setting','general.rich_editor','Bộ soạn thảo văn bản','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2289,1,'vi','core/setting/setting','general.cache_block','Bộ nhớ đệm','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2290,1,'vi','core/setting/setting','general.yes','Bật','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2291,1,'vi','core/setting/setting','general.no','Tắt','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2292,1,'vi','core/setting/setting','general.locale','Ngôn ngữ','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2293,1,'vi','core/setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2294,1,'vi','core/setting/setting','general.admin_appearance_title','Admin appearance','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2295,1,'vi','core/setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2296,1,'vi','core/setting/setting','general.admin_favicon','Admin favicon','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2297,1,'vi','core/setting/setting','general.cache_admin_menu','Cache admin menu?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2298,1,'vi','core/setting/setting','general.cache_description','Config cache for system for optimize speed','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2299,1,'vi','core/setting/setting','general.default_admin_theme','Default admin theme','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2300,1,'vi','core/setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2301,1,'vi','core/setting/setting','general.locale_direction','Hướng chữ viết','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2302,1,'vi','core/setting/setting','general.select','-- Lựa chọn --','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2303,1,'vi','core/setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2304,1,'vi','core/setting/setting','general.show_on_front','Thiết lập trang chủ','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2305,1,'vi','core/setting/setting','general.show_site_name','Hiển thị tên trang web sau tiêu đề trang, tách biệt bằng \"-\"?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2306,1,'vi','core/setting/setting','general.time_zone','Múi giờ','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2307,1,'vi','core/setting/setting','general.webmaster_tools_description','Công cụ quản trị trang web của Google (GWT) là phần mềm miễn phí giúp bạn quản lý khía cạnh kỹ thuật của trang web của mình','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2308,1,'vi','core/setting/setting','email.subject','Tiêu đề','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2309,1,'vi','core/setting/setting','email.content','Nội dung','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2310,1,'vi','core/setting/setting','email.title','Cấu hình email template','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2311,1,'vi','core/setting/setting','email.description','Cấu trúc file template sử dụng HTML và các biến trong hệ thống.','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2312,1,'vi','core/setting/setting','email.reset_to_default','Khôi phục về mặc định','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2313,1,'vi','core/setting/setting','email.back','Trở lại trang cài đặt','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2314,1,'vi','core/setting/setting','email.reset_success','Khôi phục mặc định thành công','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2315,1,'vi','core/setting/setting','email.confirm_reset','Xác nhận khôi phục mặc định?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2316,1,'vi','core/setting/setting','email.confirm_message','Bạn có chắc chắn muốn khôi phục về bản mặc định?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2317,1,'vi','core/setting/setting','email.continue','Tiếp tục','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2318,1,'vi','core/setting/setting','email.sender_name','Tên người gửi','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2319,1,'vi','core/setting/setting','email.sender_name_placeholder','Tên','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2320,1,'vi','core/setting/setting','email.sender_email','Email của người gửi','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2321,1,'vi','core/setting/setting','email.mailer','Loại','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2322,1,'vi','core/setting/setting','email.port','Cổng','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2323,1,'vi','core/setting/setting','email.port_placeholder','Ví dụ: 587','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2324,1,'vi','core/setting/setting','email.host','Máy chủ','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2325,1,'vi','core/setting/setting','email.host_placeholder','Ví dụ: smtp.gmail.com','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2326,1,'vi','core/setting/setting','email.username','Tên đăng nhập','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2327,1,'vi','core/setting/setting','email.username_placeholder','Tên đăng nhập vào máy chủ mail','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2328,1,'vi','core/setting/setting','email.password','Mật khẩu','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2329,1,'vi','core/setting/setting','email.password_placeholder','Mật khẩu đăng nhập vào máy chủ mail','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2330,1,'vi','core/setting/setting','email.encryption','Mã hoá','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2331,1,'vi','core/setting/setting','email.mail_gun_domain','Tên miền','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2332,1,'vi','core/setting/setting','email.mail_gun_domain_placeholder','Tên miền','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2333,1,'vi','core/setting/setting','email.mail_gun_secret','Chuỗi bí mật','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2334,1,'vi','core/setting/setting','email.mail_gun_secret_placeholder','Chuỗi bí mật','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2335,1,'vi','core/setting/setting','email.template_title','Mẫu giao diện email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2336,1,'vi','core/setting/setting','email.template_description','Giao diện mặc định cho tất cả email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2337,1,'vi','core/setting/setting','email.template_header','Mẫu cho phần trên của email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2338,1,'vi','core/setting/setting','email.template_header_description','Phần trên của tất cả email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2339,1,'vi','core/setting/setting','email.template_footer','Mẫu cho phần dưới của email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2340,1,'vi','core/setting/setting','email.template_footer_description','Phần dưới của tất cả email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2341,1,'vi','core/setting/setting','email.default','Mặc định','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2342,1,'vi','core/setting/setting','email.mail_gun_endpoint','Endpoint','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2343,1,'vi','core/setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2344,1,'vi','core/setting/setting','email.postmark_token','Token','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2345,1,'vi','core/setting/setting','email.postmark_token_placeholder','Token','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2346,1,'vi','core/setting/setting','email.encryption_placeholder','Kiểu mã hóa: ssl hoặc tls','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2347,1,'vi','core/setting/setting','email.log_channel','Phương thức log','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2348,1,'vi','core/setting/setting','email.sendmail_path','Sendmail Path','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2349,1,'vi','core/setting/setting','email.ses_key','Key','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2350,1,'vi','core/setting/setting','email.ses_key_placeholder','Key','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2351,1,'vi','core/setting/setting','email.ses_region','Region','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2352,1,'vi','core/setting/setting','email.ses_region_placeholder','Region','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2353,1,'vi','core/setting/setting','email.ses_secret','Secret','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2354,1,'vi','core/setting/setting','email.ses_secret_placeholder','Secret','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2355,1,'vi','core/setting/setting','email.using_queue_to_send_mail','Sử dụng job queue để gửi email (Trước tiên phải thiết lập Queue https://laravel.com/docs/queues#supervisor-configuration)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2356,1,'vi','core/setting/setting','save_settings','Lưu cài đặt','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2357,1,'vi','core/setting/setting','template','Mẫu','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2358,1,'vi','core/setting/setting','description','Mô tả','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2359,1,'vi','core/setting/setting','enable','Bật','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2360,1,'vi','core/setting/setting','test_send_mail','Gửi thử nghiệm','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2361,1,'vi','core/setting/setting','email_setting_title','Cấu hình email','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2362,1,'vi','core/setting/setting','field_type_not_exists','Loại field này không được hỗ trợ','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2363,1,'vi','core/setting/setting','test_email_description','Để gửi email thử nghiệm, hãy đảm bảo rằng bạn đã cập nhật cấu hình để gửi thư!','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2364,1,'vi','core/setting/setting','test_email_input_placeholder','Nhập email mà bạn muốn gửi email thử nghiệm.','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2365,1,'vi','core/setting/setting','test_email_modal_title','Gửi một email thử nghiệm','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2366,1,'vi','core/setting/setting','test_email_send_success','Gửi email thành công!','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2367,1,'vi','core/setting/setting','send','Gửi','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2368,1,'vi','core/setting/setting','license.buyer','Tên đăng nhập','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2369,1,'vi','core/setting/setting','license.purchase_code','Purchase code','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2370,1,'vi','core/setting/setting','locale_direction_ltr','Trái sang phải','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2371,1,'vi','core/setting/setting','locale_direction_rtl','Phải sang trái','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2372,1,'vi','core/setting/setting','media.aws_access_key_id','AWS Access Key ID','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2373,1,'vi','core/setting/setting','media.aws_bucket','AWS Bucket','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2374,1,'vi','core/setting/setting','media.aws_default_region','AWS Default Region','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2375,1,'vi','core/setting/setting','media.aws_url','AWS URL','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2376,1,'vi','core/setting/setting','media.aws_secret_key','AWS Secret Key','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2377,1,'vi','core/setting/setting','media.chunk_size','Chunk size (Bytes)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2378,1,'vi','core/setting/setting','media.chunk_size_placeholder','Mặc định: 1048576 ~ 1MB','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2379,1,'vi','core/setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2380,1,'vi','core/setting/setting','media.description','Cài đặt cho media','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2381,1,'vi','core/setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2382,1,'vi','core/setting/setting','media.do_spaces_cdn_enabled','Bật DO Spaces CDN?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2383,1,'vi','core/setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2384,1,'vi','core/setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2385,1,'vi','core/setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2386,1,'vi','core/setting/setting','media.driver','Driver','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2387,1,'vi','core/setting/setting','media.enable_chunk','Bật chunk size upload?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2388,1,'vi','core/setting/setting','media.enable_watermark','Bật watermark?','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2389,1,'vi','core/setting/setting','media.max_file_size','Chunk max file size (MB)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2390,1,'vi','core/setting/setting','media.max_file_size_placeholder','Mặc định: 1048576 ~ 1GB','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2391,1,'vi','core/setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2392,1,'vi','core/setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://ten-mien-cua-ban.com','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2393,1,'vi','core/setting/setting','media.title','Media','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2394,1,'vi','core/setting/setting','media.watermark_opacity','Watermark Opacity (%)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2395,1,'vi','core/setting/setting','media.watermark_opacity_placeholder','Mặc định: 70 (%)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2396,1,'vi','core/setting/setting','media.watermark_position','Vị trí watermark','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2397,1,'vi','core/setting/setting','media.watermark_position_bottom_left','Bên trái dưới cùng','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2398,1,'vi','core/setting/setting','media.watermark_position_bottom_right','Bên phải dưới cùng','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2399,1,'vi','core/setting/setting','media.watermark_position_center','Chính giữa','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2400,1,'vi','core/setting/setting','media.watermark_position_top_left','Bên trái trên cùng','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2401,1,'vi','core/setting/setting','media.watermark_position_top_right','Bên phải trên cùng','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2402,1,'vi','core/setting/setting','media.watermark_position_x','Watermark position X','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2403,1,'vi','core/setting/setting','media.watermark_position_y','Watermark position Y','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2404,1,'vi','core/setting/setting','media.watermark_size','Kích thước của watermark (%)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2405,1,'vi','core/setting/setting','media.watermark_size_placeholder','Mặc định: 10 (%)','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2406,1,'vi','core/setting/setting','media.watermark_source','Hình ảnh watermark','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2407,1,'en','core/table/table','operations','Operations','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2408,1,'en','core/table/table','loading_data','Loading data from server','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2409,1,'en','core/table/table','display','Display','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2410,1,'en','core/table/table','all','All','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2411,1,'en','core/table/table','edit_entry','Edit','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2412,1,'en','core/table/table','delete_entry','Delete','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2413,1,'en','core/table/table','show_from','Showing from','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2414,1,'en','core/table/table','to','to','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2415,1,'en','core/table/table','in','in','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2416,1,'en','core/table/table','records','records','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2417,1,'en','core/table/table','no_data','No data to display','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2418,1,'en','core/table/table','no_record','No record','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2419,1,'en','core/table/table','loading','Loading data from server','2023-01-22 08:10:18','2023-01-22 08:10:18'),(2420,1,'en','core/table/table','confirm_delete','Confirm delete','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2421,1,'en','core/table/table','confirm_delete_msg','Do you really want to delete this record?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2422,1,'en','core/table/table','cancel','Cancel','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2423,1,'en','core/table/table','delete','Delete','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2424,1,'en','core/table/table','close','Close','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2425,1,'en','core/table/table','contains','Contains','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2426,1,'en','core/table/table','is_equal_to','Is equal to','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2427,1,'en','core/table/table','greater_than','Greater than','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2428,1,'en','core/table/table','less_than','Less than','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2429,1,'en','core/table/table','value','Value','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2430,1,'en','core/table/table','select_field','Select field','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2431,1,'en','core/table/table','reset','Reset','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2432,1,'en','core/table/table','add_additional_filter','Add additional filter','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2433,1,'en','core/table/table','apply','Apply','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2434,1,'en','core/table/table','filters','Filters','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2435,1,'en','core/table/table','bulk_change','Bulk changes','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2436,1,'en','core/table/table','select_option','Select option','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2437,1,'en','core/table/table','bulk_actions','Bulk Actions','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2438,1,'en','core/table/table','save_bulk_change_success','Update data for selected record(s) successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2439,1,'en','core/table/table','please_select_record','Please select at least one record to perform this action!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2440,1,'en','core/table/table','filtered','(filtered from _MAX_ total records)','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2441,1,'en','core/table/table','search','Search...','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2442,1,'vi','core/table/general','operations','Hành động','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2443,1,'vi','core/table/general','loading_data','Đang tải dữ liệu từ hệ thống','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2444,1,'vi','core/table/general','display','Hiển thị','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2445,1,'vi','core/table/general','all','Tất cả','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2446,1,'vi','core/table/general','edit_entry','Sửa','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2447,1,'vi','core/table/general','delete_entry','Xoá','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2448,1,'vi','core/table/general','show_from','Hiển thị từ','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2449,1,'vi','core/table/general','to','đến','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2450,1,'vi','core/table/general','in','trong tổng số','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2451,1,'vi','core/table/general','records','bản ghi','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2452,1,'vi','core/table/general','no_data','Không có dữ liệu để hiển thị','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2453,1,'vi','core/table/general','no_record','không có bản ghi nào','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2454,1,'vi','core/table/general','loading','Đang tải dữ liệu từ hệ thống','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2455,1,'vi','core/table/general','confirm_delete','Xác nhận xoá','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2456,1,'vi','core/table/general','confirm_delete_msg','Bạn có chắc chắn muốn xoá bản ghi này?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2457,1,'vi','core/table/general','cancel','Huỷ bỏ','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2458,1,'vi','core/table/general','delete','Xoá','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2459,1,'vi','core/table/general','close','Đóng','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2460,1,'vi','core/table/general','is_equal_to','Bằng với','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2461,1,'vi','core/table/general','greater_than','Lớn hơn','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2462,1,'vi','core/table/general','less_than','Nhỏ hơn','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2463,1,'vi','core/table/general','value','Giá trị','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2464,1,'vi','core/table/general','select_field','Chọn trường','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2465,1,'vi','core/table/general','reset','Làm mới','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2466,1,'vi','core/table/general','add_additional_filter','Thêm bộ lọc','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2467,1,'vi','core/table/general','apply','Áp dụng','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2468,1,'vi','core/table/general','select_option','Lựa chọn','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2469,1,'vi','core/table/general','filters','Lọc dữ liệu','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2470,1,'vi','core/table/general','bulk_change','Thay đổi hàng loạt','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2471,1,'vi','core/table/general','bulk_actions','Hành động','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2472,1,'vi','core/table/general','contains','Bao gồm','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2473,1,'vi','core/table/general','filtered','(đã được lọc từ _MAX_ bản ghi)','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2474,1,'vi','core/table/table','operations','Hành động','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2475,1,'vi','core/table/table','loading_data','Đang tải dữ liệu từ hệ thống','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2476,1,'vi','core/table/table','display','Hiển thị','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2477,1,'vi','core/table/table','all','Tất cả','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2478,1,'vi','core/table/table','edit_entry','Sửa','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2479,1,'vi','core/table/table','delete_entry','Xoá','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2480,1,'vi','core/table/table','show_from','Hiển thị từ','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2481,1,'vi','core/table/table','to','đến','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2482,1,'vi','core/table/table','in','trong tổng số','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2483,1,'vi','core/table/table','records','bản ghi','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2484,1,'vi','core/table/table','no_data','Không có dữ liệu để hiển thị','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2485,1,'vi','core/table/table','no_record','không có bản ghi nào','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2486,1,'vi','core/table/table','loading','Đang tải dữ liệu từ hệ thống','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2487,1,'vi','core/table/table','confirm_delete','Xác nhận xoá','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2488,1,'vi','core/table/table','confirm_delete_msg','Bạn có chắc chắn muốn xoá bản ghi này?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2489,1,'vi','core/table/table','cancel','Huỷ bỏ','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2490,1,'vi','core/table/table','delete','Xoá','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2491,1,'vi','core/table/table','close','Đóng','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2492,1,'vi','core/table/table','is_equal_to','Bằng với','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2493,1,'vi','core/table/table','greater_than','Lớn hơn','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2494,1,'vi','core/table/table','less_than','Nhỏ hơn','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2495,1,'vi','core/table/table','value','Giá trị','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2496,1,'vi','core/table/table','select_field','Chọn trường','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2497,1,'vi','core/table/table','reset','Làm mới','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2498,1,'vi','core/table/table','add_additional_filter','Thêm bộ lọc','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2499,1,'vi','core/table/table','apply','Áp dụng','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2500,1,'vi','core/table/table','select_option','Lựa chọn','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2501,1,'vi','core/table/table','filters','Lọc dữ liệu','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2502,1,'vi','core/table/table','bulk_change','Thay đổi hàng loạt','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2503,1,'vi','core/table/table','bulk_actions','Hành động','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2504,1,'vi','core/table/table','contains','Bao gồm','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2505,1,'vi','core/table/table','filtered','(đã được lọc từ _MAX_ bản ghi)','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2506,1,'vi','core/table/table','please_select_record','Vui lòng chọn ít nhất 1 bản ghi để thực hiện hành động này!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2507,1,'vi','core/table/table','save_bulk_change_success','Cập nhật dữ liệu cho các bản ghi thành công!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2508,1,'vi','core/table/table','search','Tìm kiếm...','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2509,1,'en','dashboard/dashboard','update_position_success','Update widget position successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2510,1,'en','dashboard/dashboard','hide_success','Update widget successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2511,1,'en','dashboard/dashboard','confirm_hide','Are you sure?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2512,1,'en','dashboard/dashboard','hide_message','Do you really want to hide this widget? It will be disappear on Dashboard!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2513,1,'en','dashboard/dashboard','confirm_hide_btn','Yes, hide this widget','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2514,1,'en','dashboard/dashboard','cancel_hide_btn','Cancel','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2515,1,'en','dashboard/dashboard','collapse_expand','Collapse/Expand','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2516,1,'en','dashboard/dashboard','hide','Hide','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2517,1,'en','dashboard/dashboard','reload','Reload','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2518,1,'en','dashboard/dashboard','save_setting_success','Save widget settings successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2519,1,'en','dashboard/dashboard','widget_not_exists','Widget is not exits!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2520,1,'en','dashboard/dashboard','manage_widgets','Manage Widgets','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2521,1,'en','dashboard/dashboard','fullscreen','Full screen','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2522,1,'en','dashboard/dashboard','title','Dashboard','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2523,1,'vi','dashboard/dashboard','cancel_hide_btn','Hủy bỏ','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2524,1,'vi','dashboard/dashboard','collapse_expand','Mở rộng','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2525,1,'vi','dashboard/dashboard','confirm_hide','Bạn có chắc?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2526,1,'vi','dashboard/dashboard','confirm_hide_btn','Vâng, ẩn tiện ích này','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2527,1,'vi','dashboard/dashboard','hide','Ẩn','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2528,1,'vi','dashboard/dashboard','hide_message','Bạn có chắc chắn muốn ẩn tiện ích này? Nó sẽ không được hiển thị trên trang chủ nữa!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2529,1,'vi','dashboard/dashboard','hide_success','Ẩn tiện ích thành công!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2530,1,'vi','dashboard/dashboard','manage_widgets','Quản lý tiện ích','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2531,1,'vi','dashboard/dashboard','reload','Làm mới','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2532,1,'vi','dashboard/dashboard','save_setting_success','Lưu tiện ích thành công','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2533,1,'vi','dashboard/dashboard','update_position_success','Cập nhật vị trí tiện ích thành công!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2534,1,'vi','dashboard/dashboard','widget_not_exists','Tiện ích này không tồn tại!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2535,1,'vi','dashboard/dashboard','fullscreen','Toàn màn hình','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2536,1,'vi','dashboard/dashboard','title','Trang quản trị','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2537,1,'en','media/media','filter','Filter','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2538,1,'en','media/media','everything','Everything','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2539,1,'en','media/media','image','Image','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2540,1,'en','media/media','video','Video','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2541,1,'en','media/media','document','Document','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2542,1,'en','media/media','view_in','View in','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2543,1,'en','media/media','all_media','All media','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2544,1,'en','media/media','trash','Trash','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2545,1,'en','media/media','recent','Recent','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2546,1,'en','media/media','favorites','Favorites','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2547,1,'en','media/media','upload','Upload','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2548,1,'en','media/media','create_folder','Create folder','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2549,1,'en','media/media','refresh','Refresh','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2550,1,'en','media/media','empty_trash','Empty trash','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2551,1,'en','media/media','search_file_and_folder','Search in current folder','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2552,1,'en','media/media','sort','Sort','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2553,1,'en','media/media','file_name_asc','File name - ASC','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2554,1,'en','media/media','file_name_desc','File name - DESC','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2555,1,'en','media/media','uploaded_date_asc','Uploaded date - ASC','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2556,1,'en','media/media','uploaded_date_desc','Uploaded date - DESC','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2557,1,'en','media/media','size_asc','Size - ASC','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2558,1,'en','media/media','size_desc','Size - DESC','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2559,1,'en','media/media','actions','Actions','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2560,1,'en','media/media','nothing_is_selected','Nothing is selected','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2561,1,'en','media/media','insert','Insert','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2562,1,'en','media/media','folder_name','Folder name','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2563,1,'en','media/media','create','Create','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2564,1,'en','media/media','rename','Rename','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2565,1,'en','media/media','close','Close','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2566,1,'en','media/media','save_changes','Save changes','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2567,1,'en','media/media','move_to_trash','Move items to trash','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2568,1,'en','media/media','confirm_trash','Are you sure you want to move these items to trash?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2569,1,'en','media/media','confirm','Confirm','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2570,1,'en','media/media','confirm_delete','Delete item(s)','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2571,1,'en','media/media','confirm_delete_description','Your request cannot rollback. Are you sure you wanna delete these items?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2572,1,'en','media/media','empty_trash_title','Empty trash','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2573,1,'en','media/media','empty_trash_description','Your request cannot rollback. Are you sure you wanna remove all items in trash?','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2574,1,'en','media/media','up_level','Up one level','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2575,1,'en','media/media','upload_progress','Upload progress','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2576,1,'en','media/media','folder_created','Folder is created successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2577,1,'en','media/media','gallery','Media gallery','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2578,1,'en','media/media','trash_error','Error when delete selected item(s)','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2579,1,'en','media/media','trash_success','Moved selected item(s) to trash successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2580,1,'en','media/media','restore_error','Error when restore selected item(s)','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2581,1,'en','media/media','restore_success','Restore selected item(s) successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2582,1,'en','media/media','copy_success','Copied selected item(s) successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2583,1,'en','media/media','delete_success','Deleted selected item(s) successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2584,1,'en','media/media','favorite_success','Favorite selected item(s) successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2585,1,'en','media/media','remove_favorite_success','Remove selected item(s) from favorites successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2586,1,'en','media/media','rename_error','Error when rename item(s)','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2587,1,'en','media/media','rename_success','Rename selected item(s) successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2588,1,'en','media/media','empty_trash_success','Empty trash successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2589,1,'en','media/media','invalid_action','Invalid action!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2590,1,'en','media/media','file_not_exists','File is not exists!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2591,1,'en','media/media','download_file_error','Error when downloading files!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2592,1,'en','media/media','missing_zip_archive_extension','Please enable ZipArchive extension to download file!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2593,1,'en','media/media','can_not_download_file','Can not download this file!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2594,1,'en','media/media','invalid_request','Invalid request!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2595,1,'en','media/media','add_success','Add item successfully!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2596,1,'en','media/media','file_too_big','File too big. Max file upload is :size bytes','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2597,1,'en','media/media','can_not_detect_file_type','File type is not allowed or can not detect file type!','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2598,1,'en','media/media','upload_failed','The file is NOT uploaded completely. The server allows max upload file size is :size . Please check your file size OR try to upload again in case of having network errors','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2599,1,'en','media/media','menu_name','Media','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2600,1,'en','media/media','add','Add media','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2601,1,'en','media/media','javascript.name','Name','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2602,1,'en','media/media','javascript.url','URL','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2603,1,'en','media/media','javascript.full_url','Full URL','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2604,1,'en','media/media','javascript.size','Size','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2605,1,'en','media/media','javascript.mime_type','Type','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2606,1,'en','media/media','javascript.created_at','Uploaded at','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2607,1,'en','media/media','javascript.updated_at','Modified at','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2608,1,'en','media/media','javascript.nothing_selected','Nothing is selected','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2609,1,'en','media/media','javascript.visit_link','Open link','2023-01-22 08:10:19','2023-01-22 08:10:19'),(2610,1,'en','media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2611,1,'en','media/media','javascript.no_item.all_media.title','Drop files and folders here','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2612,1,'en','media/media','javascript.no_item.all_media.message','Or use the upload button above','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2613,1,'en','media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2614,1,'en','media/media','javascript.no_item.trash.title','There is nothing in your trash currently','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2615,1,'en','media/media','javascript.no_item.trash.message','Delete files to move them to trash automatically. Delete files from trash to remove them permanently','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2616,1,'en','media/media','javascript.no_item.favorites.icon','fas fa-star','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2617,1,'en','media/media','javascript.no_item.favorites.title','You have not added anything to your favorites yet','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2618,1,'en','media/media','javascript.no_item.favorites.message','Add files to favorites to easily find them later','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2619,1,'en','media/media','javascript.no_item.recent.icon','far fa-clock','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2620,1,'en','media/media','javascript.no_item.recent.title','You did not opened anything yet','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2621,1,'en','media/media','javascript.no_item.recent.message','All recent files that you opened will be appeared here','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2622,1,'en','media/media','javascript.no_item.default.icon','fas fa-sync','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2623,1,'en','media/media','javascript.no_item.default.title','No items','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2624,1,'en','media/media','javascript.no_item.default.message','This directory has no item','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2625,1,'en','media/media','javascript.clipboard.success','These file links has been copied to clipboard','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2626,1,'en','media/media','javascript.message.error_header','Error','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2627,1,'en','media/media','javascript.message.success_header','Success','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2628,1,'en','media/media','javascript.download.error','No files selected or cannot download these files','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2629,1,'en','media/media','javascript.actions_list.basic.preview','Preview','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2630,1,'en','media/media','javascript.actions_list.file.copy_link','Copy link','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2631,1,'en','media/media','javascript.actions_list.file.rename','Rename','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2632,1,'en','media/media','javascript.actions_list.file.make_copy','Make a copy','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2633,1,'en','media/media','javascript.actions_list.user.favorite','Add to favorite','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2634,1,'en','media/media','javascript.actions_list.user.remove_favorite','Remove favorite','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2635,1,'en','media/media','javascript.actions_list.other.download','Download','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2636,1,'en','media/media','javascript.actions_list.other.trash','Move to trash','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2637,1,'en','media/media','javascript.actions_list.other.delete','Delete permanently','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2638,1,'en','media/media','javascript.actions_list.other.restore','Restore','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2639,1,'en','media/media','name_invalid','The folder name has invalid character(s).','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2640,1,'en','media/media','url_invalid','Please provide a valid URL','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2641,1,'en','media/media','path_invalid','Please provide a valid path','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2642,1,'en','media/media','download_link','Download','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2643,1,'en','media/media','url','URL','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2644,1,'en','media/media','download_explain','Enter one URL per line.','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2645,1,'en','media/media','downloading','Downloading...','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2646,1,'vi','media/media','filter','Lọc','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2647,1,'vi','media/media','everything','Tất cả','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2648,1,'vi','media/media','image','Hình ảnh','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2649,1,'vi','media/media','video','Phim','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2650,1,'vi','media/media','document','Tài liệu','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2651,1,'vi','media/media','view_in','Chế độ xem','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2652,1,'vi','media/media','all_media','Tất cả tập tin','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2653,1,'vi','media/media','trash','Thùng rác','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2654,1,'vi','media/media','recent','Gần đây','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2655,1,'vi','media/media','favorites','Được gắn dấu sao','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2656,1,'vi','media/media','upload','Tải lên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2657,1,'vi','media/media','create_folder','Tạo thư mục','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2658,1,'vi','media/media','refresh','Làm mới','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2659,1,'vi','media/media','empty_trash','Dọn thùng rác','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2660,1,'vi','media/media','search_file_and_folder','Tìm kiếm tập tin và thư mục','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2661,1,'vi','media/media','sort','Sắp xếp','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2662,1,'vi','media/media','file_name_asc','Tên tập tin - ASC','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2663,1,'vi','media/media','file_name_desc','Tên tập tin - DESC','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2664,1,'vi','media/media','uploaded_date_asc','Ngày tải lên - ASC','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2665,1,'vi','media/media','uploaded_date_desc','Ngày tải lên - DESC','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2666,1,'vi','media/media','size_asc','Kích thước - ASC','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2667,1,'vi','media/media','size_desc','Kích thước - DESC','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2668,1,'vi','media/media','actions','Hành động','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2669,1,'vi','media/media','nothing_is_selected','Không có tập tin nào được chọn','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2670,1,'vi','media/media','insert','Chèn','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2671,1,'vi','media/media','folder_name','Tên thư mục','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2672,1,'vi','media/media','create','Tạo','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2673,1,'vi','media/media','rename','Đổi tên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2674,1,'vi','media/media','close','Đóng','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2675,1,'vi','media/media','save_changes','Lưu thay đổi','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2676,1,'vi','media/media','move_to_trash','Đưa vào thùng rác','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2677,1,'vi','media/media','confirm_trash','Bạn có chắc chắn muốn bỏ những tập tin này vào thùng rác?','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2678,1,'vi','media/media','confirm','Xác nhận','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2679,1,'vi','media/media','confirm_delete','Xóa tập tin','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2680,1,'vi','media/media','confirm_delete_description','Hành động này không thể khôi phục. Bạn có chắc chắn muốn xóa các tập tin này?','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2681,1,'vi','media/media','empty_trash_title','Dọn sạch thùng rác','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2682,1,'vi','media/media','empty_trash_description','Hành động này không thể khôi phục. Bạn có chắc chắn muốn dọn sạch thùng rác?','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2683,1,'vi','media/media','up_level','Quay lại một cấp','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2684,1,'vi','media/media','upload_progress','Tiến trình tải lên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2685,1,'vi','media/media','folder_created','Tạo thư mục thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2686,1,'vi','media/media','gallery','Thư viện tập tin','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2687,1,'vi','media/media','trash_error','Có lỗi khi xóa tập tin/thư mục','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2688,1,'vi','media/media','trash_success','Xóa tập tin/thư mục thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2689,1,'vi','media/media','restore_error','Có lỗi trong quá trình khôi phục','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2690,1,'vi','media/media','restore_success','Khôi phục thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2691,1,'vi','media/media','copy_success','Sao chép thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2692,1,'vi','media/media','delete_success','Xóa thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2693,1,'vi','media/media','favorite_success','Thêm dấu sao thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2694,1,'vi','media/media','remove_favorite_success','Bỏ dấu sao thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2695,1,'vi','media/media','rename_error','Có lỗi trong quá trình đổi tên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2696,1,'vi','media/media','rename_success','Đổi tên thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2697,1,'vi','media/media','invalid_action','Hành động không hợp lệ!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2698,1,'vi','media/media','file_not_exists','Tập tin không tồn tại!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2699,1,'vi','media/media','download_file_error','Có lỗi trong quá trình tải xuống tập tin!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2700,1,'vi','media/media','missing_zip_archive_extension','Hãy bật ZipArchive extension để tải tập tin!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2701,1,'vi','media/media','can_not_download_file','Không thể tải tập tin!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2702,1,'vi','media/media','invalid_request','Yêu cầu không hợp lệ!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2703,1,'vi','media/media','add_success','Thêm thành công!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2704,1,'vi','media/media','file_too_big','Tập tin quá lớn. Giới hạn tải lên là :size bytes','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2705,1,'vi','media/media','can_not_detect_file_type','Loại tập tin không hợp lệ hoặc không thể xác định loại tập tin!','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2706,1,'vi','media/media','upload_failed','The file is NOT uploaded completely. The server allows max upload file size is :size . Please check your file size OR try to upload again in case of having network errors','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2707,1,'vi','media/media','menu_name','Quản lý tập tin','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2708,1,'vi','media/media','add','Thêm tập tin','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2709,1,'vi','media/media','javascript.name','Tên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2710,1,'vi','media/media','javascript.url','Đường dẫn','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2711,1,'vi','media/media','javascript.full_url','Đường dẫn tuyệt đối','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2712,1,'vi','media/media','javascript.size','Kích thước','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2713,1,'vi','media/media','javascript.mime_type','Loại','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2714,1,'vi','media/media','javascript.created_at','Được tải lên lúc','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2715,1,'vi','media/media','javascript.updated_at','Được chỉnh sửa lúc','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2716,1,'vi','media/media','javascript.nothing_selected','Bạn chưa chọn tập tin nào','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2717,1,'vi','media/media','javascript.visit_link','Mở liên kết','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2718,1,'vi','media/media','javascript.no_item.all_media.icon','fas fa-cloud-upload-alt','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2719,1,'vi','media/media','javascript.no_item.all_media.title','Bạn có thể kéo thả tập tin vào đây để tải lên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2720,1,'vi','media/media','javascript.no_item.all_media.message','Hoặc có thể bấm nút Tải lên ở phía trên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2721,1,'vi','media/media','javascript.no_item.trash.icon','fas fa-trash-alt','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2722,1,'vi','media/media','javascript.no_item.trash.title','Hiện tại không có tập tin nào trong thùng rác','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2723,1,'vi','media/media','javascript.no_item.trash.message','Xóa tập tin sẽ đem tập tin lưu vào thùng rác. Xóa tập tin trong thùng rác sẽ xóa vĩnh viễn.','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2724,1,'vi','media/media','javascript.no_item.favorites.icon','fas fa-star','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2725,1,'vi','media/media','javascript.no_item.favorites.title','Bạn chưa đặt tập tin nào vào mục yêu thích','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2726,1,'vi','media/media','javascript.no_item.favorites.message','Thêm tập tin vào mục yêu thích để tìm kiếm chúng dễ dàng sau này.','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2727,1,'vi','media/media','javascript.no_item.recent.icon','far fa-clock','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2728,1,'vi','media/media','javascript.no_item.recent.title','Bạn chưa mở tập tin nào.','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2729,1,'vi','media/media','javascript.no_item.recent.message','Mục này hiển thị các tập tin bạn đã xem gần đây.','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2730,1,'vi','media/media','javascript.no_item.default.icon','fas fa-sync','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2731,1,'vi','media/media','javascript.no_item.default.title','Thư mục trống','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2732,1,'vi','media/media','javascript.no_item.default.message','Thư mục này chưa có tập tin nào','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2733,1,'vi','media/media','javascript.clipboard.success','Đường dẫn của các tập tin đã được sao chép vào clipboard','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2734,1,'vi','media/media','javascript.message.error_header','Lỗi','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2735,1,'vi','media/media','javascript.message.success_header','Thành công','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2736,1,'vi','media/media','javascript.download.error','Bạn chưa chọn tập tin nào hoặc tập tin này không cho phép tải về','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2737,1,'vi','media/media','javascript.actions_list.basic.preview','Xem trước','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2738,1,'vi','media/media','javascript.actions_list.file.copy_link','Sao chép đường dẫn','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2739,1,'vi','media/media','javascript.actions_list.file.rename','Đổi tên','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2740,1,'vi','media/media','javascript.actions_list.file.make_copy','Nhân bản','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2741,1,'vi','media/media','javascript.actions_list.user.favorite','Yêu thích','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2742,1,'vi','media/media','javascript.actions_list.user.remove_favorite','Xóa khỏi mục yêu thích','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2743,1,'vi','media/media','javascript.actions_list.other.download','Tải xuống','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2744,1,'vi','media/media','javascript.actions_list.other.trash','Chuyển vào thùng rác','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2745,1,'vi','media/media','javascript.actions_list.other.delete','Xóa hoàn toàn','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2746,1,'vi','media/media','javascript.actions_list.other.restore','Khôi phục','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2747,1,'vi','media/media','empty_trash_success','Dọn sạch thùng rác thành công','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2748,1,'vi','media/media','name_invalid','Tên thư mục chứa ký tự không hợp lệ','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2749,1,'vi','media/media','path_invalid','Vui lòng cung cấp 1 đường dẫn hợp lệ','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2750,1,'vi','media/media','url_invalid','Vui lòng cung cấp 1 đường dẫn hợp lệ','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2751,1,'vi','media/media','download_explain','Mỗi URL trên 1 dòng','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2752,1,'vi','media/media','download_link','Tải xuống','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2753,1,'vi','media/media','downloading','Đang tải xuống','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2754,1,'en','packages/api/api','settings','API Settings','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2755,1,'en','packages/api/api','save_settings','Save settings','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2756,1,'en','packages/api/api','setting_title','API settings','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2757,1,'en','packages/api/api','setting_description','Settings for API','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2758,1,'en','packages/api/api','api_enabled','API enabled?','2023-01-22 08:10:20','2023-01-22 08:10:20'),(2759,1,'en','packages/get-started/get-started','welcome_title','Welcome to your admin dashboard!','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2760,1,'en','packages/get-started/get-started','welcome_description','In a few short steps, you can have your new dashboard up and running!','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2761,1,'en','packages/get-started/get-started','get_started','Get Started!','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2762,1,'en','packages/get-started/get-started','customize_branding_title','Customize branding','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2763,1,'en','packages/get-started/get-started','customize_branding_description','Customize your site with colors, logo and subdomain to match your business unique branding and identity.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2764,1,'en','packages/get-started/get-started','colors','Colors','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2765,1,'en','packages/get-started/get-started','fonts','Fonts','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2766,1,'en','packages/get-started/get-started','primary_color','Primary color','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2767,1,'en','packages/get-started/get-started','primary_font','Primary font','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2768,1,'en','packages/get-started/get-started','setup_wizard_button',':link to finish Quick setup Wizard!','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2769,1,'en','packages/get-started/get-started','click_here','Click here','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2770,1,'en','packages/get-started/get-started','site_title','Site title','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2771,1,'en','packages/get-started/get-started','identify','Identify','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2772,1,'en','packages/get-started/get-started','logo','Logo','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2773,1,'en','packages/get-started/get-started','admin_logo','Admin logo','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2774,1,'en','packages/get-started/get-started','favicon','Favicon','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2775,1,'en','packages/get-started/get-started','admin_favicon','Admin favicon','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2776,1,'en','packages/get-started/get-started','next_step','Next step','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2777,1,'en','packages/get-started/get-started','site_ready_title','Your site is ready!','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2778,1,'en','packages/get-started/get-started','site_ready_description','Welcome to your new site! Your website has been created and populated with sample data. You are in the admin area of your site where you can set up everything else needed to complete your site.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2779,1,'en','packages/get-started/get-started','finish','Finish','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2780,1,'en','packages/get-started/get-started','exit_wizard_title','Are you sure you want to exit the Quick Setup Wizard?','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2781,1,'en','packages/get-started/get-started','exit_wizard_confirm','Yes, I\'ll finish it later','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2782,1,'en','packages/get-started/get-started','exit_wizard_cancel','No, take me back to the wizard','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2783,1,'en','packages/get-started/get-started','change_default_account_info_title','Change default account info','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2784,1,'en','packages/get-started/get-started','change_default_account_info_description','The default account is using a weak password. You need to change it to a complex password for better security.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2785,1,'en','packages/get-started/get-started','username','Username','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2786,1,'en','packages/get-started/get-started','email','Email','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2787,1,'en','packages/get-started/get-started','password','Password','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2788,1,'en','packages/get-started/get-started','password_confirmation','Password confirmation','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2789,1,'en','packages/installer/installer','title','Installer','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2790,1,'en','packages/installer/installer','next','Next Step','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2791,1,'en','packages/installer/installer','back','Previous','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2792,1,'en','packages/installer/installer','finish','Install','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2793,1,'en','packages/installer/installer','forms.errorTitle','The following errors occurred:','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2794,1,'en','packages/installer/installer','welcome.templateTitle','Welcome','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2795,1,'en','packages/installer/installer','welcome.title','Welcome','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2796,1,'en','packages/installer/installer','welcome.message','Before getting started, we need some information on the database. You will need to know the following items before proceeding.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2797,1,'en','packages/installer/installer','welcome.next','Let\'s go','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2798,1,'en','packages/installer/installer','requirements.templateTitle','Step 1 | Server Requirements','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2799,1,'en','packages/installer/installer','requirements.title','Server Requirements','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2800,1,'en','packages/installer/installer','requirements.next','Check Permissions','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2801,1,'en','packages/installer/installer','permissions.templateTitle','Step 2 | Permissions','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2802,1,'en','packages/installer/installer','permissions.title','Permissions','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2803,1,'en','packages/installer/installer','permissions.next','Configure Environment','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2804,1,'en','packages/installer/installer','environment.wizard.templateTitle','Environment Settings','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2805,1,'en','packages/installer/installer','environment.wizard.title','Environment Settings','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2806,1,'en','packages/installer/installer','environment.wizard.form.name_required','An environment name is required.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2807,1,'en','packages/installer/installer','environment.wizard.form.app_name_label','Site title','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2808,1,'en','packages/installer/installer','environment.wizard.form.app_name_placeholder','Site title','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2809,1,'en','packages/installer/installer','environment.wizard.form.app_url_label','URL','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2810,1,'en','packages/installer/installer','environment.wizard.form.app_url_placeholder','URL','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2811,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label','Database Connection','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2812,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label_mysql','MySQL','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2813,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label_sqlite','SQLite','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2814,1,'en','packages/installer/installer','environment.wizard.form.db_connection_label_pgsql','PostgreSQL','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2815,1,'en','packages/installer/installer','environment.wizard.form.db_host_label','Database host','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2816,1,'en','packages/installer/installer','environment.wizard.form.db_host_placeholder','Database host','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2817,1,'en','packages/installer/installer','environment.wizard.form.db_port_label','Database port','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2818,1,'en','packages/installer/installer','environment.wizard.form.db_port_placeholder','Database port','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2819,1,'en','packages/installer/installer','environment.wizard.form.db_name_label','Database name','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2820,1,'en','packages/installer/installer','environment.wizard.form.db_name_placeholder','Database name','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2821,1,'en','packages/installer/installer','environment.wizard.form.db_username_label','Database username','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2822,1,'en','packages/installer/installer','environment.wizard.form.db_username_placeholder','Database username','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2823,1,'en','packages/installer/installer','environment.wizard.form.db_password_label','Database password','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2824,1,'en','packages/installer/installer','environment.wizard.form.db_password_placeholder','Database password','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2825,1,'en','packages/installer/installer','environment.wizard.form.buttons.install','Install','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2826,1,'en','packages/installer/installer','environment.wizard.form.db_host_helper','If you use Laravel Sail, just change DB_HOST to DB_HOST=mysql. On some hosting DB_HOST can be localhost instead of 127.0.0.1','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2827,1,'en','packages/installer/installer','environment.wizard.form.db_connections.mysql','MySQL','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2828,1,'en','packages/installer/installer','environment.wizard.form.db_connections.sqlite','SQLite','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2829,1,'en','packages/installer/installer','environment.wizard.form.db_connections.pgsql','PostgreSQL','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2830,1,'en','packages/installer/installer','environment.success','Your .env file settings have been saved.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2831,1,'en','packages/installer/installer','environment.errors','Unable to save the .env file, Please create it manually.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2832,1,'en','packages/installer/installer','install','Install','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2833,1,'en','packages/installer/installer','final.title','Installation Finished','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2834,1,'en','packages/installer/installer','final.templateTitle','Installation Finished','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2835,1,'en','packages/installer/installer','final.finished','Application has been successfully installed.','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2836,1,'en','packages/installer/installer','final.exit','Click here to exit','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2837,1,'en','packages/installer/installer','create_account','Create account','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2838,1,'en','packages/installer/installer','first_name','First name','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2839,1,'en','packages/installer/installer','last_name','Last name','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2840,1,'en','packages/installer/installer','username','Username','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2841,1,'en','packages/installer/installer','email','Email','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2842,1,'en','packages/installer/installer','password','Password','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2843,1,'en','packages/installer/installer','password_confirmation','Password confirmation','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2844,1,'en','packages/installer/installer','create','Create','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2845,1,'en','packages/installer/installer','install_success','Installed successfully!','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2846,1,'en','packages/menu/menu','name','Menus','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2847,1,'en','packages/menu/menu','key_name','Menu name (key: :key)','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2848,1,'en','packages/menu/menu','basic_info','Basic information','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2849,1,'en','packages/menu/menu','add_to_menu','Add to menu','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2850,1,'en','packages/menu/menu','custom_link','Custom link','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2851,1,'en','packages/menu/menu','add_link','Add link','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2852,1,'en','packages/menu/menu','structure','Menu structure','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2853,1,'en','packages/menu/menu','remove','Remove','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2854,1,'en','packages/menu/menu','cancel','Cancel','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2855,1,'en','packages/menu/menu','title','Title','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2856,1,'en','packages/menu/menu','icon','Icon','2023-01-22 08:10:21','2023-01-22 08:10:21'),(2857,1,'en','packages/menu/menu','url','URL','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2858,1,'en','packages/menu/menu','target','Target','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2859,1,'en','packages/menu/menu','css_class','CSS class','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2860,1,'en','packages/menu/menu','self_open_link','Open link directly','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2861,1,'en','packages/menu/menu','blank_open_link','Open link in new tab','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2862,1,'en','packages/menu/menu','create','Create menu','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2863,1,'en','packages/menu/menu','edit','Edit menu','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2864,1,'en','packages/menu/menu','menu_settings','Menu settings','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2865,1,'en','packages/menu/menu','display_location','Display location','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2866,1,'en','packages/menu/menu','title_placeholder','Title','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2867,1,'en','packages/menu/menu','icon_placeholder','Icon','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2868,1,'en','packages/menu/menu','url_placeholder','URL','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2869,1,'en','packages/menu/menu','css_class_placeholder','CSS class','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2870,1,'en','packages/menu/menu','menu_id','Menu ID','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2871,1,'vi','packages/menu/menu','name','Trình đơn','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2872,1,'vi','packages/menu/menu','cancel','Hủy bỏ','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2873,1,'vi','packages/menu/menu','add_link','Thêm liên kết','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2874,1,'vi','packages/menu/menu','add_to_menu','Thêm vào trình đơn','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2875,1,'vi','packages/menu/menu','basic_info','Thông tin cơ bản','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2876,1,'vi','packages/menu/menu','blank_open_link','Mở liên kết trong tab mới','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2877,1,'vi','packages/menu/menu','css_class','CSS class','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2878,1,'vi','packages/menu/menu','custom_link','Liên kết tùy chọn','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2879,1,'vi','packages/menu/menu','icon','Biểu tượng','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2880,1,'vi','packages/menu/menu','key_name','Tên menu (key::key)','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2881,1,'vi','packages/menu/menu','remove','Xóa','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2882,1,'vi','packages/menu/menu','self_open_link','Mở liên kết trong tab hiện tại','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2883,1,'vi','packages/menu/menu','structure','Cấu trúc trình đơn','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2884,1,'vi','packages/menu/menu','target','Target','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2885,1,'vi','packages/menu/menu','title','Tiêu đề','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2886,1,'vi','packages/menu/menu','url','URL','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2887,1,'vi','packages/menu/menu','create','Tạo trình đơn','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2888,1,'vi','packages/menu/menu','edit','Sửa trình đơn','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2889,1,'vi','packages/menu/menu','display_location','Vị trí hiển thị','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2890,1,'vi','packages/menu/menu','menu_settings','Cấu hình menu','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2891,1,'en','packages/optimize/optimize','settings.title','Optimize page speed','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2892,1,'en','packages/optimize/optimize','settings.description','Minify HTML output, inline CSS, remove comments...','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2893,1,'en','packages/optimize/optimize','settings.enable','Enable optimize page speed?','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2894,1,'en','packages/optimize/optimize','collapse_white_space','Collapse white space','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2895,1,'en','packages/optimize/optimize','collapse_white_space_description','This filter reduces bytes transmitted in an HTML file by removing unnecessary whitespace.','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2896,1,'en','packages/optimize/optimize','elide_attributes','Elide attributes','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2897,1,'en','packages/optimize/optimize','elide_attributes_description','This filter reduces the transfer size of HTML files by removing attributes from tags when the specified value is equal to the default value for that attribute. This can save a modest number of bytes, and may make the document more compressible by canonicalizing the affected tags.','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2898,1,'en','packages/optimize/optimize','inline_css','Inline CSS','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2899,1,'en','packages/optimize/optimize','inline_css_description','This filter transforms the inline \"style\" attribute of tags into classes by moving the CSS to the header.','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2900,1,'en','packages/optimize/optimize','insert_dns_prefetch','Insert DNS prefetch','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2901,1,'en','packages/optimize/optimize','insert_dns_prefetch_description','This filter injects tags in the HEAD to enable the browser to do DNS prefetching.','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2902,1,'en','packages/optimize/optimize','remove_comments','Remove comments','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2903,1,'en','packages/optimize/optimize','remove_comments_description','This filter eliminates HTML, JS and CSS comments. The filter reduces the transfer size of HTML files by removing the comments. Depending on the HTML file, this filter can significantly reduce the number of bytes transmitted on the network.','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2904,1,'en','packages/optimize/optimize','remove_quotes','Remove quotes','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2905,1,'en','packages/optimize/optimize','remove_quotes_description','This filter eliminates unnecessary quotation marks from HTML attributes. While required by the various HTML specifications, browsers permit their omission when the value of an attribute is composed of a certain subset of characters (alphanumerics and some punctuation characters).','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2906,1,'en','packages/optimize/optimize','defer_javascript','Defer javascript','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2907,1,'en','packages/optimize/optimize','defer_javascript_description','Defers the execution of javascript in the HTML. If necessary cancel deferring in some script, use data-pagespeed-no-defer as script attribute to cancel deferring.','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2908,1,'vi','packages/optimize/optimize','settings.title','Tối ưu tốc độ','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2909,1,'vi','packages/optimize/optimize','settings.description','Nén HTML output, inline CSS, xóa chú thích...','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2910,1,'vi','packages/optimize/optimize','settings.enable','Bật tối ưu tốc độ?','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2911,1,'en','packages/page/pages','create','Create new page','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2912,1,'en','packages/page/pages','edit','Edit page','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2913,1,'en','packages/page/pages','form.name','Name','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2914,1,'en','packages/page/pages','form.name_placeholder','Page\'s name (Maximum 120 characters)','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2915,1,'en','packages/page/pages','form.content','Content','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2916,1,'en','packages/page/pages','form.note','Note content','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2917,1,'en','packages/page/pages','notices.no_select','Please select at least one record to take this action!','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2918,1,'en','packages/page/pages','notices.update_success_message','Update successfully','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2919,1,'en','packages/page/pages','cannot_delete','Page could not be deleted','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2920,1,'en','packages/page/pages','deleted','Page deleted','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2921,1,'en','packages/page/pages','pages','Pages','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2922,1,'en','packages/page/pages','menu','Pages','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2923,1,'en','packages/page/pages','menu_name','Pages','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2924,1,'en','packages/page/pages','edit_this_page','Edit this page','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2925,1,'en','packages/page/pages','total_pages','Total pages','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2926,1,'en','packages/page/pages','settings.show_on_front','Your homepage displays','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2927,1,'en','packages/page/pages','settings.select','— Select —','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2928,1,'en','packages/page/pages','front_page','Front Page','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2929,1,'vi','packages/page/pages','create','Thêm trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2930,1,'vi','packages/page/pages','edit','Sửa trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2931,1,'vi','packages/page/pages','form.name','Tiêu đề trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2932,1,'vi','packages/page/pages','form.note','Nội dung ghi chú','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2933,1,'vi','packages/page/pages','form.name_placeholder','Tên trang (tối đa 120 kí tự)','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2934,1,'vi','packages/page/pages','form.content','Nội dung','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2935,1,'vi','packages/page/pages','notices.no_select','Chọn ít nhất 1 trang để thực hiện hành động này!','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2936,1,'vi','packages/page/pages','notices.update_success_message','Cập nhật thành công','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2937,1,'vi','packages/page/pages','deleted','Xóa trang thành công','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2938,1,'vi','packages/page/pages','cannot_delete','Không thể xóa trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2939,1,'vi','packages/page/pages','menu','Trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2940,1,'vi','packages/page/pages','menu_name','Trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2941,1,'vi','packages/page/pages','edit_this_page','Sửa trang này','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2942,1,'vi','packages/page/pages','pages','Trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2943,1,'vi','packages/page/pages','front_page','Trang chủ','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2944,1,'vi','packages/page/pages','settings.select','-- Lựa chọn --','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2945,1,'vi','packages/page/pages','settings.show_on_front','Lựa chọn trang chủ','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2946,1,'vi','packages/page/pages','total_pages','Tổng số trang','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2947,1,'en','packages/plugin-management/marketplace','previous','« Previous','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2948,1,'en','packages/plugin-management/marketplace','next','Next »','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2949,1,'en','packages/plugin-management/marketplace','showing','Showing','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2950,1,'en','packages/plugin-management/marketplace','to','to','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2951,1,'en','packages/plugin-management/marketplace','of','of','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2952,1,'en','packages/plugin-management/marketplace','results','results','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2953,1,'en','packages/plugin-management/marketplace','add_new','Add new','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2954,1,'en','packages/plugin-management/marketplace','installed','Installed','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2955,1,'en','packages/plugin-management/marketplace','install_now','Install now','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2956,1,'en','packages/plugin-management/marketplace','installing','Installing...','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2957,1,'en','packages/plugin-management/marketplace','detail','Details','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2958,1,'en','packages/plugin-management/marketplace','version','Version','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2959,1,'en','packages/plugin-management/marketplace','minimum_core_version','Minimum core version','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2960,1,'en','packages/plugin-management/marketplace','last_update','Last update','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2961,1,'en','packages/plugin-management/marketplace','compatible_version','Compatible with your version of Botble','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2962,1,'en','packages/plugin-management/marketplace','incompatible_version','Incompatible with your version of Botble','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2963,1,'en','packages/plugin-management/marketplace','deactivate','Deactivate','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2964,1,'en','packages/plugin-management/marketplace','activate','Activate','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2965,1,'en','packages/plugin-management/marketplace','activating','Activating...','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2966,1,'en','packages/plugin-management/marketplace','activated','Activated','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2967,1,'en','packages/plugin-management/marketplace','connection_aborted','Connection Aborted','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2968,1,'en','packages/plugin-management/marketplace','connection_aborted_description','Connection Aborted Description','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2969,1,'en','packages/plugin-management/marketplace','api_connect_error','Connect to Marketplace API Error, please contact support','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2970,1,'en','packages/plugin-management/marketplace','keyword','Keyword','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2971,1,'en','packages/plugin-management/marketplace','search','Search','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2972,1,'en','packages/plugin-management/marketplace','all','All','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2973,1,'en','packages/plugin-management/marketplace','featured','Featured','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2974,1,'en','packages/plugin-management/marketplace','popular','Popular','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2975,1,'en','packages/plugin-management/marketplace','top_rated','Top Rated','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2976,1,'en','packages/plugin-management/marketplace','install_plugin','Install plugin','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2977,1,'en','packages/plugin-management/marketplace','cancel','Cancel','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2978,1,'en','packages/plugin-management/marketplace','yes_install',' Yes! Install','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2979,1,'en','packages/plugin-management/marketplace','message_alert','Are you sure you want to install this plugin?','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2980,1,'en','packages/plugin-management/marketplace','folder_permissions','Folder does not have permission to write file or the update file path could not be resolved, please contact support','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2981,1,'en','packages/plugin-management/marketplace','unzip_failed','Unzip extraction failed','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2982,1,'en','packages/plugin-management/marketplace','unzip_success','Download file extracted','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2983,1,'en','packages/plugin-management/marketplace','install_success','Installed plugin successfully!','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2984,1,'en','packages/plugin-management/marketplace','update_success','Updated plugin successfully!','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2985,1,'en','packages/plugin-management/marketplace','minimum_core_version_error','Cannot install this plugin. Minimum core version is :version.','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2986,1,'en','packages/plugin-management/plugin','enabled','Enabled','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2987,1,'en','packages/plugin-management/plugin','deactivated','Deactivated','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2988,1,'en','packages/plugin-management/plugin','activated','Activated','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2989,1,'en','packages/plugin-management/plugin','activate','Activate','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2990,1,'en','packages/plugin-management/plugin','deactivate','Deactivate','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2991,1,'en','packages/plugin-management/plugin','author','By','2023-01-22 08:10:22','2023-01-22 08:10:22'),(2992,1,'en','packages/plugin-management/plugin','update_plugin_status_success','Update plugin successfully','2023-01-22 08:10:23','2023-01-22 08:10:23'),(2993,1,'en','packages/plugin-management/plugin','plugins','Plugins','2023-01-22 08:10:23','2023-01-22 08:10:23'),(2994,1,'en','packages/plugin-management/plugin','missing_required_plugins','Please activate plugin(s): :plugins before activate this plugin!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(2995,1,'en','packages/plugin-management/plugin','remove','Remove','2023-01-22 08:10:23','2023-01-22 08:10:23'),(2996,1,'en','packages/plugin-management/plugin','remove_plugin_success','Remove plugin successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(2997,1,'en','packages/plugin-management/plugin','remove_plugin','Remove plugin','2023-01-22 08:10:23','2023-01-22 08:10:23'),(2998,1,'en','packages/plugin-management/plugin','remove_plugin_confirm_message','Do you really want to remove this plugin?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(2999,1,'en','packages/plugin-management/plugin','remove_plugin_confirm_yes','Yes, remove it!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3000,1,'en','packages/plugin-management/plugin','total_plugins','Total plugins','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3001,1,'en','packages/plugin-management/plugin','invalid_plugin','This plugin is not a valid plugin, please check it again!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3002,1,'en','packages/plugin-management/plugin','version','Version','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3003,1,'en','packages/plugin-management/plugin','invalid_json','Invalid plugin.json!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3004,1,'en','packages/plugin-management/plugin','activate_success','Activate plugin successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3005,1,'en','packages/plugin-management/plugin','activated_already','This plugin is activated already!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3006,1,'en','packages/plugin-management/plugin','plugin_not_exist','This plugin is not exists.','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3007,1,'en','packages/plugin-management/plugin','missing_json_file','Missing file plugin.json!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3008,1,'en','packages/plugin-management/plugin','plugin_invalid','Plugin is valid!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3009,1,'en','packages/plugin-management/plugin','published_assets_success','Publish assets for plugin :name successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3010,1,'en','packages/plugin-management/plugin','plugin_removed','Plugin has been removed!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3011,1,'en','packages/plugin-management/plugin','deactivated_success','Deactivate plugin successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3012,1,'en','packages/plugin-management/plugin','deactivated_already','This plugin is deactivated already!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3013,1,'en','packages/plugin-management/plugin','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3014,1,'en','packages/plugin-management/plugin','plugin_is_not_ready','Plugin :name is not ready to use','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3015,1,'en','packages/plugin-management/plugin','plugins_installed','Installed Plugins','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3016,1,'en','packages/plugin-management/plugin','plugins_add_new','Add new','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3017,1,'en','packages/plugin-management/plugin','update','Update','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3018,1,'vi','packages/plugin-management/plugin','activate','Kích hoạt','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3019,1,'vi','packages/plugin-management/plugin','author','Tác giả','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3020,1,'vi','packages/plugin-management/plugin','version','Phiên bản','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3021,1,'vi','packages/plugin-management/plugin','activated','Đã kích hoạt','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3022,1,'vi','packages/plugin-management/plugin','deactivate','Hủy kích hoạt','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3023,1,'vi','packages/plugin-management/plugin','deactivated','Đã vô hiệu','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3024,1,'vi','packages/plugin-management/plugin','enabled','Kích hoạt','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3025,1,'vi','packages/plugin-management/plugin','invalid_plugin','Gói mở rộng không hợp lệ','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3026,1,'vi','packages/plugin-management/plugin','update_plugin_status_success','Cập nhật trạng thái gói mở rộng thành công','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3027,1,'vi','packages/plugin-management/plugin','missing_required_plugins','Vui lòng kích hoạt các gói mở rộng :plugins trước khi kích hoạt gói này','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3028,1,'vi','packages/plugin-management/plugin','plugins','Gói mở rộng','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3029,1,'vi','packages/plugin-management/plugin','remove','Xoá','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3030,1,'vi','packages/plugin-management/plugin','remove_plugin_success','Xoá thành công!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3031,1,'vi','packages/plugin-management/plugin','remove_plugin','Xoá gói mở rộng','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3032,1,'vi','packages/plugin-management/plugin','remove_plugin_confirm_message','Bạn có chắc chắn muốn xoá plugin này?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3033,1,'vi','packages/plugin-management/plugin','remove_plugin_confirm_yes','Có, xoá!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3034,1,'vi','packages/plugin-management/plugin','total_plugins','Tất cả plugins','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3035,1,'vi','packages/plugin-management/plugin','activate_success','Kích hoạt thành công!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3036,1,'vi','packages/plugin-management/plugin','activated_already','Gói mở rộng này đã được kích hoạt rồi!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3037,1,'vi','packages/plugin-management/plugin','deactivated_already','Gói mở rộng này đã được hủy kích hoạt rồi!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3038,1,'vi','packages/plugin-management/plugin','deactivated_success','Hủy kích hoạt thành công!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3039,1,'vi','packages/plugin-management/plugin','invalid_json','Sai cấu hình plugin.json!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3040,1,'vi','packages/plugin-management/plugin','missing_json_file','Thiếu tập tin cấu hình plugin.json!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3041,1,'vi','packages/plugin-management/plugin','plugin_invalid','Gói mở rộng không hợp lệ!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3042,1,'vi','packages/plugin-management/plugin','plugin_not_exist','Gói mở rộng không tồn tại','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3043,1,'vi','packages/plugin-management/plugin','plugin_removed','Gói mở rộng đã bị xóa!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3044,1,'vi','packages/plugin-management/plugin','published_assets_success','Xuất bản assets cho gói mở rộng thành công!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3045,1,'en','packages/seo-helper/seo-helper','meta_box_header','Search Engine Optimize','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3046,1,'en','packages/seo-helper/seo-helper','edit_seo_meta','Edit SEO meta','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3047,1,'en','packages/seo-helper/seo-helper','default_description','Setup meta title & description to make your site easy to discovered on search engines such as Google','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3048,1,'en','packages/seo-helper/seo-helper','seo_title','SEO Title','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3049,1,'en','packages/seo-helper/seo-helper','seo_description','SEO description','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3050,1,'vi','packages/seo-helper/seo-helper','meta_box_header','Tối ưu hoá bộ máy tìm kiếm (SEO)','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3051,1,'vi','packages/seo-helper/seo-helper','edit_seo_meta','Chỉnh sửa SEO','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3052,1,'vi','packages/seo-helper/seo-helper','default_description','Thiết lập các thẻ mô tả giúp người dùng dễ dàng tìm thấy trên công cụ tìm kiếm như Google.','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3053,1,'vi','packages/seo-helper/seo-helper','seo_title','Tiêu đề trang','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3054,1,'vi','packages/seo-helper/seo-helper','seo_description','Mô tả trang','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3055,1,'en','packages/slug/slug','permalink_settings','Permalink','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3056,1,'en','packages/slug/slug','settings.title','Permalink settings','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3057,1,'en','packages/slug/slug','settings.description','Manage permalink for all modules.','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3058,1,'en','packages/slug/slug','settings.preview','Preview','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3059,1,'en','packages/slug/slug','settings.turn_off_automatic_url_translation_into_latin','Turn off automatic URL translation into Latin?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3060,1,'en','packages/slug/slug','preview','Preview','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3061,1,'en','packages/slug/slug','prefix_for','Prefix for :name','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3062,1,'vi','packages/slug/slug','permalink_settings','Liên kết cố định','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3063,1,'vi','packages/slug/slug','preview','Xem trước','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3064,1,'vi','packages/slug/slug','settings.description','Quản lý liên kết cố định cho các module.','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3065,1,'vi','packages/slug/slug','settings.preview','Xem trước','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3066,1,'vi','packages/slug/slug','settings.title','Cài đặt liên kết cố định','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3067,1,'en','packages/theme/theme','name','Themes','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3068,1,'en','packages/theme/theme','theme','Theme','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3069,1,'en','packages/theme/theme','author','Author','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3070,1,'en','packages/theme/theme','version','Version','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3071,1,'en','packages/theme/theme','description','Description','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3072,1,'en','packages/theme/theme','active_success','Activate theme :name successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3073,1,'en','packages/theme/theme','active','Active','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3074,1,'en','packages/theme/theme','activated','Activated','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3075,1,'en','packages/theme/theme','appearance','Appearance','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3076,1,'en','packages/theme/theme','theme_options','Theme options','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3077,1,'en','packages/theme/theme','save_changes','Save Changes','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3078,1,'en','packages/theme/theme','developer_mode','Developer Mode Enabled','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3079,1,'en','packages/theme/theme','custom_css','Custom CSS','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3080,1,'en','packages/theme/theme','custom_js','Custom JS','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3081,1,'en','packages/theme/theme','custom_header_js','Header JS','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3082,1,'en','packages/theme/theme','custom_header_js_placeholder','JS in header of page, wrap it inside <script></script>','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3083,1,'en','packages/theme/theme','custom_body_js','Body JS','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3084,1,'en','packages/theme/theme','custom_body_js_placeholder','JS in body of page, wrap it inside <script></script>','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3085,1,'en','packages/theme/theme','custom_footer_js','Footer JS','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3086,1,'en','packages/theme/theme','custom_footer_js_placeholder','JS in footer of page, wrap it inside <script></script>','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3087,1,'en','packages/theme/theme','custom_html','Custom HTML','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3088,1,'en','packages/theme/theme','custom_header_html','Header HTML','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3089,1,'en','packages/theme/theme','custom_header_html_placeholder','HTML in header of page, no special tags: script, style, iframe...','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3090,1,'en','packages/theme/theme','custom_body_html','Body HTML','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3091,1,'en','packages/theme/theme','custom_body_html_placeholder','HTML in body of page, no special tags: script, style, iframe...','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3092,1,'en','packages/theme/theme','custom_footer_html','Footer HTML','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3093,1,'en','packages/theme/theme','custom_footer_html_placeholder','HTML in footer of page, no special tags: script, style, iframe...','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3094,1,'en','packages/theme/theme','remove_theme_success','Remove theme successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3095,1,'en','packages/theme/theme','theme_is_not_existed','This theme is not existed!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3096,1,'en','packages/theme/theme','remove','Remove','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3097,1,'en','packages/theme/theme','remove_theme','Remove theme','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3098,1,'en','packages/theme/theme','remove_theme_confirm_message','Do you really want to remove this theme?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3099,1,'en','packages/theme/theme','remove_theme_confirm_yes','Yes, remove it!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3100,1,'en','packages/theme/theme','total_themes','Total themes','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3101,1,'en','packages/theme/theme','show_admin_bar','Show admin bar (When admin logged in, still show admin bar in website)?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3102,1,'en','packages/theme/theme','settings.title','Theme','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3103,1,'en','packages/theme/theme','settings.description','Setting for theme','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3104,1,'en','packages/theme/theme','settings.redirect_404_to_homepage','Redirect all not found requests to homepage?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3105,1,'en','packages/theme/theme','add_new','Add new','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3106,1,'en','packages/theme/theme','theme_activated_already','Theme \":name\" is activated already!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3107,1,'en','packages/theme/theme','missing_json_file','Missing file theme.json!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3108,1,'en','packages/theme/theme','theme_invalid','Theme is valid!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3109,1,'en','packages/theme/theme','published_assets_success','Publish assets for :themes successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3110,1,'en','packages/theme/theme','cannot_remove_theme','Cannot remove activated theme, please activate another theme before removing \":name\"!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3111,1,'en','packages/theme/theme','theme_deleted','Theme \":name\" has been destroyed.','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3112,1,'en','packages/theme/theme','removed_assets','Remove assets of a theme :name successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3113,1,'en','packages/theme/theme','update_custom_css_success','Update custom CSS successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3114,1,'en','packages/theme/theme','update_custom_js_success','Update custom JS successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3115,1,'en','packages/theme/theme','update_custom_html_success','Update custom HTML successfully!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3116,1,'en','packages/theme/theme','go_to_dashboard','Go to dashboard','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3117,1,'en','packages/theme/theme','custom_css_placeholder','Using Ctrl + Space to autocomplete.','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3118,1,'en','packages/theme/theme','theme_option_general','General','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3119,1,'en','packages/theme/theme','theme_option_general_description','General settings','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3120,1,'en','packages/theme/theme','theme_option_seo_open_graph_image','SEO default Open Graph image','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3121,1,'en','packages/theme/theme','theme_option_logo','Logo','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3122,1,'en','packages/theme/theme','theme_option_favicon','Favicon','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3123,1,'en','packages/theme/theme','folder_is_not_writeable','Cannot write files! Folder :name is not writable. Please chmod to make it writable!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3124,1,'vi','packages/theme/theme','name','Giao diện','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3125,1,'vi','packages/theme/theme','activated','Đã kích hoạt','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3126,1,'vi','packages/theme/theme','active','Kích hoạt','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3127,1,'vi','packages/theme/theme','active_success','Kích hoạt giao diện thành công!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3128,1,'vi','packages/theme/theme','author','Tác giả','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3129,1,'vi','packages/theme/theme','description','Mô tả','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3130,1,'vi','packages/theme/theme','appearance','Hiển thị','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3131,1,'vi','packages/theme/theme','theme','Giao diện','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3132,1,'vi','packages/theme/theme','theme_options','Tuỳ chọn giao diện','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3133,1,'vi','packages/theme/theme','version','Phiên bản','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3134,1,'vi','packages/theme/theme','save_changes','Lưu thay đổi','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3135,1,'vi','packages/theme/theme','developer_mode','Đang kích hoạt chế độ thử nghiệm','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3136,1,'vi','packages/theme/theme','custom_css','Tuỳ chỉnh CSS','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3137,1,'vi','packages/theme/theme','remove','Xóa','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3138,1,'vi','packages/theme/theme','remove_theme','Xóa giao diện','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3139,1,'vi','packages/theme/theme','remove_theme_confirm_message','Bạn có chắc chắn muốn xóa giao diện này?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3140,1,'vi','packages/theme/theme','remove_theme_confirm_yes','Vâng, xác nhận xóa!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3141,1,'vi','packages/theme/theme','remove_theme_success','Xóa giao diện thành công!','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3142,1,'vi','packages/theme/theme','settings.description','Cài đặt giao diện','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3143,1,'vi','packages/theme/theme','settings.title','Giao diện','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3144,1,'vi','packages/theme/theme','show_admin_bar','Hiển thị admin bar (khi admin đã đăng nhập, vẫn hiển thị admin bar trên website)?','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3145,1,'vi','packages/theme/theme','total_themes','Tổng số giao diện','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3146,1,'vi','packages/theme/theme','add_new','Thêm mới','2023-01-22 08:10:23','2023-01-22 08:10:23'),(3147,1,'en','packages/widget/widget','name','Widgets','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3148,1,'en','packages/widget/widget','create','New widget','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3149,1,'en','packages/widget/widget','edit','Edit widget','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3150,1,'en','packages/widget/widget','delete','Delete','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3151,1,'en','packages/widget/widget','available','Available Widgets','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3152,1,'en','packages/widget/widget','instruction','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3153,1,'en','packages/widget/widget','number_tag_display','Number tags will be display','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3154,1,'en','packages/widget/widget','number_post_display','Number posts will be display','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3155,1,'en','packages/widget/widget','select_menu','Select Menu','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3156,1,'en','packages/widget/widget','widget_text','Text','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3157,1,'en','packages/widget/widget','widget_text_description','Arbitrary text or HTML.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3158,1,'en','packages/widget/widget','widget_recent_post','Recent Posts','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3159,1,'en','packages/widget/widget','widget_recent_post_description','Recent posts widget.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3160,1,'en','packages/widget/widget','widget_custom_menu','Custom Menu','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3161,1,'en','packages/widget/widget','widget_custom_menu_description','Add a custom menu to your widget area.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3162,1,'en','packages/widget/widget','widget_tag','Tags','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3163,1,'en','packages/widget/widget','widget_tag_description','Popular tags','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3164,1,'en','packages/widget/widget','save_success','Save widget successfully!','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3165,1,'en','packages/widget/widget','delete_success','Delete widget successfully!','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3166,1,'en','packages/widget/widget','primary_sidebar_name','Primary sidebar','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3167,1,'en','packages/widget/widget','primary_sidebar_description','Primary sidebar section','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3168,1,'vi','packages/widget/global','name','Widgets','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3169,1,'vi','packages/widget/global','create','New widget','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3170,1,'vi','packages/widget/global','edit','Edit widget','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3171,1,'vi','packages/widget/global','available','Tiện ích có sẵn','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3172,1,'vi','packages/widget/global','delete','Xóa','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3173,1,'vi','packages/widget/global','instruction','Để kích hoạt tiện ích, hãy kéo nó vào sidebar hoặc nhấn vào nó. Để hủy kích hoạt tiện ích và xóa các thiết lập của tiện ích, kéo nó quay trở lại.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3174,1,'vi','packages/widget/global','number_post_display','Số bài viết sẽ hiển thị','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3175,1,'vi','packages/widget/global','number_tag_display','Số thẻ sẽ hiển thị','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3176,1,'vi','packages/widget/global','select_menu','Lựa chọn trình đơn','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3177,1,'vi','packages/widget/global','widget_custom_menu','Menu tùy chỉnh','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3178,1,'vi','packages/widget/global','widget_custom_menu_description','Thêm menu tùy chỉnh vào khu vực tiện ích của bạn','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3179,1,'vi','packages/widget/global','widget_recent_post','Bài viết gần đây','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3180,1,'vi','packages/widget/global','widget_recent_post_description','Tiện ích bài viết gần đây','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3181,1,'vi','packages/widget/global','widget_tag','Thẻ','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3182,1,'vi','packages/widget/global','widget_tag_description','Thẻ phổ biến, sử dụng nhiều','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3183,1,'vi','packages/widget/global','widget_text','Văn bản','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3184,1,'vi','packages/widget/global','widget_text_description','Văn bản tùy ý hoặc HTML.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3185,1,'vi','packages/widget/global','delete_success','Xoá tiện ích thành công','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3186,1,'vi','packages/widget/global','save_success','Lưu tiện ích thành công!','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3187,1,'vi','packages/widget/widget','name','Widgets','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3188,1,'vi','packages/widget/widget','create','New widget','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3189,1,'vi','packages/widget/widget','edit','Edit widget','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3190,1,'vi','packages/widget/widget','available','Tiện ích có sẵn','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3191,1,'vi','packages/widget/widget','delete','Xóa','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3192,1,'vi','packages/widget/widget','instruction','Để kích hoạt tiện ích, hãy kéo nó vào sidebar hoặc nhấn vào nó. Để hủy kích hoạt tiện ích và xóa các thiết lập của tiện ích, kéo nó quay trở lại.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3193,1,'vi','packages/widget/widget','number_post_display','Số bài viết sẽ hiển thị','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3194,1,'vi','packages/widget/widget','number_tag_display','Số thẻ sẽ hiển thị','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3195,1,'vi','packages/widget/widget','select_menu','Lựa chọn trình đơn','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3196,1,'vi','packages/widget/widget','widget_custom_menu','Menu tùy chỉnh','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3197,1,'vi','packages/widget/widget','widget_custom_menu_description','Thêm menu tùy chỉnh vào khu vực tiện ích của bạn','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3198,1,'vi','packages/widget/widget','widget_recent_post','Bài viết gần đây','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3199,1,'vi','packages/widget/widget','widget_recent_post_description','Tiện ích bài viết gần đây','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3200,1,'vi','packages/widget/widget','widget_tag','Thẻ','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3201,1,'vi','packages/widget/widget','widget_tag_description','Thẻ phổ biến, sử dụng nhiều','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3202,1,'vi','packages/widget/widget','widget_text','Văn bản','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3203,1,'vi','packages/widget/widget','widget_text_description','Văn bản tùy ý hoặc HTML.','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3204,1,'vi','packages/widget/widget','delete_success','Xoá tiện ích thành công','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3205,1,'vi','packages/widget/widget','save_success','Lưu tiện ích thành công!','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3206,1,'en','plugins/analytics/analytics','sessions','Sessions','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3207,1,'en','plugins/analytics/analytics','visitors','Visitors','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3208,1,'en','plugins/analytics/analytics','pageviews','Pageviews','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3209,1,'en','plugins/analytics/analytics','bounce_rate','Bounce Rate','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3210,1,'en','plugins/analytics/analytics','page_session','Pages/Session','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3211,1,'en','plugins/analytics/analytics','avg_duration','Avg. Duration','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3212,1,'en','plugins/analytics/analytics','percent_new_session','Percent new session','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3213,1,'en','plugins/analytics/analytics','new_users','New visitors','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3214,1,'en','plugins/analytics/analytics','visits','visits','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3215,1,'en','plugins/analytics/analytics','views','views','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3216,1,'en','plugins/analytics/analytics','property_id_not_specified','You must provide a valid view id. The document here: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3217,1,'en','plugins/analytics/analytics','credential_is_not_valid','Analytics credentials is not valid. The document here: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3218,1,'en','plugins/analytics/analytics','start_date_can_not_before_end_date','Start date :start_date cannot be after end date :end_date','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3219,1,'en','plugins/analytics/analytics','wrong_configuration','To view analytics you\'ll need to get a Google Analytics client id and add it to your settings. <br /> You also need JSON credential data. <br /> The document here: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3220,1,'en','plugins/analytics/analytics','settings.title','Google Analytics','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3221,1,'en','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3222,1,'en','plugins/analytics/analytics','settings.tracking_code','Tracking ID','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3223,1,'en','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3224,1,'en','plugins/analytics/analytics','settings.view_id','View ID','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3225,1,'en','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID (UA)','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3226,1,'en','plugins/analytics/analytics','settings.analytics_property_id','Property ID','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3227,1,'en','plugins/analytics/analytics','settings.analytics_property_id_description','Google Analytics Property ID (GA4)','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3228,1,'en','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3229,1,'en','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3230,1,'en','plugins/analytics/analytics','widget_analytics_page','Top Most Visit Pages','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3231,1,'en','plugins/analytics/analytics','widget_analytics_browser','Top Browsers','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3232,1,'en','plugins/analytics/analytics','widget_analytics_referrer','Top Referrers','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3233,1,'en','plugins/analytics/analytics','widget_analytics_general','Site Analytics','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3234,1,'vi','plugins/analytics/analytics','avg_duration','Trung bình','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3235,1,'vi','plugins/analytics/analytics','bounce_rate','Tỉ lệ thoát','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3236,1,'vi','plugins/analytics/analytics','page_session','Trang/Phiên','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3237,1,'vi','plugins/analytics/analytics','pageviews','Lượt xem','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3238,1,'vi','plugins/analytics/analytics','sessions','Phiên','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3239,1,'vi','plugins/analytics/analytics','views','lượt xem','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3240,1,'vi','plugins/analytics/analytics','visitors','Người truy cập','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3241,1,'vi','plugins/analytics/analytics','visits','lượt ghé thăm','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3242,1,'vi','plugins/analytics/analytics','credential_is_not_valid','Thông tin cài đặt không hợp lệ. Tài liệu hướng dẫn tại đây: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3243,1,'vi','plugins/analytics/analytics','new_users','Lượt khách mới','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3244,1,'vi','plugins/analytics/analytics','percent_new_session','Tỉ lệ khách mới','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3245,1,'vi','plugins/analytics/analytics','start_date_can_not_before_end_date','Ngày bắt đầu :start_date không thể sau ngày kết thúc :end_date','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3246,1,'vi','plugins/analytics/analytics','view_id_not_specified','Bạn phải cung cấp View ID hợp lê. Tài liệu hướng dẫn tại đây: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3247,1,'vi','plugins/analytics/analytics','wrong_configuration','Để xem dữ liệu thống kê Google Analytics, bạn cần lấy thông tin Client ID và thêm nó vào trong phần cài đặt. Bạn cũng cần thông tin xác thực dạng JSON. Tài liệu hướng dẫn tại đây: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3248,1,'vi','plugins/analytics/analytics','settings.title','Google Analytics','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3249,1,'vi','plugins/analytics/analytics','settings.description','Config Credentials for Google Analytics','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3250,1,'vi','plugins/analytics/analytics','settings.tracking_code','Tracking Code','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3251,1,'vi','plugins/analytics/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3252,1,'vi','plugins/analytics/analytics','settings.view_id','View ID','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3253,1,'vi','plugins/analytics/analytics','settings.view_id_description','Google Analytics View ID','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3254,1,'vi','plugins/analytics/analytics','settings.json_credential','Service Account Credentials','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3255,1,'vi','plugins/analytics/analytics','settings.json_credential_description','Service Account Credentials','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3256,1,'vi','plugins/analytics/analytics','widget_analytics_browser','Trình duyệt truy cập nhiều','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3257,1,'vi','plugins/analytics/analytics','widget_analytics_general','Thống kê truy cập','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3258,1,'vi','plugins/analytics/analytics','widget_analytics_page','Trang được xem nhiều nhất','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3259,1,'vi','plugins/analytics/analytics','widget_analytics_referrer','Trang giới thiệu nhiều','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3260,1,'en','plugins/audit-log/history','name','Activities Logs','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3261,1,'en','plugins/audit-log/history','created','created','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3262,1,'en','plugins/audit-log/history','updated','updated','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3263,1,'en','plugins/audit-log/history','deleted','deleted','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3264,1,'en','plugins/audit-log/history','logged in','logged in','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3265,1,'en','plugins/audit-log/history','logged out','logged out','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3266,1,'en','plugins/audit-log/history','changed password','changed password','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3267,1,'en','plugins/audit-log/history','updated profile','updated profile','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3268,1,'en','plugins/audit-log/history','attached','attached','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3269,1,'en','plugins/audit-log/history','shared','shared','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3270,1,'en','plugins/audit-log/history','to the system','to the system','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3271,1,'en','plugins/audit-log/history','of the system','of the system','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3272,1,'en','plugins/audit-log/history','menu','menu','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3273,1,'en','plugins/audit-log/history','post','post','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3274,1,'en','plugins/audit-log/history','page','page','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3275,1,'en','plugins/audit-log/history','category','category','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3276,1,'en','plugins/audit-log/history','tag','tag','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3277,1,'en','plugins/audit-log/history','user','user','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3278,1,'en','plugins/audit-log/history','contact','contact','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3279,1,'en','plugins/audit-log/history','backup','backup','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3280,1,'en','plugins/audit-log/history','custom-field','custom field','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3281,1,'en','plugins/audit-log/history','widget_audit_logs','Activities Logs','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3282,1,'en','plugins/audit-log/history','action','Action','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3283,1,'en','plugins/audit-log/history','user_agent','User Agent','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3284,1,'en','plugins/audit-log/history','system','System','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3285,1,'en','plugins/audit-log/history','delete_all','Delete all records','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3286,1,'vi','plugins/audit-log/history','name','Lịch sử hoạt động','2023-01-22 08:10:24','2023-01-22 08:10:24'),(3287,1,'vi','plugins/audit-log/history','created',' đã tạo','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3288,1,'vi','plugins/audit-log/history','updated',' đã cập nhật','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3289,1,'vi','plugins/audit-log/history','deleted',' đã xóa','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3290,1,'vi','plugins/audit-log/history','attached','đính kèm','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3291,1,'vi','plugins/audit-log/history','backup','sao lưu','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3292,1,'vi','plugins/audit-log/history','category','danh mục','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3293,1,'vi','plugins/audit-log/history','changed password','thay đổi mật khẩu','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3294,1,'vi','plugins/audit-log/history','contact','liên hệ','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3295,1,'vi','plugins/audit-log/history','custom-field','khung mở rộng','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3296,1,'vi','plugins/audit-log/history','logged in','đăng nhập','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3297,1,'vi','plugins/audit-log/history','logged out','đăng xuất','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3298,1,'vi','plugins/audit-log/history','menu','trình đơn','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3299,1,'vi','plugins/audit-log/history','of the system','khỏi hệ thống','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3300,1,'vi','plugins/audit-log/history','page','trang','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3301,1,'vi','plugins/audit-log/history','post','bài viết','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3302,1,'vi','plugins/audit-log/history','shared','đã chia sẻ','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3303,1,'vi','plugins/audit-log/history','tag','thẻ','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3304,1,'vi','plugins/audit-log/history','to the system','vào hệ thống','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3305,1,'vi','plugins/audit-log/history','updated profile','cập nhật tài khoản','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3306,1,'vi','plugins/audit-log/history','user','thành viên','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3307,1,'vi','plugins/audit-log/history','widget_audit_logs','Lịch sử hoạt động','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3308,1,'vi','plugins/audit-log/history','system','Hệ thống','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3309,1,'vi','plugins/audit-log/history','action','Hành động','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3310,1,'vi','plugins/audit-log/history','delete_all','Xóa tất cả bản ghi','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3311,1,'vi','plugins/audit-log/history','user_agent','User Agent','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3312,1,'en','plugins/backup/backup','name','Backup','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3313,1,'en','plugins/backup/backup','backup_description','Backup database and uploads folder.','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3314,1,'en','plugins/backup/backup','create_backup_success','Created backup successfully!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3315,1,'en','plugins/backup/backup','delete_backup_success','Delete backup successfully!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3316,1,'en','plugins/backup/backup','restore_backup_success','Restore backup successfully!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3317,1,'en','plugins/backup/backup','generate_btn','Generate backup','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3318,1,'en','plugins/backup/backup','create','Create a backup','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3319,1,'en','plugins/backup/backup','restore','Restore a backup','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3320,1,'en','plugins/backup/backup','create_btn','Create','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3321,1,'en','plugins/backup/backup','restore_btn','Restore','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3322,1,'en','plugins/backup/backup','restore_confirm_msg','Do you really want to restore this revision?','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3323,1,'en','plugins/backup/backup','download_uploads_folder','Download backup of uploads folder','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3324,1,'en','plugins/backup/backup','download_database','Download backup of database','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3325,1,'en','plugins/backup/backup','restore_tooltip','Restore this backup','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3326,1,'en','plugins/backup/backup','demo_alert','Hi guest, if you see demo site is destroyed, please help me <a href=\":link\">go here</a> and restore demo site to the latest revision! Thank you so much!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3327,1,'en','plugins/backup/backup','menu_name','Backups','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3328,1,'en','plugins/backup/backup','size','Size','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3329,1,'en','plugins/backup/backup','no_backups','There is no backup now!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3330,1,'en','plugins/backup/backup','proc_open_disabled_error','Function <strong>proc_open()</strong> has been disabled so the system cannot backup the database. Please contact your hosting provider to enable it.','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3331,1,'en','plugins/backup/backup','database_backup_not_existed','Backup database is not existed!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3332,1,'en','plugins/backup/backup','uploads_folder_backup_not_existed','Backup uploads folder is not existed!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3333,1,'en','plugins/backup/backup','important_message1','This is a simple backup feature, it is a solution for you if your site has < 1GB data and can be used for quickly backup your site.','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3334,1,'en','plugins/backup/backup','important_message2','If you have more than 1GB images/files in local storage, you should use backup feature of your hosting or VPS.','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3335,1,'en','plugins/backup/backup','important_message3','To backup your database, function <strong>proc_open()</strong> or <strong>system()</strong> must be enabled. Contact your hosting provider to enable it if it is disabled.','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3336,1,'en','plugins/backup/backup','important_message4','It is not a full backup, it is just back up uploaded files and your database.','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3337,1,'en','plugins/backup/backup','cannot_restore_database','Cannot restore database. The database backup is missing!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3338,1,'vi','plugins/backup/backup','backup_description','Sao lưu cơ sở dữ liệu và thư mục /uploads','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3339,1,'vi','plugins/backup/backup','create','Tạo bản sao lưu','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3340,1,'vi','plugins/backup/backup','create_backup_success','Tạo bản sao lưu thành công!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3341,1,'vi','plugins/backup/backup','create_btn','Tạo','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3342,1,'vi','plugins/backup/backup','delete_backup_success','Xóa bản sao lưu thành công!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3343,1,'vi','plugins/backup/backup','generate_btn','Tạo sao lưu','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3344,1,'vi','plugins/backup/backup','name','Sao lưu','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3345,1,'vi','plugins/backup/backup','restore','Khôi phục bản sao lưu','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3346,1,'vi','plugins/backup/backup','restore_backup_success','Khôi phục bản sao lưu thành công','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3347,1,'vi','plugins/backup/backup','restore_btn','Khôi phục','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3348,1,'vi','plugins/backup/backup','restore_confirm_msg','Bạn có chắc chắn muốn khôi phục hệ thống về thời điểm tạo bản sao lưu này?','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3349,1,'vi','plugins/backup/backup','restore_tooltip','Khôi phục bản sao lưu này','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3350,1,'vi','plugins/backup/backup','download_database','Tải về bản sao lưu CSDL','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3351,1,'vi','plugins/backup/backup','download_uploads_folder','Tải về bản sao lưu thư mục uploads','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3352,1,'vi','plugins/backup/backup','menu_name','Sao lưu','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3353,1,'vi','plugins/backup/backup','demo_alert','Chào khách, nếu bạn thấy trang demo bị phá hoại, hãy tới <a href=\":link\">trang sao lưu</a> và khôi phục bản sao lưu cuối cùng. Cảm ơn bạn nhiều!','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3354,1,'en','plugins/blog/base','menu_name','Blog','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3355,1,'en','plugins/blog/base','blog_page','Blog Page','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3356,1,'en','plugins/blog/base','select','-- Select --','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3357,1,'en','plugins/blog/base','blog_page_id','Blog page','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3358,1,'en','plugins/blog/base','number_posts_per_page','Number posts per page','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3359,1,'en','plugins/blog/base','write_some_tags','Write some tags','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3360,1,'en','plugins/blog/base','short_code_name','Blog posts','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3361,1,'en','plugins/blog/base','short_code_description','Add blog posts','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3362,1,'en','plugins/blog/base','number_posts_per_page_in_category','Number of posts per page in a category','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3363,1,'en','plugins/blog/base','number_posts_per_page_in_tag','Number of posts per page in a tag','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3364,1,'en','plugins/blog/base','settings.title','Blog','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3365,1,'en','plugins/blog/base','settings.description','Settings for Blog','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3366,1,'en','plugins/blog/base','settings.enable_blog_post_schema','Enable Blog Post Schema?','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3367,1,'en','plugins/blog/base','settings.enable_blog_post_schema_description','Learn more: https://schema.org/Article','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3368,1,'en','plugins/blog/base','settings.schema_type','Schema type','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3369,1,'en','plugins/blog/categories','create','Create new category','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3370,1,'en','plugins/blog/categories','edit','Edit category','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3371,1,'en','plugins/blog/categories','menu','Categories','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3372,1,'en','plugins/blog/categories','edit_this_category','Edit this category','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3373,1,'en','plugins/blog/categories','menu_name','Categories','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3374,1,'en','plugins/blog/categories','none','None','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3375,1,'en','plugins/blog/categories','total_posts','Total posts: :total','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3376,1,'en','plugins/blog/member','dob','Born :date','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3377,1,'en','plugins/blog/member','draft_posts','Draft Posts','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3378,1,'en','plugins/blog/member','pending_posts','Pending Posts','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3379,1,'en','plugins/blog/member','published_posts','Published Posts','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3380,1,'en','plugins/blog/member','posts','Posts','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3381,1,'en','plugins/blog/member','write_post','Write a post','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3382,1,'en','plugins/blog/posts','create','Create new post','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3383,1,'en','plugins/blog/posts','edit','Edit post','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3384,1,'en','plugins/blog/posts','form.name','Name','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3385,1,'en','plugins/blog/posts','form.name_placeholder','Post\'s name (Maximum :c characters)','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3386,1,'en','plugins/blog/posts','form.description','Description','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3387,1,'en','plugins/blog/posts','form.description_placeholder','Short description for post (Maximum :c characters)','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3388,1,'en','plugins/blog/posts','form.categories','Categories','2023-01-22 08:10:25','2023-01-22 08:10:25'),(3389,1,'en','plugins/blog/posts','form.tags','Tags','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3390,1,'en','plugins/blog/posts','form.tags_placeholder','Tags','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3391,1,'en','plugins/blog/posts','form.content','Content','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3392,1,'en','plugins/blog/posts','form.is_featured','Is featured?','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3393,1,'en','plugins/blog/posts','form.note','Note content','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3394,1,'en','plugins/blog/posts','form.format_type','Format','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3395,1,'en','plugins/blog/posts','cannot_delete','Post could not be deleted','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3396,1,'en','plugins/blog/posts','post_deleted','Post deleted','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3397,1,'en','plugins/blog/posts','posts','Posts','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3398,1,'en','plugins/blog/posts','post','Post','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3399,1,'en','plugins/blog/posts','edit_this_post','Edit this post','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3400,1,'en','plugins/blog/posts','no_new_post_now','There is no new post now!','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3401,1,'en','plugins/blog/posts','menu_name','Posts','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3402,1,'en','plugins/blog/posts','widget_posts_recent','Recent Posts','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3403,1,'en','plugins/blog/posts','categories','Categories','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3404,1,'en','plugins/blog/posts','category','Category','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3405,1,'en','plugins/blog/posts','author','Author','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3406,1,'en','plugins/blog/tags','form.name','Name','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3407,1,'en','plugins/blog/tags','form.name_placeholder','Tag\'s name (Maximum 120 characters)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3408,1,'en','plugins/blog/tags','form.description','Description','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3409,1,'en','plugins/blog/tags','form.description_placeholder','Short description for tag (Maximum 400 characters)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3410,1,'en','plugins/blog/tags','form.categories','Categories','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3411,1,'en','plugins/blog/tags','notices.no_select','Please select at least one tag to take this action!','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3412,1,'en','plugins/blog/tags','create','Create new tag','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3413,1,'en','plugins/blog/tags','edit','Edit tag','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3414,1,'en','plugins/blog/tags','cannot_delete','Tag could not be deleted','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3415,1,'en','plugins/blog/tags','deleted','Tag deleted','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3416,1,'en','plugins/blog/tags','menu','Tags','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3417,1,'en','plugins/blog/tags','edit_this_tag','Edit this tag','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3418,1,'en','plugins/blog/tags','menu_name','Tags','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3419,1,'vi','plugins/blog/base','menu_name','Blog','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3420,1,'vi','plugins/blog/base','blog_page','Trang Blog','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3421,1,'vi','plugins/blog/base','select','-- Lựa chọn --','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3422,1,'vi','plugins/blog/base','blog_page_id','Trang Blog','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3423,1,'vi','plugins/blog/categories','create','Thêm danh mục mới','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3424,1,'vi','plugins/blog/categories','edit','Sửa danh mục','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3425,1,'vi','plugins/blog/categories','menu','Danh mục','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3426,1,'vi','plugins/blog/categories','edit_this_category','Sửa danh mục này','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3427,1,'vi','plugins/blog/categories','menu_name','Danh mục','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3428,1,'vi','plugins/blog/categories','none','Không','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3429,1,'vi','plugins/blog/member','dob','Born :date','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3430,1,'vi','plugins/blog/member','draft_posts','Draft Posts','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3431,1,'vi','plugins/blog/member','pending_posts','Pending Posts','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3432,1,'vi','plugins/blog/member','published_posts','Published Posts','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3433,1,'vi','plugins/blog/member','posts','Posts','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3434,1,'vi','plugins/blog/member','write_post','Write a post','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3435,1,'vi','plugins/blog/posts','create','Thêm bài viết','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3436,1,'vi','plugins/blog/posts','edit','Sửa bài viết','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3437,1,'vi','plugins/blog/posts','form.name','Tên','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3438,1,'vi','plugins/blog/posts','form.name_placeholder','Tên bài viết (Tối đa 120 kí tự)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3439,1,'vi','plugins/blog/posts','form.description','Mô tả','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3440,1,'vi','plugins/blog/posts','form.description_placeholder','Mô tả ngắn cho bài viết (Tối đa 400 kí tự)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3441,1,'vi','plugins/blog/posts','form.categories','Chuyên mục','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3442,1,'vi','plugins/blog/posts','form.tags','Từ khóa','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3443,1,'vi','plugins/blog/posts','form.tags_placeholder','Thêm từ khóa','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3444,1,'vi','plugins/blog/posts','form.content','Nội dung','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3445,1,'vi','plugins/blog/posts','form.is_featured','Bài viết nổi bật?','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3446,1,'vi','plugins/blog/posts','form.note','Nội dung ghi chú','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3447,1,'vi','plugins/blog/posts','form.format_type','Định dạng','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3448,1,'vi','plugins/blog/posts','post_deleted','Xóa bài viết thành công','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3449,1,'vi','plugins/blog/posts','cannot_delete','Không thể xóa bài viết','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3450,1,'vi','plugins/blog/posts','menu_name','Bài viết','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3451,1,'vi','plugins/blog/posts','edit_this_post','Sửa bài viết này','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3452,1,'vi','plugins/blog/posts','no_new_post_now','Hiện tại không có bài viết mới!','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3453,1,'vi','plugins/blog/posts','posts','Bài viết','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3454,1,'vi','plugins/blog/posts','post','Bài viết','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3455,1,'vi','plugins/blog/posts','widget_posts_recent','Bài viết gần đây','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3456,1,'vi','plugins/blog/posts','author','Tác giả','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3457,1,'vi','plugins/blog/posts','categories','Danh mục','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3458,1,'vi','plugins/blog/posts','category','Danh mục','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3459,1,'vi','plugins/blog/tags','create','Thêm thẻ mới','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3460,1,'vi','plugins/blog/tags','edit','Sửa thẻ','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3461,1,'vi','plugins/blog/tags','form.name','Tên','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3462,1,'vi','plugins/blog/tags','form.name_placeholder','Tên thẻ (Tối đa 120 kí tự)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3463,1,'vi','plugins/blog/tags','form.description','Mô tả','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3464,1,'vi','plugins/blog/tags','form.description_placeholder','Mô tả ngắn cho tag (Tối đa 400 kí tự)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3465,1,'vi','plugins/blog/tags','form.categories','Chuyên mục','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3466,1,'vi','plugins/blog/tags','notices.no_select','Chọn ít nhất 1 bài viết để thực hiện hành động này!','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3467,1,'vi','plugins/blog/tags','cannot_delete','Không thể xóa thẻ','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3468,1,'vi','plugins/blog/tags','deleted','Xóa thẻ thành công','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3469,1,'vi','plugins/blog/tags','menu_name','Thẻ','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3470,1,'vi','plugins/blog/tags','edit_this_tag','Sửa thẻ này','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3471,1,'vi','plugins/blog/tags','menu','Thẻ','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3472,1,'en','plugins/captcha/captcha','settings.title','Captcha','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3473,1,'en','plugins/captcha/captcha','settings.description','Settings for Google Captcha','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3474,1,'en','plugins/captcha/captcha','settings.captcha_site_key','Captcha Site Key','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3475,1,'en','plugins/captcha/captcha','settings.captcha_secret','Captcha Secret','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3476,1,'en','plugins/captcha/captcha','settings.enable_captcha','Enable Captcha?','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3477,1,'en','plugins/captcha/captcha','settings.helper','Go here to get credentials https://www.google.com/recaptcha/admin#list.','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3478,1,'en','plugins/captcha/captcha','settings.hide_badge','Hide recaptcha badge (for v3)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3479,1,'en','plugins/captcha/captcha','settings.type','Type','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3480,1,'en','plugins/captcha/captcha','settings.v2_description','V2 (Verify requests with a challenge)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3481,1,'en','plugins/captcha/captcha','settings.v3_description','V3 (Verify requests with a score)','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3482,1,'en','plugins/captcha/captcha','failed_validate','Failed to validate the captcha.','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3483,1,'en','plugins/captcha/captcha','numbers.0','Zero','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3484,1,'en','plugins/captcha/captcha','numbers.1','One','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3485,1,'en','plugins/captcha/captcha','numbers.2','Two','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3486,1,'en','plugins/captcha/captcha','numbers.3','Three','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3487,1,'en','plugins/captcha/captcha','numbers.4','Four','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3488,1,'en','plugins/captcha/captcha','numbers.5','Five','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3489,1,'en','plugins/captcha/captcha','numbers.6','Six','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3490,1,'en','plugins/captcha/captcha','numbers.7','Seven','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3491,1,'en','plugins/captcha/captcha','numbers.8','Eight','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3492,1,'en','plugins/captcha/captcha','numbers.9','Nine','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3493,1,'en','plugins/captcha/captcha','numbers.10','Ten','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3494,1,'en','plugins/captcha/captcha','numbers.11','Eleven','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3495,1,'en','plugins/captcha/captcha','numbers.12','Twelve','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3496,1,'en','plugins/captcha/captcha','operands.+','plus','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3497,1,'en','plugins/captcha/captcha','operands.-','minus','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3498,1,'en','plugins/captcha/captcha','operands.*','times','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3499,1,'en','plugins/captcha/captcha','operands./','divided by','2023-01-22 08:10:26','2023-01-22 08:10:26'),(3500,1,'vi','plugins/captcha/captcha','settings.title','Captcha','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3501,1,'vi','plugins/captcha/captcha','settings.description','Cài đặt cho Google Captcha','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3502,1,'vi','plugins/captcha/captcha','settings.captcha_site_key','Captcha Site Key','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3503,1,'vi','plugins/captcha/captcha','settings.captcha_secret','Captcha Secret','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3504,1,'vi','plugins/captcha/captcha','settings.enable_captcha','Bật Captcha?','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3505,1,'vi','plugins/captcha/captcha','settings.helper','Truy cập https://www.google.com/recaptcha/admin#list để lấy thông tin về Site key và Secret.','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3506,1,'en','plugins/contact/contact','menu','Contact','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3507,1,'en','plugins/contact/contact','edit','View contact','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3508,1,'en','plugins/contact/contact','tables.phone','Phone','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3509,1,'en','plugins/contact/contact','tables.email','Email','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3510,1,'en','plugins/contact/contact','tables.full_name','Full Name','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3511,1,'en','plugins/contact/contact','tables.time','Time','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3512,1,'en','plugins/contact/contact','tables.address','Address','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3513,1,'en','plugins/contact/contact','tables.subject','Subject','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3514,1,'en','plugins/contact/contact','tables.content','Content','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3515,1,'en','plugins/contact/contact','contact_information','Contact information','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3516,1,'en','plugins/contact/contact','replies','Replies','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3517,1,'en','plugins/contact/contact','email.header','Email','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3518,1,'en','plugins/contact/contact','email.title','New contact from your site','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3519,1,'en','plugins/contact/contact','form.name.required','Name is required','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3520,1,'en','plugins/contact/contact','form.email.required','Email is required','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3521,1,'en','plugins/contact/contact','form.email.email','The email address is not valid','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3522,1,'en','plugins/contact/contact','form.content.required','Content is required','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3523,1,'en','plugins/contact/contact','contact_sent_from','This contact information sent from','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3524,1,'en','plugins/contact/contact','sender','Sender','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3525,1,'en','plugins/contact/contact','sender_email','Email','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3526,1,'en','plugins/contact/contact','sender_address','Address','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3527,1,'en','plugins/contact/contact','sender_phone','Phone','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3528,1,'en','plugins/contact/contact','message_content','Message content','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3529,1,'en','plugins/contact/contact','sent_from','Email sent from','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3530,1,'en','plugins/contact/contact','form_name','Name','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3531,1,'en','plugins/contact/contact','form_email','Email','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3532,1,'en','plugins/contact/contact','form_address','Address','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3533,1,'en','plugins/contact/contact','form_subject','Subject','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3534,1,'en','plugins/contact/contact','form_phone','Phone','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3535,1,'en','plugins/contact/contact','form_message','Message','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3536,1,'en','plugins/contact/contact','required_field','The field with (<span style=\"color: red\">*</span>) is required.','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3537,1,'en','plugins/contact/contact','send_btn','Send message','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3538,1,'en','plugins/contact/contact','new_msg_notice','You have <span class=\"bold\">:count</span> New Messages','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3539,1,'en','plugins/contact/contact','view_all','View all','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3540,1,'en','plugins/contact/contact','statuses.read','Read','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3541,1,'en','plugins/contact/contact','statuses.unread','Unread','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3542,1,'en','plugins/contact/contact','phone','Phone','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3543,1,'en','plugins/contact/contact','address','Address','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3544,1,'en','plugins/contact/contact','message','Message','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3545,1,'en','plugins/contact/contact','settings.email.title','Contact','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3546,1,'en','plugins/contact/contact','settings.email.description','Contact email configuration','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3547,1,'en','plugins/contact/contact','settings.email.templates.notice_title','Send notice to administrator','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3548,1,'en','plugins/contact/contact','settings.email.templates.notice_description','Email template to send notice to administrator when system get new contact','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3549,1,'en','plugins/contact/contact','settings.title','Contact','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3550,1,'en','plugins/contact/contact','settings.description','Settings for contact plugin','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3551,1,'en','plugins/contact/contact','settings.blacklist_keywords','Blacklist keywords','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3552,1,'en','plugins/contact/contact','settings.blacklist_keywords_placeholder','keywords...','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3553,1,'en','plugins/contact/contact','settings.blacklist_keywords_helper','Blacklist contact requests if it includes those keywords in the content field (separate by comma).','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3554,1,'en','plugins/contact/contact','settings.blacklist_email_domains','Blacklist email domains','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3555,1,'en','plugins/contact/contact','settings.blacklist_email_domains_placeholder','domain...','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3556,1,'en','plugins/contact/contact','settings.blacklist_email_domains_helper','Blacklist contact requests if the email domain is in blacklist domains (separate by comma).','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3557,1,'en','plugins/contact/contact','settings.enable_math_captcha','Enable math captcha?','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3558,1,'en','plugins/contact/contact','no_reply','No reply yet!','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3559,1,'en','plugins/contact/contact','reply','Reply','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3560,1,'en','plugins/contact/contact','send','Send','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3561,1,'en','plugins/contact/contact','shortcode_name','Contact form','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3562,1,'en','plugins/contact/contact','shortcode_description','Add a contact form','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3563,1,'en','plugins/contact/contact','shortcode_content_description','Add shortcode [contact-form][/contact-form] to editor?','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3564,1,'en','plugins/contact/contact','message_sent_success','Message sent successfully!','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3565,1,'vi','plugins/contact/contact','menu','Liên hệ','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3566,1,'vi','plugins/contact/contact','edit','Xem liên hệ','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3567,1,'vi','plugins/contact/contact','tables.phone','Điện thoại','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3568,1,'vi','plugins/contact/contact','tables.email','Email','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3569,1,'vi','plugins/contact/contact','tables.full_name','Họ tên','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3570,1,'vi','plugins/contact/contact','tables.time','Thời gian','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3571,1,'vi','plugins/contact/contact','tables.address','Địa địa chỉ','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3572,1,'vi','plugins/contact/contact','tables.subject','Tiêu đề','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3573,1,'vi','plugins/contact/contact','tables.content','Nội dung','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3574,1,'vi','plugins/contact/contact','contact_information','Thông tin liên hệ','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3575,1,'vi','plugins/contact/contact','email.title','Thông tin liên hệ mới','2023-01-22 08:10:27','2023-01-22 08:10:27'),(3576,1,'vi','plugins/contact/contact','email.header','Email','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3577,1,'vi','plugins/contact/contact','form.name.required','Tên là bắt buộc','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3578,1,'vi','plugins/contact/contact','form.email.required','Email là bắt buộc','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3579,1,'vi','plugins/contact/contact','form.email.email','Địa chỉ email không hợp lệ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3580,1,'vi','plugins/contact/contact','form.content.required','Nội dung là bắt buộc','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3581,1,'vi','plugins/contact/contact','contact_sent_from','Liên hệ này được gửi từ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3582,1,'vi','plugins/contact/contact','form_address','Địa chỉ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3583,1,'vi','plugins/contact/contact','form_email','Thư điện tử','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3584,1,'vi','plugins/contact/contact','form_message','Thông điệp','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3585,1,'vi','plugins/contact/contact','form_name','Họ tên','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3586,1,'vi','plugins/contact/contact','form_phone','Số điện thoại','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3587,1,'vi','plugins/contact/contact','message_content','Nội dung thông điệp','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3588,1,'vi','plugins/contact/contact','required_field','Những trường có dấu (<span style=\"color: red\">*</span>) là bắt buộc.','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3589,1,'vi','plugins/contact/contact','send_btn','Gửi tin nhắn','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3590,1,'vi','plugins/contact/contact','sender','Người gửi','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3591,1,'vi','plugins/contact/contact','sender_address','Địa chỉ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3592,1,'vi','plugins/contact/contact','sender_email','Thư điện tử','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3593,1,'vi','plugins/contact/contact','sender_phone','Số điện thoại','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3594,1,'vi','plugins/contact/contact','sent_from','Thư được gửi từ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3595,1,'vi','plugins/contact/contact','address','Địa chỉ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3596,1,'vi','plugins/contact/contact','message','Liên hệ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3597,1,'vi','plugins/contact/contact','new_msg_notice','Bạn có <span class=\"bold\">:count</span> tin nhắn mới','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3598,1,'vi','plugins/contact/contact','phone','Điện thoại','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3599,1,'vi','plugins/contact/contact','statuses.read','Đã đọc','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3600,1,'vi','plugins/contact/contact','statuses.unread','Chưa đọc','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3601,1,'vi','plugins/contact/contact','view_all','Xem tất cả','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3602,1,'vi','plugins/contact/contact','settings.email.title','Liên hệ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3603,1,'vi','plugins/contact/contact','settings.email.description','Cấu hình thông tin cho mục liên hệ','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3604,1,'vi','plugins/contact/contact','settings.email.templates.notice_title','Thông báo tới admin','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3605,1,'vi','plugins/contact/contact','settings.email.templates.notice_description','Mẫu nội dung email gửi tới admin khi có liên hệ mới','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3606,1,'vi','plugins/contact/contact','replies','Trả lời','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3607,1,'vi','plugins/contact/contact','form_subject','Tiêu đề','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3608,1,'en','plugins/cookie-consent/cookie-consent','theme_options.name','Cookie Consent','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3609,1,'en','plugins/cookie-consent/cookie-consent','theme_options.description','Cookie consent settings','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3610,1,'en','plugins/cookie-consent/cookie-consent','theme_options.enable','Enable cookie consent?','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3611,1,'en','plugins/cookie-consent/cookie-consent','theme_options.message','Message','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3612,1,'en','plugins/cookie-consent/cookie-consent','theme_options.button_text','Button text','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3613,1,'en','plugins/cookie-consent/cookie-consent','theme_options.max_width','Max width (px)','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3614,1,'en','plugins/cookie-consent/cookie-consent','theme_options.background_color','Background color','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3615,1,'en','plugins/cookie-consent/cookie-consent','theme_options.text_color','Text color','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3616,1,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_url','Learn more URL','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3617,1,'en','plugins/cookie-consent/cookie-consent','theme_options.learn_more_text','Learn more text','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3618,1,'en','plugins/cookie-consent/cookie-consent','theme_options.style','Style','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3619,1,'en','plugins/cookie-consent/cookie-consent','theme_options.full_width','Full width','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3620,1,'en','plugins/cookie-consent/cookie-consent','theme_options.minimal','Minimal','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3621,1,'en','plugins/cookie-consent/cookie-consent','message','Your experience on this site will be improved by allowing cookies.','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3622,1,'en','plugins/cookie-consent/cookie-consent','button_text','Allow cookies','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3623,1,'en','plugins/ecommerce/brands','name','Brands','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3624,1,'en','plugins/ecommerce/brands','create','New brand','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3625,1,'en','plugins/ecommerce/brands','edit','Edit brand','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3626,1,'en','plugins/ecommerce/brands','form.name','Name','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3627,1,'en','plugins/ecommerce/brands','form.name_placeholder','Brand\'s name (Maximum 255 characters)','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3628,1,'en','plugins/ecommerce/brands','form.description','Description','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3629,1,'en','plugins/ecommerce/brands','form.description_placeholder','Short description for brand (Maximum 400 characters)','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3630,1,'en','plugins/ecommerce/brands','form.website','Website','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3631,1,'en','plugins/ecommerce/brands','form.logo','Logo','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3632,1,'en','plugins/ecommerce/brands','form.is_featured','Is featured','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3633,1,'en','plugins/ecommerce/brands','logo','Logo','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3634,1,'en','plugins/ecommerce/brands','website','Website','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3635,1,'en','plugins/ecommerce/brands','notices.no_select','Please select at least one record to take this action!','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3636,1,'en','plugins/ecommerce/brands','notices.update_success_message','Update successfully','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3637,1,'en','plugins/ecommerce/brands','cannot_delete','Brand could not be deleted','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3638,1,'en','plugins/ecommerce/brands','brand_deleted','Brand deleted','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3639,1,'en','plugins/ecommerce/brands','menu','Brands','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3640,1,'en','plugins/ecommerce/brands','no_brand','No brand','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3641,1,'en','plugins/ecommerce/brands','intro.title','Manage brands','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3642,1,'en','plugins/ecommerce/brands','intro.description','Manage product brands such as Nike, Adidas, Bitis ...','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3643,1,'en','plugins/ecommerce/brands','intro.button_text','Create brand','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3644,1,'en','plugins/ecommerce/bulk-import','name','Bulk Import','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3645,1,'en','plugins/ecommerce/bulk-import','loading_text','Importing','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3646,1,'en','plugins/ecommerce/bulk-import','imported_successfully','Imported successfully.','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3647,1,'en','plugins/ecommerce/bulk-import','please_choose_the_file_mime','Please choose the file mime :types','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3648,1,'en','plugins/ecommerce/bulk-import','please_choose_the_file','Please choose the file','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3649,1,'en','plugins/ecommerce/bulk-import','start_import','Start Import','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3650,1,'en','plugins/ecommerce/bulk-import','note','Note!','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3651,1,'en','plugins/ecommerce/bulk-import','warning_before_importing','If this is your first time using this feature, please read the documentation or contact the Administrator for access to the correct functionality!','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3652,1,'en','plugins/ecommerce/bulk-import','results','Result: :success successes, :failed failures','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3653,1,'en','plugins/ecommerce/bulk-import','failures','Failures','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3654,1,'en','plugins/ecommerce/bulk-import','tables.import','Import','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3655,1,'en','plugins/ecommerce/bulk-import','template','Template','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3656,1,'en','plugins/ecommerce/bulk-import','rules','Rules','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3657,1,'en','plugins/ecommerce/bulk-import','choose_file_with_mime','Choose file with mime: (:types)','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3658,1,'en','plugins/ecommerce/bulk-import','choose_file','Choose file','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3659,1,'en','plugins/ecommerce/bulk-import','menu','Import products','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3660,1,'en','plugins/ecommerce/bulk-import','download-csv-file','Download CSV template','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3661,1,'en','plugins/ecommerce/bulk-import','download-excel-file','Download Excel template','2023-01-22 08:10:28','2023-01-22 08:10:28'),(3662,1,'en','plugins/ecommerce/bulk-import','downloading','Downloading...','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3663,1,'en','plugins/ecommerce/bulk-import','export.template.input_error','Input error','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3664,1,'en','plugins/ecommerce/bulk-import','export.template.number_not_allowed','Number is not allowed!','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3665,1,'en','plugins/ecommerce/bulk-import','export.template.allowed_input','Allowed input','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3666,1,'en','plugins/ecommerce/bulk-import','export.template.prompt_decimal','Only numbers or decimals are accepted and greater than or equal to :min.','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3667,1,'en','plugins/ecommerce/bulk-import','export.template.prompt_whole_number','Only numbers are accepted and greater than or equal to :min.','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3668,1,'en','plugins/ecommerce/bulk-import','export.template.prompt_list','Please pick a value from the drop-down list.','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3669,1,'en','plugins/ecommerce/bulk-import','export.template.pick_from_list','Pick from list','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3670,1,'en','plugins/ecommerce/bulk-import','export.template.value_not_in_list','Value is not in list.','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3671,1,'en','plugins/ecommerce/bulk-import','import_failed_description','Import failed, please check the errors below!','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3672,1,'en','plugins/ecommerce/currency','currencies','Currencies','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3673,1,'en','plugins/ecommerce/currency','setting_description','List of currencies using on website','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3674,1,'en','plugins/ecommerce/currency','name','Name','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3675,1,'en','plugins/ecommerce/currency','symbol','Symbol','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3676,1,'en','plugins/ecommerce/currency','number_of_decimals','Number of decimals','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3677,1,'en','plugins/ecommerce/currency','exchange_rate','Exchange rate','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3678,1,'en','plugins/ecommerce/currency','is_prefix_symbol','Position of symbol','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3679,1,'en','plugins/ecommerce/currency','is_default','Is default?','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3680,1,'en','plugins/ecommerce/currency','remove','Remove','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3681,1,'en','plugins/ecommerce/currency','new_currency','Add a new currency','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3682,1,'en','plugins/ecommerce/currency','save_settings','Save settings','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3683,1,'en','plugins/ecommerce/currency','before_number','Before number','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3684,1,'en','plugins/ecommerce/currency','after_number','After number','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3685,1,'en','plugins/ecommerce/currency','require_at_least_one_currency','The system requires at least one currency!','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3686,1,'en','plugins/ecommerce/currency','enable_auto_detect_visitor_currency','Enable auto-detect visitor currency?','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3687,1,'en','plugins/ecommerce/currency','add_space_between_price_and_currency','Add a space between price and currency?','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3688,1,'en','plugins/ecommerce/currency','invalid_currency_name','Invalid currency code, it must be in :currencies.','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3689,1,'en','plugins/ecommerce/currency','instruction','Please check list currency code here: https://en.wikipedia.org/wiki/ISO_4217','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3690,1,'en','plugins/ecommerce/currency','code','Code','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3691,1,'en','plugins/ecommerce/customer','name','Customers','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3692,1,'en','plugins/ecommerce/customer','create','Create a customer','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3693,1,'en','plugins/ecommerce/customer','edit','Edit customer \":name\"','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3694,1,'en','plugins/ecommerce/customer','email','Email','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3695,1,'en','plugins/ecommerce/customer','email_placeholder','Ex: example@gmail.com','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3696,1,'en','plugins/ecommerce/customer','password','Password','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3697,1,'en','plugins/ecommerce/customer','change_password','Change password?','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3698,1,'en','plugins/ecommerce/customer','password_confirmation','Password confirmation','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3699,1,'en','plugins/ecommerce/customer','intro.title','Manage customers','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3700,1,'en','plugins/ecommerce/customer','intro.description','When a customer buy your product(s), you will know their order histories.','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3701,1,'en','plugins/ecommerce/customer','intro.button_text','Create customer','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3702,1,'en','plugins/ecommerce/customer','phone','Phone','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3703,1,'en','plugins/ecommerce/customer','phone_placeholder','Phone','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3704,1,'en','plugins/ecommerce/customer','avatar','Avatar','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3705,1,'en','plugins/ecommerce/customer','dob','Date of birth','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3706,1,'en','plugins/ecommerce/customer','statuses.activated','Activated','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3707,1,'en','plugins/ecommerce/customer','statuses.locked','Locked','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3708,1,'en','plugins/ecommerce/customer','email_verified','Email verified?','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3709,1,'en','plugins/ecommerce/discount','name','Discounts','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3710,1,'en','plugins/ecommerce/discount','create','Create discount','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3711,1,'en','plugins/ecommerce/discount','invalid_coupon','This coupon is invalid or expired!','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3712,1,'en','plugins/ecommerce/discount','cannot_use_same_time_with_other_discount_program','Cannot use this coupon in the same time with other discount program!','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3713,1,'en','plugins/ecommerce/discount','not_used','This coupon is not used yet!','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3714,1,'en','plugins/ecommerce/discount','detail','Detail','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3715,1,'en','plugins/ecommerce/discount','used','Used','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3716,1,'en','plugins/ecommerce/discount','intro.title','Manage discount/coupon code','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3717,1,'en','plugins/ecommerce/discount','intro.description','Create coupon code or promotion for your products.','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3718,1,'en','plugins/ecommerce/discount','intro.button_text','Create discount','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3719,1,'en','plugins/ecommerce/discount','expired','Expired','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3720,1,'en','plugins/ecommerce/discount','discount_promotion','Discount promotion','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3721,1,'en','plugins/ecommerce/discount','can','can','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3722,1,'en','plugins/ecommerce/discount','cannot','cannot','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3723,1,'en','plugins/ecommerce/discount','use_with_promotion','be used with promotion','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3724,1,'en','plugins/ecommerce/discount','create_discount_validate_title_required_if','Please enter the name of the promotion','2023-01-22 08:10:29','2023-01-22 08:10:29'),(3725,1,'en','plugins/ecommerce/discount','create_discount_validate_code_required_if','Please enter the promotion code','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3726,1,'en','plugins/ecommerce/discount','create_discount_validate_value_required','Amount must be greater than 0','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3727,1,'en','plugins/ecommerce/discount','create_discount_validate_target_required','No object selected for promotion','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3728,1,'en','plugins/ecommerce/discount','enums.type-options.amount','Amount - Fixed','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3729,1,'en','plugins/ecommerce/discount','enums.type-options.percentage','Discount %','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3730,1,'en','plugins/ecommerce/discount','enums.type-options.shipping','Free shipping','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3731,1,'en','plugins/ecommerce/discount','enums.type-options.same-price','Same price','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3732,1,'en','plugins/ecommerce/discount','discount','Discount','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3733,1,'en','plugins/ecommerce/discount','create_coupon_code','Create coupon code','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3734,1,'en','plugins/ecommerce/discount','create_discount_promotion','Create discount promotion','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3735,1,'en','plugins/ecommerce/discount','generate_coupon_code','Generate coupon code','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3736,1,'en','plugins/ecommerce/discount','customers_will_enter_this_coupon_code_when_they_checkout','Customers will enter this coupon code when they checkout','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3737,1,'en','plugins/ecommerce/discount','select_type_of_discount','Select type of discount','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3738,1,'en','plugins/ecommerce/discount','coupon_code','Coupon code','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3739,1,'en','plugins/ecommerce/discount','promotion','Promotion','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3740,1,'en','plugins/ecommerce/discount','can_be_used_with_promotion','Can be used with promotion','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3741,1,'en','plugins/ecommerce/discount','unlimited_coupon','Unlimited coupon','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3742,1,'en','plugins/ecommerce/discount','enter_number','Enter number','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3743,1,'en','plugins/ecommerce/discount','coupon_type','Coupon type','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3744,1,'en','plugins/ecommerce/discount','percentage_discount','Percentage discount (%)','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3745,1,'en','plugins/ecommerce/discount','free_shipping','Free shipping','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3746,1,'en','plugins/ecommerce/discount','same_price','Same price','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3747,1,'en','plugins/ecommerce/discount','apply_for','apply for','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3748,1,'en','plugins/ecommerce/discount','all_orders','All orders','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3749,1,'en','plugins/ecommerce/discount','order_amount_from','Order amount from','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3750,1,'en','plugins/ecommerce/discount','product_collection','Product collection','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3751,1,'en','plugins/ecommerce/discount','product','Product','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3752,1,'en','plugins/ecommerce/discount','customer','Customer','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3753,1,'en','plugins/ecommerce/discount','variant','Variant','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3754,1,'en','plugins/ecommerce/discount','search_product','Search product','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3755,1,'en','plugins/ecommerce/discount','no_products_found','No products found!','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3756,1,'en','plugins/ecommerce/discount','search_customer','Search customer','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3757,1,'en','plugins/ecommerce/discount','no_customer_found','No customer found!','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3758,1,'en','plugins/ecommerce/discount','one_time_per_order','One time per order','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3759,1,'en','plugins/ecommerce/discount','one_time_per_product_in_cart','One time per product in cart','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3760,1,'en','plugins/ecommerce/discount','number_of_products','Number of products required to apply','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3761,1,'en','plugins/ecommerce/discount','selected_products','Selected products','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3762,1,'en','plugins/ecommerce/discount','selected_customers','Selected customers','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3763,1,'en','plugins/ecommerce/discount','time','Time','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3764,1,'en','plugins/ecommerce/discount','start_date','Start date','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3765,1,'en','plugins/ecommerce/discount','end_date','End date','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3766,1,'en','plugins/ecommerce/discount','never_expired','Never expired','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3767,1,'en','plugins/ecommerce/discount','save','Save','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3768,1,'en','plugins/ecommerce/discount','enter_promotion_name','Enter promotion name','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3769,1,'en','plugins/ecommerce/discount','enter_coupon_name','Enter coupon name','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3770,1,'en','plugins/ecommerce/discount','cancel','Cancel','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3771,1,'en','plugins/ecommerce/discount','is','Is','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3772,1,'en','plugins/ecommerce/discount','when_shipping_fee_less_than','when shipping fee less than','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3773,1,'en','plugins/ecommerce/discount','minimum_order_amount_error','You are under :minimum_amount to apply the coupon, you must add :add_more more items to your cart','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3774,1,'en','plugins/ecommerce/ecommerce','settings','Settings','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3775,1,'en','plugins/ecommerce/ecommerce','name','Ecommerce','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3776,1,'en','plugins/ecommerce/ecommerce','setting.email.title','E-commerce','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3777,1,'en','plugins/ecommerce/ecommerce','setting.email.description','Ecommerce email config','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3778,1,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject','Subject of order confirmation email','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3779,1,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_subject_placeholder','The subject of email confirmation send to the customer','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3780,1,'en','plugins/ecommerce/ecommerce','setting.email.order_confirm_content','Content of order confirmation email','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3781,1,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject','Subject of email when changing order\'s status','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3782,1,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_subject_placeholder','Subject of email when changing order\'s status send to customer','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3783,1,'en','plugins/ecommerce/ecommerce','setting.email.order_status_change_content','Content of email when changing order\'s status','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3784,1,'en','plugins/ecommerce/ecommerce','setting.email.from_email','Email from','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3785,1,'en','plugins/ecommerce/ecommerce','setting.email.from_email_placeholder','Email from address to display in mail. Ex: example@gmail.com','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3786,1,'en','plugins/ecommerce/ecommerce','setting.title','Basic information','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3787,1,'en','plugins/ecommerce/ecommerce','setting.state','State','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3788,1,'en','plugins/ecommerce/ecommerce','setting.city','City','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3789,1,'en','plugins/ecommerce/ecommerce','setting.country','Country','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3790,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_gram','Gram (g)','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3791,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_kilogram','Kilogram (kg)','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3792,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_lb','Pound (lb)','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3793,1,'en','plugins/ecommerce/ecommerce','setting.weight_unit_oz','Ounce (oz)','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3794,1,'en','plugins/ecommerce/ecommerce','setting.height_unit_cm','Centimeter (cm)','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3795,1,'en','plugins/ecommerce/ecommerce','setting.height_unit_m','Meter (m)','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3796,1,'en','plugins/ecommerce/ecommerce','setting.height_unit_inch','Inch','2023-01-22 08:10:30','2023-01-22 08:10:30'),(3797,1,'en','plugins/ecommerce/ecommerce','setting.store_locator_title','Store locators','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3798,1,'en','plugins/ecommerce/ecommerce','setting.store_locator_description','All the lists of your chains, main stores, branches, etc. The locations can be used to track sales and to help us configure tax rates to charge when selling products.','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3799,1,'en','plugins/ecommerce/ecommerce','setting.phone','Phone','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3800,1,'en','plugins/ecommerce/ecommerce','setting.address','Address','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3801,1,'en','plugins/ecommerce/ecommerce','setting.is_primary','Primary?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3802,1,'en','plugins/ecommerce/ecommerce','setting.add_new','Add new','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3803,1,'en','plugins/ecommerce/ecommerce','setting.or','Or','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3804,1,'en','plugins/ecommerce/ecommerce','setting.change_primary_store','change default store locator','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3805,1,'en','plugins/ecommerce/ecommerce','setting.other_settings','Other settings','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3806,1,'en','plugins/ecommerce/ecommerce','setting.other_settings_description','Settings for cart, review...','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3807,1,'en','plugins/ecommerce/ecommerce','setting.enable_cart','Enable shopping cart?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3808,1,'en','plugins/ecommerce/ecommerce','setting.enable_tax','Enable tax?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3809,1,'en','plugins/ecommerce/ecommerce','setting.display_product_price_including_taxes','Display product price including taxes?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3810,1,'en','plugins/ecommerce/ecommerce','setting.enable_review','Enable review?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3811,1,'en','plugins/ecommerce/ecommerce','setting.enable_quick_buy_button','Enable quick buy button?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3812,1,'en','plugins/ecommerce/ecommerce','setting.quick_buy_target','Quick buy target page?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3813,1,'en','plugins/ecommerce/ecommerce','setting.checkout_page','Checkout page','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3814,1,'en','plugins/ecommerce/ecommerce','setting.cart_page','Cart page','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3815,1,'en','plugins/ecommerce/ecommerce','setting.add_location','Add location','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3816,1,'en','plugins/ecommerce/ecommerce','setting.edit_location','Edit location','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3817,1,'en','plugins/ecommerce/ecommerce','setting.delete_location','Delete location','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3818,1,'en','plugins/ecommerce/ecommerce','setting.change_primary_location','Change primary location','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3819,1,'en','plugins/ecommerce/ecommerce','setting.delete_location_confirmation','Are you sure you want to delete this location? This action cannot be undo.','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3820,1,'en','plugins/ecommerce/ecommerce','setting.save_location','Save location','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3821,1,'en','plugins/ecommerce/ecommerce','setting.accept','Accept','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3822,1,'en','plugins/ecommerce/ecommerce','setting.select_country','Select country...','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3823,1,'en','plugins/ecommerce/ecommerce','setting.zip_code_enabled','Enable Zip Code?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3824,1,'en','plugins/ecommerce/ecommerce','setting.thousands_separator','Thousands separator','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3825,1,'en','plugins/ecommerce/ecommerce','setting.decimal_separator','Decimal separator','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3826,1,'en','plugins/ecommerce/ecommerce','setting.separator_period','Period (.)','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3827,1,'en','plugins/ecommerce/ecommerce','setting.separator_comma','Comma (,)','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3828,1,'en','plugins/ecommerce/ecommerce','setting.separator_space','Space ( )','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3829,1,'en','plugins/ecommerce/ecommerce','setting.available_countries','Available countries','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3830,1,'en','plugins/ecommerce/ecommerce','setting.all','All','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3831,1,'en','plugins/ecommerce/ecommerce','setting.verify_customer_email','Verify customer\'s email?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3832,1,'en','plugins/ecommerce/ecommerce','setting.minimum_order_amount','Minimum order amount to place an order (:currency).','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3833,1,'en','plugins/ecommerce/ecommerce','setting.enable_guest_checkout','Enable guest checkout?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3834,1,'en','plugins/ecommerce/ecommerce','setting.show_number_of_products','Show number of products in the product single','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3835,1,'en','plugins/ecommerce/ecommerce','setting.payment_method_cod_minimum_amount','Minimum order amount - :currency (Optional)','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3836,1,'en','plugins/ecommerce/ecommerce','setting.review.max_file_size','Review max file size (MB)','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3837,1,'en','plugins/ecommerce/ecommerce','setting.review.max_file_number','Review max file number','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3838,1,'en','plugins/ecommerce/ecommerce','setting.using_custom_font_for_invoice','Using custom font for invoice?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3839,1,'en','plugins/ecommerce/ecommerce','setting.invoice_font_family','Invoice font family (Only work for Latin language)','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3840,1,'en','plugins/ecommerce/ecommerce','setting.enable_invoice_stamp','Enable invoice stamp?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3841,1,'en','plugins/ecommerce/ecommerce','setting.invoice_support_arabic_language','Support Arabic language in invoice?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3842,1,'en','plugins/ecommerce/ecommerce','setting.make_phone_field_at_the_checkout_optional','Make phone field at the checkout optional?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3843,1,'en','plugins/ecommerce/ecommerce','setting.disable_order_invoice_until_order_confirmed','Disable order invoice until order confirmed?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3844,1,'en','plugins/ecommerce/ecommerce','setting.vat_number','VAT number','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3845,1,'en','plugins/ecommerce/ecommerce','setting.enable_recaptcha_in_register_page','Enable Recaptcha in the registration page?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3846,1,'en','plugins/ecommerce/ecommerce','setting.enable_recaptcha_in_register_page_description','Need to setup Captcha in Admin -> Settings -> General first.','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3847,1,'en','plugins/ecommerce/ecommerce','setting.show_out_of_stock_products','Show out of stock products?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3848,1,'en','plugins/ecommerce/ecommerce','setting.default_tax_rate','Default tax rate','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3849,1,'en','plugins/ecommerce/ecommerce','setting.default_tax_rate_description','Important: it will be applied if no tax selected in product.','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3850,1,'en','plugins/ecommerce/ecommerce','setting.how_to_display_product_variation_images','How to display product variation images?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3851,1,'en','plugins/ecommerce/ecommerce','setting.only_variation_images','Only variation images','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3852,1,'en','plugins/ecommerce/ecommerce','setting.variation_images_and_main_product_images','Variation images + main product images','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3853,1,'en','plugins/ecommerce/ecommerce','setting.load_countries_states_cities_from_location_plugin','Load countries, states, cities from plugin location?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3854,1,'en','plugins/ecommerce/ecommerce','setting.enable_wishlist','Enable wishlist?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3855,1,'en','plugins/ecommerce/ecommerce','setting.enable_compare','Enable compare?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3856,1,'en','plugins/ecommerce/ecommerce','setting.enable_order_tracking','Enable order tracking?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3857,1,'en','plugins/ecommerce/ecommerce','setting.recently_viewed.enable','Enable customer recently viewed products?','2023-01-22 08:10:31','2023-01-22 08:10:31'),(3858,1,'en','plugins/ecommerce/ecommerce','setting.recently_viewed.max','Maximum number of customer recently viewed products','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3859,1,'en','plugins/ecommerce/ecommerce','setting.recently_viewed.max_helper','If you set 0, it will save all products.','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3860,1,'en','plugins/ecommerce/ecommerce','setting.search_products','Search products','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3861,1,'en','plugins/ecommerce/ecommerce','setting.search_products_description','Config rules to search products','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3862,1,'en','plugins/ecommerce/ecommerce','setting.search_for_an_exact_phrase','Search for an exact phrase?','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3863,1,'en','plugins/ecommerce/ecommerce','setting.search_products_by','Search products by:','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3864,1,'en','plugins/ecommerce/ecommerce','setting.tracking_settings','Tracking settings','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3865,1,'en','plugins/ecommerce/ecommerce','setting.tracking_settings_description','Manage tracking: UTM, Facebook, Google Tag Manager...','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3866,1,'en','plugins/ecommerce/ecommerce','setting.enable_facebook_pixel','Enable Facebook Pixel (Meta Pixel)?','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3867,1,'en','plugins/ecommerce/ecommerce','setting.facebook_pixel_id','Facebook Pixel ID','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3868,1,'en','plugins/ecommerce/ecommerce','setting.facebook_pixel_helper','Go to https://developers.facebook.com/docs/meta-pixel to create Facebook Pixel.','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3869,1,'en','plugins/ecommerce/ecommerce','setting.enable_google_tag_manager','Enable Google Tag Manager?','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3870,1,'en','plugins/ecommerce/ecommerce','setting.google_tag_manager_code','Google Tag Manager code','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3871,1,'en','plugins/ecommerce/ecommerce','setting.google_tag_manager_helper','Go to https://ads.google.com/aw/conversions to create Google Ads Conversions.','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3872,1,'en','plugins/ecommerce/ecommerce','setting.webhook','Webhook','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3873,1,'en','plugins/ecommerce/ecommerce','setting.webhook_description','Send webhook when order placed.','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3874,1,'en','plugins/ecommerce/ecommerce','setting.order_placed_webhook_url','Order placed webhook URL (method: POST)','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3875,1,'en','plugins/ecommerce/ecommerce','setting.return_request','Return Request','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3876,1,'en','plugins/ecommerce/ecommerce','setting.return_request_description','Number of days a customer can request a return after the order is completed.','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3877,1,'en','plugins/ecommerce/ecommerce','setting.returnable_days','Refundable days','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3878,1,'en','plugins/ecommerce/ecommerce','setting.billing_address_enabled','Enable billing address?','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3879,1,'en','plugins/ecommerce/ecommerce','setting.activate_custom_return_product_quantity','Activate custom return product quantity?','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3880,1,'en','plugins/ecommerce/ecommerce','setting.activate_custom_return_product_quantity_description','Allow customer to change the quantity of the product they want to return.','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3881,1,'en','plugins/ecommerce/ecommerce','setting.digital_product','Digital product','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3882,1,'en','plugins/ecommerce/ecommerce','setting.digital_product_title','Is enabled to support the digital products?','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3883,1,'en','plugins/ecommerce/ecommerce','store_address','Store address','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3884,1,'en','plugins/ecommerce/ecommerce','store_phone','Store phone','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3885,1,'en','plugins/ecommerce/ecommerce','order_id','Order ID','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3886,1,'en','plugins/ecommerce/ecommerce','order_token','Order token','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3887,1,'en','plugins/ecommerce/ecommerce','customer_name','Customer name','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3888,1,'en','plugins/ecommerce/ecommerce','customer_email','Customer email','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3889,1,'en','plugins/ecommerce/ecommerce','customer_phone','Customer phone','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3890,1,'en','plugins/ecommerce/ecommerce','customer_address','Customer address','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3891,1,'en','plugins/ecommerce/ecommerce','product_list','List products in order','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3892,1,'en','plugins/ecommerce/ecommerce','payment_detail','Payment detail','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3893,1,'en','plugins/ecommerce/ecommerce','shipping_method','Shipping method','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3894,1,'en','plugins/ecommerce/ecommerce','payment_method','Payment method','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3895,1,'en','plugins/ecommerce/ecommerce','standard_and_format','Standard & Format','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3896,1,'en','plugins/ecommerce/ecommerce','standard_and_format_description','Standards and formats are used to calculate things like product prices, shipping weights, and order times.','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3897,1,'en','plugins/ecommerce/ecommerce','change_order_format','Edit order code format (optional)','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3898,1,'en','plugins/ecommerce/ecommerce','change_order_format_description','The default order code starts at: number. You can change the start or end string to create the order code you want, for example \"DH-: number\" or \": number-A\"','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3899,1,'en','plugins/ecommerce/ecommerce','start_with','Start with','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3900,1,'en','plugins/ecommerce/ecommerce','end_with','End with','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3901,1,'en','plugins/ecommerce/ecommerce','order_will_be_shown','Your order code will be shown','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3902,1,'en','plugins/ecommerce/ecommerce','weight_unit','Unit of weight','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3903,1,'en','plugins/ecommerce/ecommerce','height_unit','Unit length / height','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3904,1,'en','plugins/ecommerce/ecommerce','theme_options.name','Ecommerce','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3905,1,'en','plugins/ecommerce/ecommerce','theme_options.description','Theme options for Ecommerce','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3906,1,'en','plugins/ecommerce/ecommerce','theme_options.number_products_per_page','Number of products per page','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3907,1,'en','plugins/ecommerce/ecommerce','theme_options.number_of_cross_sale_product','Number of cross sale products in product detail page','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3908,1,'en','plugins/ecommerce/ecommerce','theme_options.max_price_filter','Maximum price to filter','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3909,1,'en','plugins/ecommerce/ecommerce','theme_options.logo_in_the_checkout_page','Logo in the checkout page (Default is the main logo)','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3910,1,'en','plugins/ecommerce/ecommerce','theme_options.logo_in_invoices','Logo in invoices (Default is the main logo)','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3911,1,'en','plugins/ecommerce/ecommerce','basic_settings','Basic settings','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3912,1,'en','plugins/ecommerce/ecommerce','advanced_settings','Advanced settings','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3913,1,'en','plugins/ecommerce/email','customer_new_order_title','Order confirmation','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3914,1,'en','plugins/ecommerce/email','customer_new_order_description','Send email confirmation to customer when an order placed','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3915,1,'en','plugins/ecommerce/email','order_cancellation_title','Order cancellation','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3916,1,'en','plugins/ecommerce/email','order_cancellation_description','Send to custom when they cancelled order','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3917,1,'en','plugins/ecommerce/email','delivery_confirmation_title','Delivering confirmation','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3918,1,'en','plugins/ecommerce/email','delivery_confirmation_description','Send to customer when order is delivering','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3919,1,'en','plugins/ecommerce/email','admin_new_order_title','Notice about new order','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3920,1,'en','plugins/ecommerce/email','admin_new_order_description','Send to administrators when an order placed','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3921,1,'en','plugins/ecommerce/email','order_confirmation_title','Order confirmation','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3922,1,'en','plugins/ecommerce/email','order_confirmation_description','Send to customer when they order was confirmed by admins','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3923,1,'en','plugins/ecommerce/email','payment_confirmation_title','Payment confirmation','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3924,1,'en','plugins/ecommerce/email','payment_confirmation_description','Send to customer when their payment was confirmed','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3925,1,'en','plugins/ecommerce/email','order_recover_title','Incomplete order','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3926,1,'en','plugins/ecommerce/email','order_recover_description','Send to custom to remind them about incomplete orders','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3927,1,'en','plugins/ecommerce/email','view_order','View order','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3928,1,'en','plugins/ecommerce/email','link_go_to_our_shop','or <a href=\":link\">Go to our shop</a>','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3929,1,'en','plugins/ecommerce/email','order_number','Order number: <strong>:order_id</strong>','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3930,1,'en','plugins/ecommerce/email','order_information','Order information:','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3931,1,'en','plugins/ecommerce/email','order_return_request_title','Order return request','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3932,1,'en','plugins/ecommerce/email','order_return_request_description','Send to customer when they return order','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3933,1,'en','plugins/ecommerce/export','products.name','Export products','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3934,1,'en','plugins/ecommerce/export','products.title','Export Products (CSV)','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3935,1,'en','plugins/ecommerce/export','products.total_products','Total products','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3936,1,'en','plugins/ecommerce/export','products.total_variations','Total variations','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3937,1,'en','plugins/ecommerce/export','start_export','Start export','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3938,1,'en','plugins/ecommerce/export','exporting','Exporting...','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3939,1,'en','plugins/ecommerce/export','export','Export','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3940,1,'en','plugins/ecommerce/flash-sale','name','Flash sales','2023-01-22 08:10:32','2023-01-22 08:10:32'),(3941,1,'en','plugins/ecommerce/flash-sale','create','New flash sale','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3942,1,'en','plugins/ecommerce/flash-sale','edit','Edit flash sale','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3943,1,'en','plugins/ecommerce/flash-sale','products','Products','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3944,1,'en','plugins/ecommerce/invoice','name','Invoices','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3945,1,'en','plugins/ecommerce/invoice','create','New invoice','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3946,1,'en','plugins/ecommerce/invoice','edit','Edit invoice','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3947,1,'en','plugins/ecommerce/invoice','print','Print Invoice','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3948,1,'en','plugins/ecommerce/invoice','download','Download Invoice','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3949,1,'en','plugins/ecommerce/invoice','heading','Invoice','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3950,1,'en','plugins/ecommerce/invoice','invoice_for_job','','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3951,1,'en','plugins/ecommerce/invoice','table.code','Code','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3952,1,'en','plugins/ecommerce/invoice','table.amount','Amount','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3953,1,'en','plugins/ecommerce/invoice','detail.invoice_for','Invoice For','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3954,1,'en','plugins/ecommerce/invoice','detail.invoice_to','Invoice To','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3955,1,'en','plugins/ecommerce/invoice','detail.tax_id','Tax ID','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3956,1,'en','plugins/ecommerce/invoice','detail.code','Invoice Code','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3957,1,'en','plugins/ecommerce/invoice','detail.issue_at','Issue At','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3958,1,'en','plugins/ecommerce/invoice','detail.description','Description','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3959,1,'en','plugins/ecommerce/invoice','detail.qty','Qty','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3960,1,'en','plugins/ecommerce/invoice','detail.amount','Amount','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3961,1,'en','plugins/ecommerce/invoice','detail.discount','Discount','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3962,1,'en','plugins/ecommerce/invoice','detail.grand_total','Grand Total','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3963,1,'en','plugins/ecommerce/invoice','detail.shipping_fee','Shipping Fee','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3964,1,'en','plugins/ecommerce/invoice','detail.sub_total','Sub Total','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3965,1,'en','plugins/ecommerce/invoice','detail.tax','Tax','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3966,1,'en','plugins/ecommerce/invoice','detail.total','Total','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3967,1,'en','plugins/ecommerce/invoice','total_amount','Total Amount','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3968,1,'en','plugins/ecommerce/invoice','payment_info','Payment Info','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3969,1,'en','plugins/ecommerce/invoice','payment_method','Payment Method','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3970,1,'en','plugins/ecommerce/invoice','payment_status','Payment Status','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3971,1,'en','plugins/ecommerce/order','statuses.pending','Pending','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3972,1,'en','plugins/ecommerce/order','statuses.processing','Processing','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3973,1,'en','plugins/ecommerce/order','statuses.completed','Completed','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3974,1,'en','plugins/ecommerce/order','statuses.canceled','Canceled','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3975,1,'en','plugins/ecommerce/order','menu','Orders','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3976,1,'en','plugins/ecommerce/order','create','Create an order','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3977,1,'en','plugins/ecommerce/order','cancel_error','The order is delivering or not completed','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3978,1,'en','plugins/ecommerce/order','cancel_success','You do cancel the order successful','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3979,1,'en','plugins/ecommerce/order','return_error','The order is delivering or not completed','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3980,1,'en','plugins/ecommerce/order','return_success','Requested product(s) return successfully!','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3981,1,'en','plugins/ecommerce/order','incomplete_order','Incomplete orders','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3982,1,'en','plugins/ecommerce/order','order_id','Order ID','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3983,1,'en','plugins/ecommerce/order','product_id','Product ID','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3984,1,'en','plugins/ecommerce/order','customer_label','Customer','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3985,1,'en','plugins/ecommerce/order','tax_amount','Tax Amount','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3986,1,'en','plugins/ecommerce/order','shipping_amount','Shipping amount','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3987,1,'en','plugins/ecommerce/order','payment_method','Payment method','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3988,1,'en','plugins/ecommerce/order','payment_status_label','Payment status','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3989,1,'en','plugins/ecommerce/order','manage_orders','Manage orders','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3990,1,'en','plugins/ecommerce/order','order_intro_description','Once your store has orders, this is where you will process and track those orders.','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3991,1,'en','plugins/ecommerce/order','create_new_order','Create a new order','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3992,1,'en','plugins/ecommerce/order','manage_incomplete_orders','Manage incomplete orders','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3993,1,'en','plugins/ecommerce/order','incomplete_orders_intro_description','Incomplete order is an order created when a customer adds a product to the cart, proceeds to fill out the purchase information but does not complete the checkout process.','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3994,1,'en','plugins/ecommerce/order','invoice_for_order','Invoice for order','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3995,1,'en','plugins/ecommerce/order','created','Created','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3996,1,'en','plugins/ecommerce/order','invoice','Invoice','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3997,1,'en','plugins/ecommerce/order','return','Order Return Request','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3998,1,'en','plugins/ecommerce/order','is_return','Return checkbox','2023-01-22 08:10:33','2023-01-22 08:10:33'),(3999,1,'en','plugins/ecommerce/order','total_refund_amount','Total refund amount','2023-01-22 08:10:33','2023-01-22 08:10:33'),(4000,1,'en','plugins/ecommerce/order','total_amount_can_be_refunded','Total amount can be refunded','2023-01-22 08:10:33','2023-01-22 08:10:33'),(4001,1,'en','plugins/ecommerce/order','refund_reason','Refund reason','2023-01-22 08:10:33','2023-01-22 08:10:33'),(4002,1,'en','plugins/ecommerce/order','products','product(s)','2023-01-22 08:10:33','2023-01-22 08:10:33'),(4003,1,'en','plugins/ecommerce/order','default','Default','2023-01-22 08:10:33','2023-01-22 08:10:33'),(4004,1,'en','plugins/ecommerce/order','system','System','2023-01-22 08:10:33','2023-01-22 08:10:33'),(4005,1,'en','plugins/ecommerce/order','new_order_from','New order :order_id from :customer','2023-01-22 08:10:33','2023-01-22 08:10:33'),(4006,1,'en','plugins/ecommerce/order','confirmation_email_was_sent_to_customer','The email confirmation was sent to customer','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4007,1,'en','plugins/ecommerce/order','address_name_required','The name field is required.','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4008,1,'en','plugins/ecommerce/order','address_phone_required','The phone field is required.','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4009,1,'en','plugins/ecommerce/order','address_email_required','The email field is required.','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4010,1,'en','plugins/ecommerce/order','address_email_unique','The customer with that email is existed, please choose other email or login with this email!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4011,1,'en','plugins/ecommerce/order','address_state_required','The state field is required.','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4012,1,'en','plugins/ecommerce/order','address_city_required','The city field is required.','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4013,1,'en','plugins/ecommerce/order','address_country_required','The country field is required.','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4014,1,'en','plugins/ecommerce/order','address_address_required','The address field is required.','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4015,1,'en','plugins/ecommerce/order','create_order_from_payment_page','Order was created from checkout page','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4016,1,'en','plugins/ecommerce/order','order_was_verified_by','Order was verified by %user_name%','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4017,1,'en','plugins/ecommerce/order','new_order','New order :order_id','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4018,1,'en','plugins/ecommerce/order','payment_was_confirmed_by','Payment was confirmed (amount :money) by %user_name%','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4019,1,'en','plugins/ecommerce/order','edit_order','Edit order :code','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4020,1,'en','plugins/ecommerce/order','confirm_order_success','Confirm order successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4021,1,'en','plugins/ecommerce/order','error_when_sending_email','There is an error when sending email','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4022,1,'en','plugins/ecommerce/order','sent_confirmation_email_success','Sent confirmation email successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4023,1,'en','plugins/ecommerce/order','order_was_sent_to_shipping_team','Order was sent to shipping team','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4024,1,'en','plugins/ecommerce/order','by_username','by %user_name%','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4025,1,'en','plugins/ecommerce/order','shipping_was_created_from','Shipping was created from order %order_id%','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4026,1,'en','plugins/ecommerce/order','shipping_was_canceled_success','Shipping was cancelled successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4027,1,'en','plugins/ecommerce/order','shipping_was_canceled_by','Shipping was cancelled by %user_name%','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4028,1,'en','plugins/ecommerce/order','update_shipping_address_success','Update shipping address successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4029,1,'en','plugins/ecommerce/order','order_was_canceled_by','Order was cancelled by %user_name%','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4030,1,'en','plugins/ecommerce/order','order_was_returned_by','Order was returned by %user_name%','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4031,1,'en','plugins/ecommerce/order','confirm_payment_success','Confirm payment successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4032,1,'en','plugins/ecommerce/order','refund_amount_invalid','Refund amount must be lower or equal :price','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4033,1,'en','plugins/ecommerce/order','number_of_products_invalid','Number of products refund is not valid!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4034,1,'en','plugins/ecommerce/order','cannot_found_payment_for_this_order','Cannot found payment for this order!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4035,1,'en','plugins/ecommerce/order','refund_success_with_price','Refund success :price','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4036,1,'en','plugins/ecommerce/order','refund_success','Refund successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4037,1,'en','plugins/ecommerce/order','order_is_not_existed','Order is not existed!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4038,1,'en','plugins/ecommerce/order','reorder','Reorder','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4039,1,'en','plugins/ecommerce/order','sent_email_incomplete_order_success','Sent email to remind about incomplete order successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4040,1,'en','plugins/ecommerce/order','applied_coupon_success','Applied coupon \":code\" successfully!','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4041,1,'en','plugins/ecommerce/order','new_order_notice','You have <span class=\"bold\">:count</span> New Order(s)','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4042,1,'en','plugins/ecommerce/order','view_all','View all','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4043,1,'en','plugins/ecommerce/order','cancel_order','Cancel order','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4044,1,'en','plugins/ecommerce/order','order_canceled','Order canceled','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4045,1,'en','plugins/ecommerce/order','order_was_canceled_at','Order was canceled at','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4046,1,'en','plugins/ecommerce/order','return_order','Return order','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4047,1,'en','plugins/ecommerce/order','order_returned','Order returned','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4048,1,'en','plugins/ecommerce/order','order_was_returned_at','Order was returned at','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4049,1,'en','plugins/ecommerce/order','completed','Completed','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4050,1,'en','plugins/ecommerce/order','uncompleted','Uncompleted','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4051,1,'en','plugins/ecommerce/order','sku','SKU','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4052,1,'en','plugins/ecommerce/order','warehouse','Warehouse','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4053,1,'en','plugins/ecommerce/order','sub_amount','Sub amount','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4054,1,'en','plugins/ecommerce/order','coupon_code','Coupon code: \":code\"','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4055,1,'en','plugins/ecommerce/order','shipping_fee','Shipping fee','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4056,1,'en','plugins/ecommerce/order','tax','Tax','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4057,1,'en','plugins/ecommerce/order','refunded_amount','Refunded amount','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4058,1,'en','plugins/ecommerce/order','amount_received','The amount actually received','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4059,1,'en','plugins/ecommerce/order','download_invoice','Download invoice','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4060,1,'en','plugins/ecommerce/order','print_invoice','Print invoice','2023-01-22 08:10:34','2023-01-22 08:10:34'),(4061,1,'en','plugins/ecommerce/order','add_note','Add note...','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4062,1,'en','plugins/ecommerce/order','order_was_confirmed','Order was confirmed','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4063,1,'en','plugins/ecommerce/order','confirm_order','Confirm order','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4064,1,'en','plugins/ecommerce/order','confirm','Confirm','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4065,1,'en','plugins/ecommerce/order','order_was_canceled','Order was canceled','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4066,1,'en','plugins/ecommerce/order','order_was_returned','Order was returned','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4067,1,'en','plugins/ecommerce/order','pending_payment','Pending payment','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4068,1,'en','plugins/ecommerce/order','payment_was_accepted','Payment :money was accepted','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4069,1,'en','plugins/ecommerce/order','payment_was_refunded','Payment was refunded','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4070,1,'en','plugins/ecommerce/order','confirm_payment','Confirm payment','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4071,1,'en','plugins/ecommerce/order','refund','Refund','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4072,1,'en','plugins/ecommerce/order','all_products_are_not_delivered','All products are not delivered','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4073,1,'en','plugins/ecommerce/order','delivery','Delivery','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4074,1,'en','plugins/ecommerce/order','history','History','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4075,1,'en','plugins/ecommerce/order','order_number','Order number','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4076,1,'en','plugins/ecommerce/order','from','from','2023-01-22 08:10:35','2023-01-22 08:10:35'),(4077,1,'en','plugins/ecommerce/order','status','Status','2023-01-22 08:10:36','2023-01-22 08:10:36'),(4078,1,'en','plugins/ecommerce/order','successfully','Successfully','2023-01-22 08:10:36','2023-01-22 08:10:36'),(4079,1,'en','plugins/ecommerce/order','transaction_type','Transaction\'s type','2023-01-22 08:10:36','2023-01-22 08:10:36'),(4080,1,'en','plugins/ecommerce/order','staff','Staff','2023-01-22 08:10:36','2023-01-22 08:10:36'),(4081,1,'en','plugins/ecommerce/order','refund_date','Refund date','2023-01-22 08:10:36','2023-01-22 08:10:36'),(4082,1,'en','plugins/ecommerce/order','n_a','N\\A','2023-01-22 08:10:36','2023-01-22 08:10:36'),(4083,1,'en','plugins/ecommerce/order','payment_date','Payment date','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4084,1,'en','plugins/ecommerce/order','payment_gateway','Payment gateway','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4085,1,'en','plugins/ecommerce/order','transaction_amount','Transaction amount','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4086,1,'en','plugins/ecommerce/order','resend','Resend','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4087,1,'en','plugins/ecommerce/order','default_store','Default store','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4088,1,'en','plugins/ecommerce/order','update_address','Update address','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4089,1,'en','plugins/ecommerce/order','have_an_account_already','Have an account already','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4090,1,'en','plugins/ecommerce/order','dont_have_an_account_yet','Don\'t have an account yet','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4091,1,'en','plugins/ecommerce/order','mark_payment_as_confirmed','Mark <span>:method</span> as confirmed','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4092,1,'en','plugins/ecommerce/order','resend_order_confirmation','Resend order confirmation','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4093,1,'en','plugins/ecommerce/order','resend_order_confirmation_description','Confirmation email will be sent to <strong>:email</strong>?','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4094,1,'en','plugins/ecommerce/order','send','Send','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4095,1,'en','plugins/ecommerce/order','update','Update','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4096,1,'en','plugins/ecommerce/order','cancel_shipping_confirmation','Cancel shipping confirmation?','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4097,1,'en','plugins/ecommerce/order','cancel_shipping_confirmation_description','Cancel shipping confirmation?','2023-01-22 08:10:37','2023-01-22 08:10:37'),(4098,1,'en','plugins/ecommerce/order','cancel_order_confirmation','Cancel order confirmation?','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4099,1,'en','plugins/ecommerce/order','cancel_order_confirmation_description','Are you sure you want to cancel this order? This action cannot rollback','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4100,1,'en','plugins/ecommerce/order','return_order_confirmation','Return order confirmation?','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4101,1,'en','plugins/ecommerce/order','return_order_confirmation_description','Are you sure you want to return this order? This action cannot rollback','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4102,1,'en','plugins/ecommerce/order','confirm_payment_confirmation_description','Processed by <strong>:method</strong>. Did you receive payment outside the system? This payment won\'t be saved into system and cannot be refunded','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4103,1,'en','plugins/ecommerce/order','save_note','Save note','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4104,1,'en','plugins/ecommerce/order','order_note','Order note','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4105,1,'en','plugins/ecommerce/order','order_note_placeholder','Note about order, ex: time or shipping instruction.','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4106,1,'en','plugins/ecommerce/order','order_amount','Order amount','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4107,1,'en','plugins/ecommerce/order','additional_information','Additional information','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4108,1,'en','plugins/ecommerce/order','notice_about_incomplete_order','Notice about incomplete order','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4109,1,'en','plugins/ecommerce/order','notice_about_incomplete_order_description','Remind email about uncompleted order will be send to <strong>:email</strong>?','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4110,1,'en','plugins/ecommerce/order','incomplete_order_description_1','An incomplete order is when a potential customer places items in their shopping cart, and goes all the way through to the payment page, but then doesn\'t complete the transaction.','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4111,1,'en','plugins/ecommerce/order','incomplete_order_description_2','If you have contacted customers and they want to continue buying, you can help them complete their order by following the link:','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4112,1,'en','plugins/ecommerce/order','send_an_email_to_recover_this_order','Send an email to customer to recover this order','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4113,1,'en','plugins/ecommerce/order','see_maps','See maps','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4114,1,'en','plugins/ecommerce/order','one_or_more_products_dont_have_enough_quantity','One or more products don\'t have enough quantity!','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4115,1,'en','plugins/ecommerce/order','cannot_send_order_recover_to_mail','The email could not be found so it can\'t send a recovery email to the customer.','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4116,1,'en','plugins/ecommerce/order','payment_info','Payment Info','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4117,1,'en','plugins/ecommerce/order','payment_method_refund_automatic','Your customer will be refunded using :method automatically.','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4118,1,'en','plugins/ecommerce/order','order','Order','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4119,1,'en','plugins/ecommerce/order','order_information','Order information','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4120,1,'en','plugins/ecommerce/order','create_a_new_product','Create a new product','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4121,1,'en','plugins/ecommerce/order','out_of_stock','Out of stock','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4122,1,'en','plugins/ecommerce/order','products_available','product(s) available','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4123,1,'en','plugins/ecommerce/order','no_products_found','No products found!','2023-01-22 08:10:38','2023-01-22 08:10:38'),(4124,1,'en','plugins/ecommerce/order','note','Note','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4125,1,'en','plugins/ecommerce/order','note_for_order','Note for order...','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4126,1,'en','plugins/ecommerce/order','amount','Amount','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4127,1,'en','plugins/ecommerce/order','add_discount','Add discount','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4128,1,'en','plugins/ecommerce/order','discount','Discount','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4129,1,'en','plugins/ecommerce/order','add_shipping_fee','Add shipping fee','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4130,1,'en','plugins/ecommerce/order','shipping','Shipping','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4131,1,'en','plugins/ecommerce/order','total_amount','Total amount','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4132,1,'en','plugins/ecommerce/order','confirm_payment_and_create_order','Confirm payment and create order','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4133,1,'en','plugins/ecommerce/order','paid','Paid','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4134,1,'en','plugins/ecommerce/order','pay_later','Pay later','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4135,1,'en','plugins/ecommerce/order','customer_information','Customer information','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4136,1,'en','plugins/ecommerce/order','create_new_customer','Create new customer','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4137,1,'en','plugins/ecommerce/order','no_customer_found','No customer found!','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4138,1,'en','plugins/ecommerce/order','customer','Customer','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4139,1,'en','plugins/ecommerce/order','orders','order(s)','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4140,1,'en','plugins/ecommerce/order','shipping_address','Shipping Address','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4141,1,'en','plugins/ecommerce/order','billing_address','Billing Address','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4142,1,'en','plugins/ecommerce/order','see_on_maps','See on maps','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4143,1,'en','plugins/ecommerce/order','name','Name','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4144,1,'en','plugins/ecommerce/order','price','Price','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4145,1,'en','plugins/ecommerce/order','sku_optional','SKU (optional)','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4146,1,'en','plugins/ecommerce/order','with_storehouse_management','With storehouse management?','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4147,1,'en','plugins/ecommerce/order','quantity','Quantity','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4148,1,'en','plugins/ecommerce/order','allow_customer_checkout_when_this_product_out_of_stock','Allow customer checkout when this product out of stock?','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4149,1,'en','plugins/ecommerce/order','address','Address','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4150,1,'en','plugins/ecommerce/order','phone','Phone','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4151,1,'en','plugins/ecommerce/order','country','Country','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4152,1,'en','plugins/ecommerce/order','state','State','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4153,1,'en','plugins/ecommerce/order','city','City','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4154,1,'en','plugins/ecommerce/order','zip_code','Zip code','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4155,1,'en','plugins/ecommerce/order','discount_based_on','Discount based on','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4156,1,'en','plugins/ecommerce/order','or_coupon_code','Or coupon code','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4157,1,'en','plugins/ecommerce/order','description','Description','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4158,1,'en','plugins/ecommerce/order','how_to_select_configured_shipping','How to select configured shipping?','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4159,1,'en','plugins/ecommerce/order','please_add_customer_information_with_the_complete_shipping_address_to_see_the_configured_shipping_rates','Please add customer information with the complete shipping address to see the configured shipping rates','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4160,1,'en','plugins/ecommerce/order','free_shipping','Free shipping','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4161,1,'en','plugins/ecommerce/order','custom','Custom','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4162,1,'en','plugins/ecommerce/order','email','Email','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4163,1,'en','plugins/ecommerce/order','create_order','Create order','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4164,1,'en','plugins/ecommerce/order','close','Close','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4165,1,'en','plugins/ecommerce/order','confirm_payment_is_paid_for_this_order','Confirm payment is paid for this order','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4166,1,'en','plugins/ecommerce/order','payment_status_of_the_order_is_paid_once_the_order_has_been_created_you_cannot_change_the_payment_method_or_status','Payment status of the order is Paid. Once the order has been created, you cannot change the payment method or status','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4167,1,'en','plugins/ecommerce/order','select_payment_method','Select payment method','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4168,1,'en','plugins/ecommerce/order','cash_on_delivery_cod','Cash on delivery (COD)','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4169,1,'en','plugins/ecommerce/order','bank_transfer','Bank transfer','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4170,1,'en','plugins/ecommerce/order','paid_amount','Paid amount','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4171,1,'en','plugins/ecommerce/order','confirm_that_payment_for_this_order_will_be_paid_later','Confirm that payment for this order will be paid later','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4172,1,'en','plugins/ecommerce/order','payment_status_of_the_order_is_pending_once_the_order_has_been_created_you_cannot_change_the_payment_method_or_status','Payment status of the order is Pending. Once the order has been created, you cannot change the payment method or status','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4173,1,'en','plugins/ecommerce/order','pending_amount','Pending amount','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4174,1,'en','plugins/ecommerce/order','update_email','Update email','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4175,1,'en','plugins/ecommerce/order','save','Save','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4176,1,'en','plugins/ecommerce/order','cancel','Cancel','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4177,1,'en','plugins/ecommerce/order','create_a_new_order','Create a new order','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4178,1,'en','plugins/ecommerce/order','search_or_create_new_product','Search or create a new product','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4179,1,'en','plugins/ecommerce/order','search_or_create_new_customer','Search or create a new customer','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4180,1,'en','plugins/ecommerce/order','discount_description','Discount description','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4181,1,'en','plugins/ecommerce/order','cant_select_out_of_stock_product','Cannot select out of stock product!','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4182,1,'en','plugins/ecommerce/order','referral','Referral','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4183,1,'en','plugins/ecommerce/order','return_order_unique','Same :attribute already exists in a previous return request.','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4184,1,'en','plugins/ecommerce/order','total_return_amount','Total return amount','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4185,1,'en','plugins/ecommerce/order','change_return_order_status','Change return order status','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4186,1,'en','plugins/ecommerce/order','return_reason','Return reason','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4187,1,'en','plugins/ecommerce/order','referral_data.ip','IP','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4188,1,'en','plugins/ecommerce/order','referral_data.landing_domain','Landing domain','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4189,1,'en','plugins/ecommerce/order','referral_data.landing_page','Landing page','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4190,1,'en','plugins/ecommerce/order','referral_data.landing_params','Landing params','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4191,1,'en','plugins/ecommerce/order','referral_data.gclid','Gclid','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4192,1,'en','plugins/ecommerce/order','referral_data.fclid','Fclid','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4193,1,'en','plugins/ecommerce/order','referral_data.utm_source','UTM source','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4194,1,'en','plugins/ecommerce/order','referral_data.utm_campaign','UTM campaign','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4195,1,'en','plugins/ecommerce/order','referral_data.utm_medium','UTM medium','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4196,1,'en','plugins/ecommerce/order','referral_data.utm_term','UTM term','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4197,1,'en','plugins/ecommerce/order','referral_data.utm_content','UTM content','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4198,1,'en','plugins/ecommerce/order','referral_data.referral','Referral','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4199,1,'en','plugins/ecommerce/order','referral_data.referrer_url','Referral URL','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4200,1,'en','plugins/ecommerce/order','referral_data.referrer_domain','Referral domain','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4201,1,'en','plugins/ecommerce/order','order_address_types.shipping_address','Shipping address','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4202,1,'en','plugins/ecommerce/order','order_address_types.billing_address','Billing address','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4203,1,'en','plugins/ecommerce/order','order_return_reasons.damaged','Damaged product','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4204,1,'en','plugins/ecommerce/order','order_return_reasons.defective','Defective','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4205,1,'en','plugins/ecommerce/order','order_return_reasons.incorrect_item','Incorrect item','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4206,1,'en','plugins/ecommerce/order','order_return_reasons.arrived_late','Arrived late','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4207,1,'en','plugins/ecommerce/order','order_return_reasons.not_as_described','Not as described','2023-01-22 08:10:39','2023-01-22 08:10:39'),(4208,1,'en','plugins/ecommerce/order','order_return_reasons.no_longer_want','No longer want','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4209,1,'en','plugins/ecommerce/order','order_return_reasons.other','Other','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4210,1,'en','plugins/ecommerce/order','notices.update_return_order_status_error','Cannot update return order status! Maybe the return order status is not valid.','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4211,1,'en','plugins/ecommerce/order','notices.update_return_order_status_success','Update return order status successfully!','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4212,1,'en','plugins/ecommerce/order','order_return','Order returns','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4213,1,'en','plugins/ecommerce/order','order_return_items_count','Product item(s)','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4214,1,'en','plugins/ecommerce/payment','name','Payments','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4215,1,'en','plugins/ecommerce/payment','payment_method','Payment methods','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4216,1,'en','plugins/ecommerce/payment','view_payment','View payment #','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4217,1,'en','plugins/ecommerce/payment','charge_id','Charge ID','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4218,1,'en','plugins/ecommerce/payment','amount','Amount','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4219,1,'en','plugins/ecommerce/payment','currency','Currency','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4220,1,'en','plugins/ecommerce/payment','user','User','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4221,1,'en','plugins/ecommerce/payment','paypal_name_required','PayPal\'s name is required!','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4222,1,'en','plugins/ecommerce/payment','paypal_name_max','PayPal\'s name is too long!','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4223,1,'en','plugins/ecommerce/payment','status','Status','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4224,1,'en','plugins/ecommerce/payment','enabled','Enabled','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4225,1,'en','plugins/ecommerce/payment','disabled','Disabled','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4226,1,'en','plugins/ecommerce/payment','client_id','Client ID','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4227,1,'en','plugins/ecommerce/payment','client_secret','Client Secret','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4228,1,'en','plugins/ecommerce/payment','mode','Mode','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4229,1,'en','plugins/ecommerce/payment','sandbox','Sandbox','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4230,1,'en','plugins/ecommerce/payment','live','Live','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4231,1,'en','plugins/ecommerce/payment','enable_payment_log','Enable Payment Log','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4232,1,'en','plugins/ecommerce/payment','yes','Yes','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4233,1,'en','plugins/ecommerce/payment','no','No','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4234,1,'en','plugins/ecommerce/payment','client_key','Client Key','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4235,1,'en','plugins/ecommerce/payment','paypal','PayPal','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4236,1,'en','plugins/ecommerce/payment','action','Action','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4237,1,'en','plugins/ecommerce/payment','go_back','Go back','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4238,1,'en','plugins/ecommerce/payment','view','View','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4239,1,'en','plugins/ecommerce/payment','cash_on_delivery','Cash on delivery (COD)','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4240,1,'en','plugins/ecommerce/payment','via_bank_transfer','Via bank transfer','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4241,1,'en','plugins/ecommerce/payment','payment_via_cart','Payment via card','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4242,1,'en','plugins/ecommerce/payment','card_number','Card number','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4243,1,'en','plugins/ecommerce/payment','full_name','Full name','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4244,1,'en','plugins/ecommerce/payment','payment_via_paypal','Payment via PayPal','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4245,1,'en','plugins/ecommerce/payment','mm_yy','MM/YY','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4246,1,'en','plugins/ecommerce/payment','cvc','CVC','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4247,1,'en','plugins/ecommerce/payment','details','Details','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4248,1,'en','plugins/ecommerce/payment','payer_name','Payer Name','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4249,1,'en','plugins/ecommerce/payment','email','Email','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4250,1,'en','plugins/ecommerce/payment','phone','Phone','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4251,1,'en','plugins/ecommerce/payment','country','Country','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4252,1,'en','plugins/ecommerce/payment','shipping_address','Shipping Address','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4253,1,'en','plugins/ecommerce/payment','payment_details','Payment Details','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4254,1,'en','plugins/ecommerce/payment','card','Card','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4255,1,'en','plugins/ecommerce/payment','address','Address','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4256,1,'en','plugins/ecommerce/payment','new_payment','Payment for order :id','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4257,1,'en','plugins/ecommerce/payment','payment_id','Payment ID','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4258,1,'en','plugins/ecommerce/prices','name','Price','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4259,1,'en','plugins/ecommerce/prices','create','New price','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4260,1,'en','plugins/ecommerce/prices','edit','Edit price','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4261,1,'en','plugins/ecommerce/prices','list','List price','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4262,1,'en','plugins/ecommerce/product-attribute-sets','name','Product attribute sets','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4263,1,'en','plugins/ecommerce/product-attribute-sets','create','New product attribute set','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4264,1,'en','plugins/ecommerce/product-attribute-sets','edit','Edit product attribute set','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4265,1,'en','plugins/ecommerce/product-attribute-sets','visible_in_categories','Visible in categories','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4266,1,'en','plugins/ecommerce/product-attribute-sets','product_with_more_version','Product with more version','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4267,1,'en','plugins/ecommerce/product-attribute-sets','create_a_version','Create a version','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4268,1,'en','plugins/ecommerce/product-attribute-sets','enabled','Enabled','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4269,1,'en','plugins/ecommerce/product-attribute-sets','attributes','Attributes','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4270,1,'en','plugins/ecommerce/product-attribute-sets','price','Price','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4271,1,'en','plugins/ecommerce/product-attribute-sets','edit_btn','Edit','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4272,1,'en','plugins/ecommerce/product-attribute-sets','remove_btn','Remove','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4273,1,'en','plugins/ecommerce/product-attribute-sets','product','Product','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4274,1,'en','plugins/ecommerce/product-attribute-sets','back_to_product','Back to product','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4275,1,'en','plugins/ecommerce/product-attribute-sets','save','Save','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4276,1,'en','plugins/ecommerce/product-attribute-sets','other_existing_versions','Other existing versions','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4277,1,'en','plugins/ecommerce/product-attribute-sets','version_information','Version information','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4278,1,'en','plugins/ecommerce/product-attribute-sets','add_rule','Add rule','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4279,1,'en','plugins/ecommerce/product-attribute-sets','rules','Rules','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4280,1,'en','plugins/ecommerce/product-attribute-sets','pricing','Pricing','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4281,1,'en','plugins/ecommerce/product-attribute-sets','sale_price','Sale price','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4282,1,'en','plugins/ecommerce/product-attribute-sets','sale_type','Sale type','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4283,1,'en','plugins/ecommerce/product-attribute-sets','no_sale_price','No sale price','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4284,1,'en','plugins/ecommerce/product-attribute-sets','always_on_sale','Always on sale','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4285,1,'en','plugins/ecommerce/product-attribute-sets','limited_time','Limited time','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4286,1,'en','plugins/ecommerce/product-attribute-sets','from','From','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4287,1,'en','plugins/ecommerce/product-attribute-sets','to','To','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4288,1,'en','plugins/ecommerce/product-attribute-sets','storehouse','Storehouse','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4289,1,'en','plugins/ecommerce/product-attribute-sets','no_storehouse_management','No storehouse management','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4290,1,'en','plugins/ecommerce/product-attribute-sets','with_storehouse_management','With storehouse management','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4291,1,'en','plugins/ecommerce/product-attribute-sets','quantity','Quantity','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4292,1,'en','plugins/ecommerce/product-attribute-sets','allow_customer_checkout_out_of_stock','Allow customer checkout when this product out of stock','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4293,1,'en','plugins/ecommerce/product-attribute-sets','shipping','Shipping','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4294,1,'en','plugins/ecommerce/product-attribute-sets','length','Length','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4295,1,'en','plugins/ecommerce/product-attribute-sets','wide','Wide','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4296,1,'en','plugins/ecommerce/product-attribute-sets','height','Height','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4297,1,'en','plugins/ecommerce/product-attribute-sets','weight','Weight','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4298,1,'en','plugins/ecommerce/product-attribute-sets','version_images','Version images','2023-01-22 08:10:40','2023-01-22 08:10:40'),(4299,1,'en','plugins/ecommerce/product-attribute-sets','add_new_image','Add new image','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4300,1,'en','plugins/ecommerce/product-attribute-sets','attribute_set','Attribute set','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4301,1,'en','plugins/ecommerce/product-attribute-sets','value','Value','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4302,1,'en','plugins/ecommerce/product-attribute-sets','dropdown_swatch','Dropdown Swatch','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4303,1,'en','plugins/ecommerce/product-attribute-sets','visual_swatch','Visual Swatch','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4304,1,'en','plugins/ecommerce/product-attribute-sets','text_swatch','Text Swatch','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4305,1,'en','plugins/ecommerce/product-attribute-sets','display_layout','Display Layout','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4306,1,'en','plugins/ecommerce/product-attribute-sets','searchable','Searchable','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4307,1,'en','plugins/ecommerce/product-attribute-sets','comparable','Comparable','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4308,1,'en','plugins/ecommerce/product-attribute-sets','use_in_product_listing','Used in product listing','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4309,1,'en','plugins/ecommerce/product-attribute-sets','attributes_list','Attributes list','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4310,1,'en','plugins/ecommerce/product-attribute-sets','is_default','Is default?','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4311,1,'en','plugins/ecommerce/product-attribute-sets','title','Title','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4312,1,'en','plugins/ecommerce/product-attribute-sets','slug','Slug','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4313,1,'en','plugins/ecommerce/product-attribute-sets','color','Color','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4314,1,'en','plugins/ecommerce/product-attribute-sets','image','Image','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4315,1,'en','plugins/ecommerce/product-attribute-sets','remove','Remove','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4316,1,'en','plugins/ecommerce/product-attribute-sets','add_new_attribute','Add new attribute','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4317,1,'en','plugins/ecommerce/product-attribute-sets','use_image_from_product_variation','Use image from product variation (for Visual Swatch only)','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4318,1,'en','plugins/ecommerce/product-attributes','name','Product attributes','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4319,1,'en','plugins/ecommerce/product-attributes','create','New product attribute','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4320,1,'en','plugins/ecommerce/product-attributes','edit','Edit product attribute','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4321,1,'en','plugins/ecommerce/product-attributes','intro.title','Manage product attributes','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4322,1,'en','plugins/ecommerce/product-attributes','intro.description','Product attribute such as color, width, height ...','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4323,1,'en','plugins/ecommerce/product-attributes','intro.button_text','Create product attribute','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4324,1,'en','plugins/ecommerce/product-categories','name','Product categories','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4325,1,'en','plugins/ecommerce/product-categories','create','Create new product category','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4326,1,'en','plugins/ecommerce/product-categories','edit','Edit product category','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4327,1,'en','plugins/ecommerce/product-categories','list','List product categories','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4328,1,'en','plugins/ecommerce/product-categories','none','None','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4329,1,'en','plugins/ecommerce/product-categories','menu','Product categories','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4330,1,'en','plugins/ecommerce/product-categories','intro.title','Manage product categories','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4331,1,'en','plugins/ecommerce/product-categories','intro.description','Such as clothes, shoes, bags, jewelry ...','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4332,1,'en','plugins/ecommerce/product-categories','intro.button_text','Create product category','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4333,1,'en','plugins/ecommerce/product-categories','total_products','Total products: :total','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4334,1,'en','plugins/ecommerce/product-collections','name','Product collections','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4335,1,'en','plugins/ecommerce/product-collections','create','New product collection','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4336,1,'en','plugins/ecommerce/product-collections','edit','Edit product collection','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4337,1,'en','plugins/ecommerce/product-collections','slug_help_block','Label key: <code>:slug</code>. We will use this key for filter.','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4338,1,'en','plugins/ecommerce/product-collections','intro.title','Manage product collections','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4339,1,'en','plugins/ecommerce/product-collections','intro.description','Group your products into collections to make it easier for customers to find them by category.','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4340,1,'en','plugins/ecommerce/product-collections','intro.button_text','Create product collection','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4341,1,'en','plugins/ecommerce/product-label','name','Product labels','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4342,1,'en','plugins/ecommerce/product-label','create','New product label','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4343,1,'en','plugins/ecommerce/product-label','edit','Edit product label','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4344,1,'en','plugins/ecommerce/product-label','color','Color','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4345,1,'en','plugins/ecommerce/product-label','color_placeholder','Example: #f0f0f0','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4346,1,'en','plugins/ecommerce/product-option','name','Product Options','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4347,1,'en','plugins/ecommerce/product-option','options','Options','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4348,1,'en','plugins/ecommerce/product-option','create','New option','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4349,1,'en','plugins/ecommerce/product-option','edit','Edit option','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4350,1,'en','plugins/ecommerce/product-option','required','Is required?','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4351,1,'en','plugins/ecommerce/product-option','option_value','Option value','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4352,1,'en','plugins/ecommerce/product-option','option_type','Type','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4353,1,'en','plugins/ecommerce/product-option','label','Label','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4354,1,'en','plugins/ecommerce/product-option','price','Price','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4355,1,'en','plugins/ecommerce/product-option','price_type','Price Type','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4356,1,'en','plugins/ecommerce/product-option','percent','Percent','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4357,1,'en','plugins/ecommerce/product-option','fixed','Fixed','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4358,1,'en','plugins/ecommerce/product-option','label_placeholder','Please fill label','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4359,1,'en','plugins/ecommerce/product-option','affect_price_label','Please fill affect price','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4360,1,'en','plugins/ecommerce/product-option','add_new_row','Add new row','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4361,1,'en','plugins/ecommerce/product-option','add_new_option','Add new option','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4362,1,'en','plugins/ecommerce/product-option','select_global_option','Select Global Option','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4363,1,'en','plugins/ecommerce/product-option','add_global_option','Add Global Option','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4364,1,'en','plugins/ecommerce/product-option','please_select_option','Please select option','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4365,1,'en','plugins/ecommerce/product-tag','name','Product tags','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4366,1,'en','plugins/ecommerce/product-tag','create','New product tag','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4367,1,'en','plugins/ecommerce/product-tag','edit','Edit product tag','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4368,1,'en','plugins/ecommerce/products','name','Products','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4369,1,'en','plugins/ecommerce/products','create','New product','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4370,1,'en','plugins/ecommerce/products','create_product_type.physical','New physical product','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4371,1,'en','plugins/ecommerce/products','create_product_type.digital','New digital product','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4372,1,'en','plugins/ecommerce/products','edit','Edit product - :name','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4373,1,'en','plugins/ecommerce/products','form.name','Name','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4374,1,'en','plugins/ecommerce/products','form.name_placeholder','Product\'s name (Maximum 120 characters)','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4375,1,'en','plugins/ecommerce/products','form.description','Description','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4376,1,'en','plugins/ecommerce/products','form.description_placeholder','Short description for product (Maximum 400 characters)','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4377,1,'en','plugins/ecommerce/products','form.categories','Categories','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4378,1,'en','plugins/ecommerce/products','form.content','Content','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4379,1,'en','plugins/ecommerce/products','form.price','Price','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4380,1,'en','plugins/ecommerce/products','form.quantity','Quantity','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4381,1,'en','plugins/ecommerce/products','form.brand','Brand','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4382,1,'en','plugins/ecommerce/products','form.width','Width','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4383,1,'en','plugins/ecommerce/products','form.height','Height','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4384,1,'en','plugins/ecommerce/products','form.weight','Weight','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4385,1,'en','plugins/ecommerce/products','form.date.end','From date','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4386,1,'en','plugins/ecommerce/products','form.date.start','To date','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4387,1,'en','plugins/ecommerce/products','form.image','Images','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4388,1,'en','plugins/ecommerce/products','form.collections','Product collections','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4389,1,'en','plugins/ecommerce/products','form.labels','Labels','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4390,1,'en','plugins/ecommerce/products','form.price_sale','Price sale','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4391,1,'en','plugins/ecommerce/products','form.product_type.title','Product type','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4392,1,'en','plugins/ecommerce/products','form.product','Product','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4393,1,'en','plugins/ecommerce/products','form.total','Total','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4394,1,'en','plugins/ecommerce/products','form.sub_total','Subtotal','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4395,1,'en','plugins/ecommerce/products','form.shipping_fee','Shipping fee','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4396,1,'en','plugins/ecommerce/products','form.discount','Discount','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4397,1,'en','plugins/ecommerce/products','form.options','Options','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4398,1,'en','plugins/ecommerce/products','form.shipping.height','Height','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4399,1,'en','plugins/ecommerce/products','form.shipping.length','Length','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4400,1,'en','plugins/ecommerce/products','form.shipping.title','Shipping','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4401,1,'en','plugins/ecommerce/products','form.shipping.weight','Weight','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4402,1,'en','plugins/ecommerce/products','form.shipping.wide','Wide','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4403,1,'en','plugins/ecommerce/products','form.stock.allow_order_when_out','Allow customer checkout when this product out of stock','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4404,1,'en','plugins/ecommerce/products','form.stock.in_stock','In stock','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4405,1,'en','plugins/ecommerce/products','form.stock.out_stock','Out stock','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4406,1,'en','plugins/ecommerce/products','form.stock.title','Stock status','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4407,1,'en','plugins/ecommerce/products','form.storehouse.no_storehouse','No storehouse management','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4408,1,'en','plugins/ecommerce/products','form.storehouse.storehouse','With storehouse management','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4409,1,'en','plugins/ecommerce/products','form.storehouse.title','Storehouse','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4410,1,'en','plugins/ecommerce/products','form.storehouse.quantity','Quantity','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4411,1,'en','plugins/ecommerce/products','form.tax','Tax','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4412,1,'en','plugins/ecommerce/products','form.is_default','Is default','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4413,1,'en','plugins/ecommerce/products','form.action','Action','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4414,1,'en','plugins/ecommerce/products','form.restock_quantity','Restock quantity','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4415,1,'en','plugins/ecommerce/products','form.remain','Remain','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4416,1,'en','plugins/ecommerce/products','form.choose_discount_period','Choose Discount Period','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4417,1,'en','plugins/ecommerce/products','form.cancel','Cancel','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4418,1,'en','plugins/ecommerce/products','form.no_results','No results!','2023-01-22 08:10:41','2023-01-22 08:10:41'),(4419,1,'en','plugins/ecommerce/products','form.value','Value','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4420,1,'en','plugins/ecommerce/products','form.attribute_name','Attribute name','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4421,1,'en','plugins/ecommerce/products','form.add_more_attribute','Add more attribute','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4422,1,'en','plugins/ecommerce/products','form.continue','Continue','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4423,1,'en','plugins/ecommerce/products','form.add_new_attributes','Add new attributes','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4424,1,'en','plugins/ecommerce/products','form.add_new_attributes_description','Adding new attributes helps the product to have many options, such as size or color.','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4425,1,'en','plugins/ecommerce/products','form.create_product_variations',':link to create product variations!','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4426,1,'en','plugins/ecommerce/products','form.tags','Tags','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4427,1,'en','plugins/ecommerce/products','form.write_some_tags','Write some tags','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4428,1,'en','plugins/ecommerce/products','form.variation_existed','This variation is existed.','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4429,1,'en','plugins/ecommerce/products','form.no_attributes_selected','No attributes selected!','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4430,1,'en','plugins/ecommerce/products','form.added_variation_success','Added variation successfully!','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4431,1,'en','plugins/ecommerce/products','form.updated_variation_success','Updated variation successfully!','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4432,1,'en','plugins/ecommerce/products','form.created_all_variation_success','Created all variations successfully!','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4433,1,'en','plugins/ecommerce/products','form.updated_product_attributes_success','Updated product attributes successfully!','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4434,1,'en','plugins/ecommerce/products','form.stock_status','Stock status','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4435,1,'en','plugins/ecommerce/products','form.auto_generate_sku','Auto generate SKU?','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4436,1,'en','plugins/ecommerce/products','form.featured_image','Featured image (optional)','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4437,1,'en','plugins/ecommerce/products','form.product_id','Product ID','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4438,1,'en','plugins/ecommerce/products','price','Price','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4439,1,'en','plugins/ecommerce/products','quantity','Quantity','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4440,1,'en','plugins/ecommerce/products','type','Type','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4441,1,'en','plugins/ecommerce/products','image','Thumbnail','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4442,1,'en','plugins/ecommerce/products','sku','SKU','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4443,1,'en','plugins/ecommerce/products','variation_sku','Variation SKU','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4444,1,'en','plugins/ecommerce/products','brand','Brand','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4445,1,'en','plugins/ecommerce/products','cannot_delete','Product could not be deleted','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4446,1,'en','plugins/ecommerce/products','product_deleted','Product deleted','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4447,1,'en','plugins/ecommerce/products','product_collections','Product collections','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4448,1,'en','plugins/ecommerce/products','products','Products','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4449,1,'en','plugins/ecommerce/products','menu','Products','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4450,1,'en','plugins/ecommerce/products','control.button_add_image','Add image','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4451,1,'en','plugins/ecommerce/products','price_sale','Sale price','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4452,1,'en','plugins/ecommerce/products','price_group_title','Manager product price','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4453,1,'en','plugins/ecommerce/products','store_house_group_title','Manager store house','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4454,1,'en','plugins/ecommerce/products','shipping_group_title','Manager shipping','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4455,1,'en','plugins/ecommerce/products','overview','Overview','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4456,1,'en','plugins/ecommerce/products','attributes','Attributes','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4457,1,'en','plugins/ecommerce/products','product_has_variations','Product has variations','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4458,1,'en','plugins/ecommerce/products','manage_products','Manage products','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4459,1,'en','plugins/ecommerce/products','add_new_product','Add a new product','2023-01-22 08:10:42','2023-01-22 08:10:42'),(4460,1,'en','plugins/ecommerce/products','start_by_adding_new_product','Start by adding new products.','2023-01-22 08:10:43','2023-01-22 08:10:43'),(4461,1,'en','plugins/ecommerce/products','edit_this_product','Edit this product','2023-01-22 08:10:43','2023-01-22 08:10:43'),(4462,1,'en','plugins/ecommerce/products','delete','Delete','2023-01-22 08:10:43','2023-01-22 08:10:43'),(4463,1,'en','plugins/ecommerce/products','related_products','Related products','2023-01-22 08:10:43','2023-01-22 08:10:43'),(4464,1,'en','plugins/ecommerce/products','cross_selling_products','Cross-selling products','2023-01-22 08:10:43','2023-01-22 08:10:43'),(4465,1,'en','plugins/ecommerce/products','up_selling_products','Up-selling products','2023-01-22 08:10:43','2023-01-22 08:10:43'),(4466,1,'en','plugins/ecommerce/products','grouped_products','Grouped products','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4467,1,'en','plugins/ecommerce/products','search_products','Search products','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4468,1,'en','plugins/ecommerce/products','selected_products','Selected products','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4469,1,'en','plugins/ecommerce/products','edit_variation_item','Edit','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4470,1,'en','plugins/ecommerce/products','variations_box_description','Click on \"Edit attribute\" to add/remove attributes of variation or click on \"Add new variation\" to add variation.','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4471,1,'en','plugins/ecommerce/products','save_changes','Save changes','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4472,1,'en','plugins/ecommerce/products','continue','Continue','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4473,1,'en','plugins/ecommerce/products','edit_attribute','Edit attribute','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4474,1,'en','plugins/ecommerce/products','select_attribute','Select attribute','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4475,1,'en','plugins/ecommerce/products','add_new_variation','Add new variation','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4476,1,'en','plugins/ecommerce/products','edit_variation','Edit variation','2023-01-22 08:10:44','2023-01-22 08:10:44'),(4477,1,'en','plugins/ecommerce/products','generate_all_variations','Generate all variations','2023-01-22 08:10:45','2023-01-22 08:10:45'),(4478,1,'en','plugins/ecommerce/products','generate_all_variations_confirmation','Are you sure you want to generate all variations for this product?','2023-01-22 08:10:45','2023-01-22 08:10:45'),(4479,1,'en','plugins/ecommerce/products','delete_variation','Delete variation?','2023-01-22 08:10:45','2023-01-22 08:10:45'),(4480,1,'en','plugins/ecommerce/products','delete_variation_confirmation','Are you sure you want to delete this variation? This action cannot be undo.','2023-01-22 08:10:45','2023-01-22 08:10:45'),(4481,1,'en','plugins/ecommerce/products','delete_variations_confirmation','Are you sure you want to delete those variations? This action cannot be undo.','2023-01-22 08:10:45','2023-01-22 08:10:45'),(4482,1,'en','plugins/ecommerce/products','product_create_validate_name_required','Please enter product\'s name','2023-01-22 08:10:45','2023-01-22 08:10:45'),(4483,1,'en','plugins/ecommerce/products','product_create_validate_sale_price_max','The discount must be less than the original price','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4484,1,'en','plugins/ecommerce/products','product_create_validate_sale_price_required_if','Must enter a discount when you want to schedule a promotion','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4485,1,'en','plugins/ecommerce/products','product_create_validate_end_date_after','End date must be after start date','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4486,1,'en','plugins/ecommerce/products','product_create_validate_start_date_required_if','Discount start date cannot be left blank when scheduling is selected','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4487,1,'en','plugins/ecommerce/products','product_create_validate_sale_price','Discounts cannot be left blank when scheduling is selected','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4488,1,'en','plugins/ecommerce/products','stock_statuses.in_stock','In stock','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4489,1,'en','plugins/ecommerce/products','stock_statuses.out_of_stock','Out of stock','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4490,1,'en','plugins/ecommerce/products','stock_statuses.on_backorder','On backorder','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4491,1,'en','plugins/ecommerce/products','stock_status','Stock status','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4492,1,'en','plugins/ecommerce/products','processing','Processing...','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4493,1,'en','plugins/ecommerce/products','delete_selected_variations','Delete selected variations','2023-01-22 08:10:46','2023-01-22 08:10:46'),(4494,1,'en','plugins/ecommerce/products','delete_variations','Delete variations','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4495,1,'en','plugins/ecommerce/products','category','Category','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4496,1,'en','plugins/ecommerce/products','product_price_flash_sale_warning','This product is in flash sale <strong>:name</strong> so its price is <strong>:price</strong>.','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4497,1,'en','plugins/ecommerce/products','product_price_discount_warning','This product is in discount <strong>:name</strong> so its price is <strong>:price</strong>.','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4498,1,'en','plugins/ecommerce/products','product_image','Product image','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4499,1,'en','plugins/ecommerce/products','product_name','Product name','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4500,1,'en','plugins/ecommerce/products','types.physical','Physical','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4501,1,'en','plugins/ecommerce/products','types.digital','Digital','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4502,1,'en','plugins/ecommerce/products','digital_attachments.title','Digital attachments','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4503,1,'en','plugins/ecommerce/products','digital_attachments.add','Add Attachment','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4504,1,'en','plugins/ecommerce/products','digital_attachments.file_name','File name','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4505,1,'en','plugins/ecommerce/products','digital_attachments.file_size','File size','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4506,1,'en','plugins/ecommerce/products','digital_attachments.unsaved','Unsaved','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4507,1,'en','plugins/ecommerce/reports','name','Report','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4508,1,'en','plugins/ecommerce/reports','widget.order.title','Orders','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4509,1,'en','plugins/ecommerce/reports','count.revenue','Today revenue','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4510,1,'en','plugins/ecommerce/reports','count.orders','Today orders','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4511,1,'en','plugins/ecommerce/reports','count.products','Total products','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4512,1,'en','plugins/ecommerce/reports','count.customers','Total customers','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4513,1,'en','plugins/ecommerce/reports','product_name','Product name','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4514,1,'en','plugins/ecommerce/reports','quantity','Quantity','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4515,1,'en','plugins/ecommerce/reports','revenue_statistics','Revenue statistics','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4516,1,'en','plugins/ecommerce/reports','top_selling_products','Top Selling Products','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4517,1,'en','plugins/ecommerce/reports','ranges.today','Today','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4518,1,'en','plugins/ecommerce/reports','ranges.this_week','This week','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4519,1,'en','plugins/ecommerce/reports','ranges.last_7_days','Last 7 days','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4520,1,'en','plugins/ecommerce/reports','ranges.last_30_days','Last 30 days','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4521,1,'en','plugins/ecommerce/reports','ranges.this_month','This month','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4522,1,'en','plugins/ecommerce/reports','ranges.this_year','This year','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4523,1,'en','plugins/ecommerce/reports','revenue_this_month','Revenue this month','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4524,1,'en','plugins/ecommerce/reports','order_processing_this_month','order(s) processing in this month','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4525,1,'en','plugins/ecommerce/reports','order_completed_this_month','order(s) completed in this month','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4526,1,'en','plugins/ecommerce/reports','product_will_be_out_of_stock','product(s) will be out of stock soon','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4527,1,'en','plugins/ecommerce/reports','product_out_of_stock','product(s) out of stock','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4528,1,'en','plugins/ecommerce/reports','sales_reports','Sales Reports','2023-01-22 08:10:47','2023-01-22 08:10:47'),(4529,1,'en','plugins/ecommerce/reports','total_earnings','Total Earnings','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4530,1,'en','plugins/ecommerce/reports','recent_orders','Recent Orders','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4531,1,'en','plugins/ecommerce/reports','trending_products','Trending Products','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4532,1,'en','plugins/ecommerce/reports','statistics','Statistics','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4533,1,'en','plugins/ecommerce/reports','items_earning_sales','Items Earning Sales: :value','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4534,1,'en','plugins/ecommerce/reports','revenue','Revenue','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4535,1,'en','plugins/ecommerce/reports','orders','Orders','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4536,1,'en','plugins/ecommerce/reports','products','Products','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4537,1,'en','plugins/ecommerce/reports','customers','Customers','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4538,1,'en','plugins/ecommerce/reports','earnings','Earnings','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4539,1,'en','plugins/ecommerce/reports','views','Views','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4540,1,'en','plugins/ecommerce/reports','date_range_format_value','From :from to :to','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4541,1,'en','plugins/ecommerce/reports','select_range','Select Range','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4542,1,'en','plugins/ecommerce/review','name','Reviews','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4543,1,'en','plugins/ecommerce/review','add_review','Add review','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4544,1,'en','plugins/ecommerce/review','delete_review','Delete review','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4545,1,'en','plugins/ecommerce/review','create_review','Create Review','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4546,1,'en','plugins/ecommerce/review','please_select_rating','Please select rating','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4547,1,'en','plugins/ecommerce/review','comment','Comment','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4548,1,'en','plugins/ecommerce/review','approve','Approve','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4549,1,'en','plugins/ecommerce/review','approved','Approved','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4550,1,'en','plugins/ecommerce/review','disapprove','Disapprove','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4551,1,'en','plugins/ecommerce/review','disapproved','Disapproved','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4552,1,'en','plugins/ecommerce/review','product','Product','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4553,1,'en','plugins/ecommerce/review','user','User','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4554,1,'en','plugins/ecommerce/review','star','Star','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4555,1,'en','plugins/ecommerce/review','status','Status','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4556,1,'en','plugins/ecommerce/review','list_review','Customer reviews','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4557,1,'en','plugins/ecommerce/review','intro.title','Manage customer reviews','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4558,1,'en','plugins/ecommerce/review','intro.description','Customer reviews will be shown here and you can manage it to show/hide in product detail page.','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4559,1,'en','plugins/ecommerce/review','images','Images','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4560,1,'en','plugins/ecommerce/shipping','name','Shipping Rules','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4561,1,'en','plugins/ecommerce/shipping','shipping','Shipping','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4562,1,'en','plugins/ecommerce/shipping','title','Title','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4563,1,'en','plugins/ecommerce/shipping','amount','Amount','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4564,1,'en','plugins/ecommerce/shipping','enable','Enable','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4565,1,'en','plugins/ecommerce/shipping','enabled','Enabled','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4566,1,'en','plugins/ecommerce/shipping','disable','Disable','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4567,1,'en','plugins/ecommerce/shipping','disabled','Disabled','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4568,1,'en','plugins/ecommerce/shipping','create_shipping','Create a shipping','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4569,1,'en','plugins/ecommerce/shipping','edit_shipping','Edit shipping :code','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4570,1,'en','plugins/ecommerce/shipping','status','Status','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4571,1,'en','plugins/ecommerce/shipping','shipping_methods','Shipping methods','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4572,1,'en','plugins/ecommerce/shipping','create_shipping_method','Create shipping method','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4573,1,'en','plugins/ecommerce/shipping','edit_shipping_method','Edit shipping method','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4574,1,'en','plugins/ecommerce/shipping','add_shipping_region','Add shipping region','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4575,1,'en','plugins/ecommerce/shipping','country','Country','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4576,1,'en','plugins/ecommerce/shipping','state','State','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4577,1,'en','plugins/ecommerce/shipping','city','City','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4578,1,'en','plugins/ecommerce/shipping','address','Address','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4579,1,'en','plugins/ecommerce/shipping','phone','Phone','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4580,1,'en','plugins/ecommerce/shipping','email','Email','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4581,1,'en','plugins/ecommerce/shipping','zip_code','Zip code','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4582,1,'en','plugins/ecommerce/shipping','methods.default','Default','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4583,1,'en','plugins/ecommerce/shipping','statuses.not_approved','Not approved','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4584,1,'en','plugins/ecommerce/shipping','statuses.approved','Approved','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4585,1,'en','plugins/ecommerce/shipping','statuses.pending','Pending','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4586,1,'en','plugins/ecommerce/shipping','statuses.arrange_shipment','Arrange shipment','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4587,1,'en','plugins/ecommerce/shipping','statuses.ready_to_be_shipped_out','Ready to be shipped out','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4588,1,'en','plugins/ecommerce/shipping','statuses.picking','Picking','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4589,1,'en','plugins/ecommerce/shipping','statuses.delay_picking','Delay picking','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4590,1,'en','plugins/ecommerce/shipping','statuses.picked','Picked','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4591,1,'en','plugins/ecommerce/shipping','statuses.not_picked','Not picked','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4592,1,'en','plugins/ecommerce/shipping','statuses.delivering','Delivering','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4593,1,'en','plugins/ecommerce/shipping','statuses.delivered','Delivered','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4594,1,'en','plugins/ecommerce/shipping','statuses.not_delivered','Not delivered','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4595,1,'en','plugins/ecommerce/shipping','statuses.audited','Audited','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4596,1,'en','plugins/ecommerce/shipping','statuses.canceled','Canceled','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4597,1,'en','plugins/ecommerce/shipping','cod_statuses.pending','Pending','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4598,1,'en','plugins/ecommerce/shipping','cod_statuses.completed','Completed','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4599,1,'en','plugins/ecommerce/shipping','delete','Delete','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4600,1,'en','plugins/ecommerce/shipping','shipping_rules','Shipping Rules','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4601,1,'en','plugins/ecommerce/shipping','shipping_rules_description','Rules to calculate shipping fee.','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4602,1,'en','plugins/ecommerce/shipping','select_country','Select country','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4603,1,'en','plugins/ecommerce/shipping','add_shipping_rule','Add shipping rule','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4604,1,'en','plugins/ecommerce/shipping','delete_shipping_rate','Delete shipping rate for area','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4605,1,'en','plugins/ecommerce/shipping','delete_shipping_rate_confirmation','Are you sure you want to delete <strong class=\"region-price-item-label\"></strong> from this shipping area?','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4606,1,'en','plugins/ecommerce/shipping','delete_shipping_area','Delete shipping area','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4607,1,'en','plugins/ecommerce/shipping','delete_shipping_area_confirmation','Are you sure you want to delete shipping area <strong class=\"region-item-label\"></strong>?','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4608,1,'en','plugins/ecommerce/shipping','add_shipping_fee_for_area','Add shipping fee for area','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4609,1,'en','plugins/ecommerce/shipping','confirm','Confirm','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4610,1,'en','plugins/ecommerce/shipping','save','Save','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4611,1,'en','plugins/ecommerce/shipping','greater_than','Greater than','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4612,1,'en','plugins/ecommerce/shipping','type','Type','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4613,1,'en','plugins/ecommerce/shipping','shipping_rule_name','Name of shipping rule','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4614,1,'en','plugins/ecommerce/shipping','shipping_fee','Shipping fee','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4615,1,'en','plugins/ecommerce/shipping','cancel','Cancel','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4616,1,'en','plugins/ecommerce/shipping','base_on_weight','Based on product\'s weight (:unit)','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4617,1,'en','plugins/ecommerce/shipping','base_on_price','Based on product\'s price','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4618,1,'en','plugins/ecommerce/shipping','shipment_canceled','Shipment was canceled','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4619,1,'en','plugins/ecommerce/shipping','at','At','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4620,1,'en','plugins/ecommerce/shipping','cash_on_delivery','Cash on delivery (COD)','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4621,1,'en','plugins/ecommerce/shipping','update_shipping_status','Update shipping status','2023-01-22 08:10:48','2023-01-22 08:10:48'),(4622,1,'en','plugins/ecommerce/shipping','update_cod_status','Update COD status','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4623,1,'en','plugins/ecommerce/shipping','history','History','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4624,1,'en','plugins/ecommerce/shipping','shipment_information','Shipment information','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4625,1,'en','plugins/ecommerce/shipping','order_number','Order number','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4626,1,'en','plugins/ecommerce/shipping','shipping_method','Shipping method','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4627,1,'en','plugins/ecommerce/shipping','select_shipping_method','Select shipping method','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4628,1,'en','plugins/ecommerce/shipping','cod_status','COD status','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4629,1,'en','plugins/ecommerce/shipping','shipping_status','Shipping status','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4630,1,'en','plugins/ecommerce/shipping','customer_information','Customer information','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4631,1,'en','plugins/ecommerce/shipping','sku','SKU','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4632,1,'en','plugins/ecommerce/shipping','change_status_confirm_title','Confirm <span class=\"shipment-status-label\"></span> ?','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4633,1,'en','plugins/ecommerce/shipping','change_status_confirm_description','Are you sure you want to confirm <span class=\"shipment-status-label\"></span> for this shipment?','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4634,1,'en','plugins/ecommerce/shipping','accept','Accept','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4635,1,'en','plugins/ecommerce/shipping','weight_unit','Weight (:unit)','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4636,1,'en','plugins/ecommerce/shipping','updated_at','Last Update','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4637,1,'en','plugins/ecommerce/shipping','cod_amount','Cash on delivery amount (COD)','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4638,1,'en','plugins/ecommerce/shipping','cancel_shipping','Cancel shipping','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4639,1,'en','plugins/ecommerce/shipping','shipping_address','Shipping address','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4640,1,'en','plugins/ecommerce/shipping','packages','Packages','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4641,1,'en','plugins/ecommerce/shipping','edit','Edit','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4642,1,'en','plugins/ecommerce/shipping','fee','Fee','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4643,1,'en','plugins/ecommerce/shipping','note','Note','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4644,1,'en','plugins/ecommerce/shipping','finish','Finish','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4645,1,'en','plugins/ecommerce/shipping','shipping_fee_cod','Shipping fee/COD','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4646,1,'en','plugins/ecommerce/shipping','send_confirmation_email_to_customer','Send confirmation email to customer','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4647,1,'en','plugins/ecommerce/shipping','form_name','Name','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4648,1,'en','plugins/ecommerce/shipping','changed_shipping_status','Changed status of shipping to: :status. Updated by: %user_name%','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4649,1,'en','plugins/ecommerce/shipping','order_confirmed_by','Order confirmed by %user_name%','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4650,1,'en','plugins/ecommerce/shipping','shipping_canceled_by','Shipping is cancelled by %user_name%','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4651,1,'en','plugins/ecommerce/shipping','update_shipping_status_success','Update shipping status successfully!','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4652,1,'en','plugins/ecommerce/shipping','update_cod_status_success','Updated COD status of shipping successfully!','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4653,1,'en','plugins/ecommerce/shipping','updated_cod_status_by','Updated COD status to :status . Updated by: %user_name%','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4654,1,'en','plugins/ecommerce/shipping','all','All','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4655,1,'en','plugins/ecommerce/shipping','error_when_adding_new_region','There is an error when adding new region!','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4656,1,'en','plugins/ecommerce/shipping','delivery','Delivery','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4657,1,'en','plugins/ecommerce/shipping','adjustment_price_of','Adjustment price of :key','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4658,1,'en','plugins/ecommerce/shipping','warehouse','Warehouse','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4659,1,'en','plugins/ecommerce/shipping','delivery_note','Delivery note','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4660,1,'en','plugins/ecommerce/shipping','shipments','Shipments','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4661,1,'en','plugins/ecommerce/shipping','order_id','Order ID','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4662,1,'en','plugins/ecommerce/shipping','not_available','Not available','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4663,1,'en','plugins/ecommerce/shipping','shipping_amount','Shipping Amount','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4664,1,'en','plugins/ecommerce/shipping','additional_shipment_information','Additional shipment information','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4665,1,'en','plugins/ecommerce/shipping','shipping_company_name','Shipping Company Name','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4666,1,'en','plugins/ecommerce/shipping','tracking_id','Tracking ID','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4667,1,'en','plugins/ecommerce/shipping','tracking_link','Tracking Link','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4668,1,'en','plugins/ecommerce/shipping','estimate_date_shipped','Estimate Date Shipped','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4669,1,'en','plugins/ecommerce/shipping','date_shipped','Date Shipped','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4670,1,'en','plugins/ecommerce/shipping','add_note','Add note...','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4671,1,'en','plugins/ecommerce/shipping','view_order','View Order :order_id','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4672,1,'en','plugins/ecommerce/store-locator','name','Store locators','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4673,1,'en','plugins/ecommerce/store-locator','description','This address will appear on your invoice and will be used to calculate your shipping price.','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4674,1,'en','plugins/ecommerce/store-locator','shop_name','Shop name','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4675,1,'en','plugins/ecommerce/store-locator','phone','Phone','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4676,1,'en','plugins/ecommerce/store-locator','email','Email','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4677,1,'en','plugins/ecommerce/store-locator','state','State','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4678,1,'en','plugins/ecommerce/store-locator','city','City','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4679,1,'en','plugins/ecommerce/store-locator','country','Country','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4680,1,'en','plugins/ecommerce/store-locator','address','Address','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4681,1,'en','plugins/ecommerce/store-locator','primary_store_is','Primary store is','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4682,1,'en','plugins/ecommerce/store-locator','store_name','Store name','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4683,1,'en','plugins/ecommerce/store-locator','select_country','Select country...','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4684,1,'en','plugins/ecommerce/store-locator','default_shipping_location','Default shipping location','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4685,1,'en','plugins/ecommerce/store-locator','default_store','Default store','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4686,1,'en','plugins/ecommerce/tax','name','Taxes','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4687,1,'en','plugins/ecommerce/tax','create','Create a tax','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4688,1,'en','plugins/ecommerce/tax','edit','Edit tax :title','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4689,1,'en','plugins/ecommerce/tax','title','Title','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4690,1,'en','plugins/ecommerce/tax','percentage','Percentage %','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4691,1,'en','plugins/ecommerce/tax','priority','Priority','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4692,1,'en','plugins/ecommerce/tax','select_tax','-- select --','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4693,1,'en','plugins/analytics','sessions','Sessions','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4694,1,'en','plugins/analytics','visitors','Visitors','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4695,1,'en','plugins/analytics','pageviews','Pageviews','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4696,1,'en','plugins/analytics','bounce_rate','Bounce Rate','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4697,1,'en','plugins/analytics','page_session','Pages/Session','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4698,1,'en','plugins/analytics','avg_duration','Avg. Duration','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4699,1,'en','plugins/analytics','percent_new_session','Percent new session','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4700,1,'en','plugins/analytics','new_users','New visitors','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4701,1,'en','plugins/analytics','visits','visits','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4702,1,'en','plugins/analytics','views','views','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4703,1,'en','plugins/analytics','view_id_not_specified','You must provide a valid view id. The document here: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4704,1,'en','plugins/analytics','credential_is_not_valid','Analytics credentials is not valid. The document here: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4705,1,'en','plugins/analytics','start_date_can_not_before_end_date','Start date :start_date cannot be after end date :end_date','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4706,1,'en','plugins/analytics','wrong_configuration','To view analytics you\'ll need to get a google analytics client id and add it to your settings. <br /> You also need JSON credential data. <br /> The document here: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4707,1,'en','plugins/analytics','settings.title','Google Analytics','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4708,1,'en','plugins/analytics','settings.description','Config Credentials for Google Analytics','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4709,1,'en','plugins/analytics','settings.tracking_code','Tracking ID','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4710,1,'en','plugins/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4711,1,'en','plugins/analytics','settings.view_id','View ID','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4712,1,'en','plugins/analytics','settings.view_id_description','Google Analytics View ID','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4713,1,'en','plugins/analytics','settings.json_credential','Service Account Credentials','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4714,1,'en','plugins/analytics','settings.json_credential_description','Service Account Credentials','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4715,1,'en','plugins/analytics','widget_analytics_page','Top Most Visit Pages','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4716,1,'en','plugins/analytics','widget_analytics_browser','Top Browsers','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4717,1,'en','plugins/analytics','widget_analytics_referrer','Top Referrers','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4718,1,'en','plugins/analytics','widget_analytics_general','Site Analytics','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4719,1,'en','plugins/faq/faq-category','name','Categories','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4720,1,'en','plugins/faq/faq-category','create','New category','2023-01-22 08:10:49','2023-01-22 08:10:49'),(4721,1,'en','plugins/faq/faq-category','edit','Edit category','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4722,1,'en','plugins/faq/faq','name','FAQ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4723,1,'en','plugins/faq/faq','create','New faq','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4724,1,'en','plugins/faq/faq','edit','Edit faq','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4725,1,'en','plugins/faq/faq','question','Question','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4726,1,'en','plugins/faq/faq','answer','Answer','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4727,1,'en','plugins/faq/faq','category','Category','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4728,1,'en','plugins/faq/faq','all','All','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4729,1,'en','plugins/faq/faq','faq_schema_config','FAQ schema configuration (:link)','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4730,1,'en','plugins/faq/faq','learn_more','Learn more','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4731,1,'en','plugins/faq/faq','settings.title','FAQ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4732,1,'en','plugins/faq/faq','settings.description','Settings for FAQ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4733,1,'en','plugins/faq/faq','settings.enable_faq_schema','Enable FAQ Schema?','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4734,1,'en','plugins/faq/faq','settings.enable_faq_schema_description','Learn more: https://developers.google.com/search/docs/data-types/faqpage','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4735,1,'en','plugins/faq/faq','select_category','Select a category','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4736,1,'en','plugins/faq/faq','add_item','Add item','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4737,1,'en','plugins/language/language','name','Languages','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4738,1,'en','plugins/language/language','choose_language','Choose a language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4739,1,'en','plugins/language/language','select_language','Select language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4740,1,'en','plugins/language/language','choose_language_helper','You can choose a language in the list or directly edit it below.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4741,1,'en','plugins/language/language','language_name','Language name','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4742,1,'en','plugins/language/language','language_name_helper','The name is how it is displayed on your site (for example: English).','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4743,1,'en','plugins/language/language','locale','Locale','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4744,1,'en','plugins/language/language','locale_helper','Laravel Locale for the language (for example: <code>en</code>).','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4745,1,'en','plugins/language/language','language_code','Language code','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4746,1,'en','plugins/language/language','language_code_helper','Language code - preferably 2-letters ISO 639-1 (for example: en)','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4747,1,'en','plugins/language/language','text_direction','Text direction','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4748,1,'en','plugins/language/language','text_direction_helper','Choose the text direction for the language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4749,1,'en','plugins/language/language','left_to_right','Left to right','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4750,1,'en','plugins/language/language','right_to_left','Right to left','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4751,1,'en','plugins/language/language','flag','Flag','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4752,1,'en','plugins/language/language','flag_helper','Choose a flag for the language.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4753,1,'en','plugins/language/language','order','Order','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4754,1,'en','plugins/language/language','order_helper','Position of the language in the language switcher','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4755,1,'en','plugins/language/language','add_new_language','Add new language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4756,1,'en','plugins/language/language','code','Code','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4757,1,'en','plugins/language/language','default_language','Is default?','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4758,1,'en','plugins/language/language','actions','Actions','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4759,1,'en','plugins/language/language','translations','Translations','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4760,1,'en','plugins/language/language','edit','Edit','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4761,1,'en','plugins/language/language','edit_tooltip','Edit this language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4762,1,'en','plugins/language/language','delete','Delete','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4763,1,'en','plugins/language/language','delete_tooltip','Delete this language and all its associated data','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4764,1,'en','plugins/language/language','choose_default_language','Choose :language as default language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4765,1,'en','plugins/language/language','current_language','Current record\'s language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4766,1,'en','plugins/language/language','edit_related','Edit related language for this record','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4767,1,'en','plugins/language/language','add_language_for_item','Add other language version for this record','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4768,1,'en','plugins/language/language','settings','Settings','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4769,1,'en','plugins/language/language','language_hide_default','Hide default language from URL?','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4770,1,'en','plugins/language/language','language_display_flag_only','Flag only','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4771,1,'en','plugins/language/language','language_display_name_only','Name only','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4772,1,'en','plugins/language/language','language_display_all','Display all flag and name','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4773,1,'en','plugins/language/language','language_display','Language display','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4774,1,'en','plugins/language/language','switcher_display','Switcher language display','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4775,1,'en','plugins/language/language','language_switcher_display_dropdown','Dropdown','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4776,1,'en','plugins/language/language','language_switcher_display_list','List','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4777,1,'en','plugins/language/language','current_language_edit_notification','You are editing \"<strong class=\"current_language_text\">:language</strong>\" version','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4778,1,'en','plugins/language/language','confirm-change-language','Confirm change language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4779,1,'en','plugins/language/language','confirm-change-language-message','Do you really want to change language to \"<strong class=\"change_to_language_text\"></strong>\" ? This action will be override \"<strong class=\"change_to_language_text\"></strong>\" version if it\'s existed!','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4780,1,'en','plugins/language/language','confirm-change-language-btn','Confirm change','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4781,1,'en','plugins/language/language','hide_languages','Hide languages','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4782,1,'en','plugins/language/language','hide_languages_description','You can completely hide content in specific languages from visitors and search engines, but still view it yourself. This allows reviewing translations that are in progress.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4783,1,'en','plugins/language/language','hide_languages_helper_display_hidden','{0} All languages are currently displayed.|{1} :language is currently hidden to visitors.|[2, Inf] :language are currently hidden to visitors.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4784,1,'en','plugins/language/language','show_all','Show all','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4785,1,'en','plugins/language/language','change_language','Language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4786,1,'en','plugins/language/language','language_show_default_item_if_current_version_not_existed','Show item in default language if it is not existed in current language','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4787,1,'en','plugins/language/language','select_flag','Select a flag...','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4788,1,'en','plugins/language/language','delete_confirmation_message','Do you really want to delete this language? It also deletes all items in this language and cannot rollback!','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4789,1,'en','plugins/language/language','added_already','This language was added already!','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4790,1,'en','plugins/language/language','language_auto_detect_user_language','Auto detect user language?','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4791,1,'vi','plugins/language/language','name','Ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4792,1,'vi','plugins/language/language','choose_language','Chọn một ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4793,1,'vi','plugins/language/language','select_language','Chọn ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4794,1,'vi','plugins/language/language','choose_language_helper','Bạn có thể chọn 1 ngôn ngữ trong danh sách hoặc nhập trực tiếp nội dung xuống các mục dưới','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4795,1,'vi','plugins/language/language','language_name','Tên đầy đủ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4796,1,'vi','plugins/language/language','language_name_helper','Tên ngôn ngữ sẽ được hiển thị trên website (ví dụ: Tiếng Anh).','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4797,1,'vi','plugins/language/language','locale','Locale','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4798,1,'vi','plugins/language/language','locale_helper','Laravel Locale cho ngôn ngữ này (ví dụ: <code>en</code>).','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4799,1,'vi','plugins/language/language','language_code','Mã ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4800,1,'vi','plugins/language/language','language_code_helper','Mã ngôn ngữ - ưu tiên dạng 2-kí tự theo chuẩn ISO 639-1 (ví dụ: en)','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4801,1,'vi','plugins/language/language','text_direction','Hướng viết chữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4802,1,'vi','plugins/language/language','text_direction_helper','Chọn hướng viết chữ cho ngôn ngữ này','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4803,1,'vi','plugins/language/language','left_to_right','Trái qua phải','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4804,1,'vi','plugins/language/language','right_to_left','Phải qua trái','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4805,1,'vi','plugins/language/language','flag','Cờ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4806,1,'vi','plugins/language/language','flag_helper','Chọn 1 cờ cho ngôn ngữ này','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4807,1,'vi','plugins/language/language','order','Sắp xếp','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4808,1,'vi','plugins/language/language','order_helper','Vị trí của ngôn ngữ hiển thị trong mục chuyển đổi ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4809,1,'vi','plugins/language/language','add_new_language','Thêm ngôn ngữ mới','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4810,1,'vi','plugins/language/language','code','Mã','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4811,1,'vi','plugins/language/language','default_language','Ngôn ngữ mặc định','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4812,1,'vi','plugins/language/language','actions','Hành động','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4813,1,'vi','plugins/language/language','translations','Dịch','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4814,1,'vi','plugins/language/language','edit','Sửa','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4815,1,'vi','plugins/language/language','edit_tooltip','Sửa ngôn ngữ này','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4816,1,'vi','plugins/language/language','delete','Xóa','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4817,1,'vi','plugins/language/language','delete_tooltip','Xóa ngôn ngữ này và các dữ liệu liên quan','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4818,1,'vi','plugins/language/language','choose_default_language','Chọn :language làm ngôn ngữ mặc định','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4819,1,'vi','plugins/language/language','add_language_for_item','Thêm ngôn ngữ khác cho bản ghi này','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4820,1,'vi','plugins/language/language','current_language','Ngôn ngữ hiện tại của bản ghi','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4821,1,'vi','plugins/language/language','edit_related','Sửa bản ngôn ngữ khác của bản ghi này','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4822,1,'vi','plugins/language/language','confirm-change-language','Xác nhận thay đổi ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4823,1,'vi','plugins/language/language','confirm-change-language-btn','Xác nhận thay đổi','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4824,1,'vi','plugins/language/language','confirm-change-language-message','Bạn có chắc chắn muốn thay đổi ngôn ngữ sang tiếng \"<strong class=\"change_to_language_text\"></strong>\" ? Điều này sẽ ghi đè bản ghi tiếng \"<strong class=\"change_to_language_text\"></strong>\" nếu nó đã tồn tại!','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4825,1,'vi','plugins/language/language','current_language_edit_notification','Bạn đang chỉnh sửa phiên bản tiếng \"<strong class=\"current_language_text\">:language</strong>\"','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4826,1,'vi','plugins/language/language','hide_languages','Ẩn ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4827,1,'vi','plugins/language/language','hide_languages_description','Bạn có thể hoàn toàn ẩn ngôn ngữ cụ thể đối với người truy cập và công cụ tìm kiếm, nhưng sẽ vẫn hiển thị trong trang quản trị. Điều này cho phép bạn biết những ngôn ngữ nào đang được xử lý.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4828,1,'vi','plugins/language/language','hide_languages_helper_display_hidden','{0} Tất cả ngôn ngữ đang được hiển thị.|{1} :language đang bị ẩn đối với người truy cập.|[2, Inf] :language đang bị ẩn đối với người truy cập.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4829,1,'vi','plugins/language/language','language_display','Hiển thị ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4830,1,'vi','plugins/language/language','language_display_all','Hiển thị cả cờ và tên ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4831,1,'vi','plugins/language/language','language_display_flag_only','Chỉ hiển thị cờ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4832,1,'vi','plugins/language/language','language_display_name_only','Chỉ hiển thị tên','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4833,1,'vi','plugins/language/language','language_hide_default','Ẩn ngôn ngữ mặc định trên URL','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4834,1,'vi','plugins/language/language','language_switcher_display_dropdown','Dropdown','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4835,1,'vi','plugins/language/language','language_switcher_display_list','Danh sách','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4836,1,'vi','plugins/language/language','settings','Cài đặt','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4837,1,'vi','plugins/language/language','switcher_display','Hiển thị bộ chuyển đổi ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4838,1,'vi','plugins/language/language','change_language','Ngôn ngữ','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4839,1,'vi','plugins/language/language','show_all','Hiển thị tất cả','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4840,1,'vi','plugins/language/language','language_show_default_item_if_current_version_not_existed','Hiển thị bản ghi ở ngôn ngữ mặc định nếu phiên bản cho ngôn ngữ hiện tại chưa có','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4841,1,'en','plugins/location/bulk-import','name','Bulk Import','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4842,1,'en','plugins/location/bulk-import','loading_text','Importing','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4843,1,'en','plugins/location/bulk-import','imported_successfully','Imported successfully.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4844,1,'en','plugins/location/bulk-import','please_choose_the_file_mime','Please choose the file mime :types','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4845,1,'en','plugins/location/bulk-import','please_choose_the_file','Please choose the file','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4846,1,'en','plugins/location/bulk-import','start_import','Start Import','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4847,1,'en','plugins/location/bulk-import','note','Note!','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4848,1,'en','plugins/location/bulk-import','warning_before_importing','If this is your first time using this feature, please read the documentation or contact the Administrator for access to the correct functionality!','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4849,1,'en','plugins/location/bulk-import','results','Result: :success successes, :failed failures','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4850,1,'en','plugins/location/bulk-import','failures','Failures','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4851,1,'en','plugins/location/bulk-import','tables.import','Import','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4852,1,'en','plugins/location/bulk-import','template','Template','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4853,1,'en','plugins/location/bulk-import','rules','Rules','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4854,1,'en','plugins/location/bulk-import','choose_file_with_mime','Choose file with mime: (:types)','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4855,1,'en','plugins/location/bulk-import','choose_file','Choose file','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4856,1,'en','plugins/location/bulk-import','menu','Import locations','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4857,1,'en','plugins/location/bulk-import','download-csv-file','Download CSV template','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4858,1,'en','plugins/location/bulk-import','download-excel-file','Download Excel template','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4859,1,'en','plugins/location/bulk-import','downloading','Downloading...','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4860,1,'en','plugins/location/bulk-import','export.template.input_error','Input error','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4861,1,'en','plugins/location/bulk-import','export.template.number_not_allowed','Number is not allowed!','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4862,1,'en','plugins/location/bulk-import','export.template.allowed_input','Allowed input','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4863,1,'en','plugins/location/bulk-import','export.template.prompt_decimal','Only numbers or decimals are accepted and greater than or equal to :min.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4864,1,'en','plugins/location/bulk-import','export.template.prompt_whole_number','Only numbers are accepted and greater than or equal to :min.','2023-01-22 08:10:50','2023-01-22 08:10:50'),(4865,1,'en','plugins/location/bulk-import','export.template.prompt_list','Please pick a value from the drop-down list.','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4866,1,'en','plugins/location/bulk-import','export.template.pick_from_list','Pick from list','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4867,1,'en','plugins/location/bulk-import','export.template.value_not_in_list','Value is not in list.','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4868,1,'en','plugins/location/bulk-import','export.template.max_text_length','Max text length','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4869,1,'en','plugins/location/bulk-import','export.template.prompt_max_text_length','Only accept text with length less than or equal to :max.','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4870,1,'en','plugins/location/bulk-import','import_failed_description','Import failed, please check the errors below!','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4871,1,'en','plugins/location/bulk-import','available_enable_multi_language','Only available when you enable \"Is Multi Language?\"','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4872,1,'en','plugins/location/bulk-import','import_type_required_if','The :attribute field is required when \"Import Type\" is :value.','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4873,1,'en','plugins/location/bulk-import','import_available_data','Import available data','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4874,1,'en','plugins/location/bulk-import','import','Import','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4875,1,'en','plugins/location/bulk-import','import_available_data_confirmation','Import available data confirmation','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4876,1,'en','plugins/location/bulk-import','import_available_data_confirmation_content','Do you really want to import states/cities for this country?','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4877,1,'en','plugins/location/city','name','Cities','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4878,1,'en','plugins/location/city','create','New city','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4879,1,'en','plugins/location/city','edit','Edit city','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4880,1,'en','plugins/location/city','state','State','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4881,1,'en','plugins/location/city','select_state','Select state...','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4882,1,'en','plugins/location/city','select_city','Select city...','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4883,1,'en','plugins/location/city','country','Country','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4884,1,'en','plugins/location/city','select_country','Select country...','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4885,1,'en','plugins/location/city','city','City','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4886,1,'en','plugins/location/country','name','Countries','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4887,1,'en','plugins/location/country','create','New country','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4888,1,'en','plugins/location/country','edit','Edit country','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4889,1,'en','plugins/location/country','nationality','Nationality','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4890,1,'en','plugins/location/country','code','Country ISO code','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4891,1,'en','plugins/location/country','code_placeholder','ISO country code, uppercase. Ex: US.','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4892,1,'en','plugins/location/country','code_helper','Find country ISO code from here: https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4893,1,'en','plugins/location/location','name','Locations','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4894,1,'en','plugins/location/location','create','New location','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4895,1,'en','plugins/location/location','edit','Edit location','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4896,1,'en','plugins/location/location','all_states','All states','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4897,1,'en','plugins/location/location','abbreviation','Abbreviation','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4898,1,'en','plugins/location/location','abbreviation_placeholder','E.g: CA','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4899,1,'en','plugins/location/location','exporting','Exporting','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4900,1,'en','plugins/location/location','total_country','Total countries','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4901,1,'en','plugins/location/location','total_state','Total states','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4902,1,'en','plugins/location/location','total_city','Total cities','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4903,1,'en','plugins/location/location','export_location','Export location','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4904,1,'en','plugins/location/location','start_export','Start exporting','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4905,1,'en','plugins/location/state','name','States','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4906,1,'en','plugins/location/state','create','New state','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4907,1,'en','plugins/location/state','edit','Edit state','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4908,1,'en','plugins/location/state','country','Country','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4909,1,'en','plugins/location/state','select_country','Select a country...','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4910,1,'en','plugins/location/state','state','State','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4911,1,'en','plugins/newsletter/newsletter','name','Newsletters','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4912,1,'en','plugins/newsletter/newsletter','settings.email.templates.title','Newsletter','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4913,1,'en','plugins/newsletter/newsletter','settings.email.templates.description','Config newsletter email templates','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4914,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.title','Email send to admin','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4915,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_admin.description','Template for sending email to admin','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4916,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.title','Email send to user','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4917,1,'en','plugins/newsletter/newsletter','settings.email.templates.to_user.description','Template for sending email to subscriber','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4918,1,'en','plugins/newsletter/newsletter','settings.title','Newsletter','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4919,1,'en','plugins/newsletter/newsletter','settings.description','Settings for newsletter','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4920,1,'en','plugins/newsletter/newsletter','settings.mailchimp_api_key','Mailchimp API Key','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4921,1,'en','plugins/newsletter/newsletter','settings.mailchimp_list_id','Mailchimp List ID','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4922,1,'en','plugins/newsletter/newsletter','settings.mailchimp_list','Mailchimp List','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4923,1,'en','plugins/newsletter/newsletter','settings.sendgrid_api_key','Sendgrid API Key','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4924,1,'en','plugins/newsletter/newsletter','settings.sendgrid_list_id','Sendgrid List ID','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4925,1,'en','plugins/newsletter/newsletter','settings.sendgrid_list','Sendgrid List','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4926,1,'en','plugins/newsletter/newsletter','statuses.subscribed','Subscribed','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4927,1,'en','plugins/newsletter/newsletter','statuses.unsubscribed','Unsubscribed','2023-01-22 08:10:51','2023-01-22 08:10:51'),(4928,1,'en','plugins/payment/payment','payments','Payments','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4929,1,'en','plugins/payment/payment','checkout_success','Checkout successfully!','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4930,1,'en','plugins/payment/payment','view_payment','View payment #','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4931,1,'en','plugins/payment/payment','charge_id','Charge ID','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4932,1,'en','plugins/payment/payment','amount','Amount','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4933,1,'en','plugins/payment/payment','currency','Currency','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4934,1,'en','plugins/payment/payment','user','User','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4935,1,'en','plugins/payment/payment','stripe','Stripe','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4936,1,'en','plugins/payment/payment','paypal','PayPal','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4937,1,'en','plugins/payment/payment','action','Action','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4938,1,'en','plugins/payment/payment','payment_via_card','Payment via card','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4939,1,'en','plugins/payment/payment','card_number','Card number','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4940,1,'en','plugins/payment/payment','full_name','Full name','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4941,1,'en','plugins/payment/payment','payment_via_paypal','Fast and safe online payment via PayPal.','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4942,1,'en','plugins/payment/payment','mm_yy','MM/YY','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4943,1,'en','plugins/payment/payment','cvc','CVC','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4944,1,'en','plugins/payment/payment','details','Details','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4945,1,'en','plugins/payment/payment','payer_name','Payer Name','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4946,1,'en','plugins/payment/payment','email','Email','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4947,1,'en','plugins/payment/payment','phone','Phone','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4948,1,'en','plugins/payment/payment','country','Country','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4949,1,'en','plugins/payment/payment','shipping_address','Shipping Address','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4950,1,'en','plugins/payment/payment','payment_details','Payment Details','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4951,1,'en','plugins/payment/payment','card','Card','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4952,1,'en','plugins/payment/payment','address','Address','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4953,1,'en','plugins/payment/payment','could_not_get_stripe_token','Could not get Stripe token to make a charge.','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4954,1,'en','plugins/payment/payment','payment_id','Payment ID','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4955,1,'en','plugins/payment/payment','payment_methods','Payment methods','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4956,1,'en','plugins/payment/payment','transactions','Transactions','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4957,1,'en','plugins/payment/payment','payment_methods_description','Setup payment methods for website','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4958,1,'en','plugins/payment/payment','paypal_description','Customer can buy product and pay directly via PayPal','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4959,1,'en','plugins/payment/payment','use','Use','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4960,1,'en','plugins/payment/payment','stripe_description','Customer can buy product and pay directly using Visa, Credit card via Stripe','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4961,1,'en','plugins/payment/payment','edit','Edit','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4962,1,'en','plugins/payment/payment','settings','Settings','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4963,1,'en','plugins/payment/payment','activate','Activate','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4964,1,'en','plugins/payment/payment','deactivate','Deactivate','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4965,1,'en','plugins/payment/payment','update','Update','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4966,1,'en','plugins/payment/payment','configuration_instruction','Configuration instruction for :name','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4967,1,'en','plugins/payment/payment','configuration_requirement','To use :name, you need','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4968,1,'en','plugins/payment/payment','service_registration','Register with :name','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4969,1,'en','plugins/payment/payment','after_service_registration_msg','After registration at :name, you will have Client ID, Client Secret','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4970,1,'en','plugins/payment/payment','enter_client_id_and_secret','Enter Client ID, Secret into the box in right hand','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4971,1,'en','plugins/payment/payment','method_name','Method name','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4972,1,'en','plugins/payment/payment','please_provide_information','Please provide information','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4973,1,'en','plugins/payment/payment','client_id','Client ID','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4974,1,'en','plugins/payment/payment','client_secret','Client Secret','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4975,1,'en','plugins/payment/payment','secret','Secret','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4976,1,'en','plugins/payment/payment','stripe_key','Stripe Public Key','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4977,1,'en','plugins/payment/payment','stripe_secret','Stripe Private Key','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4978,1,'en','plugins/payment/payment','stripe_after_service_registration_msg','After registration at :name, you will have Public, Secret keys','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4979,1,'en','plugins/payment/payment','stripe_enter_client_id_and_secret','Enter Public, Secret keys into the box in right hand','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4980,1,'en','plugins/payment/payment','pay_online_via','Pay online via :name','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4981,1,'en','plugins/payment/payment','sandbox_mode','Sandbox mode','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4982,1,'en','plugins/payment/payment','deactivate_payment_method','Deactivate payment method','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4983,1,'en','plugins/payment/payment','deactivate_payment_method_description','Do you really want to deactivate this payment method?','2023-01-22 08:10:52','2023-01-22 08:10:52'),(4984,1,'en','plugins/payment/payment','agree','Agree','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4985,1,'en','plugins/payment/payment','name','Payments','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4986,1,'en','plugins/payment/payment','create','New payment','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4987,1,'en','plugins/payment/payment','go_back','Go back','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4988,1,'en','plugins/payment/payment','information','Information','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4989,1,'en','plugins/payment/payment','methods.paypal','PayPal','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4990,1,'en','plugins/payment/payment','methods.cod','Cash on delivery (COD)','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4991,1,'en','plugins/payment/payment','methods.bank_transfer','Bank transfer','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4992,1,'en','plugins/payment/payment','statuses.pending','Pending','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4993,1,'en','plugins/payment/payment','statuses.completed','Completed','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4994,1,'en','plugins/payment/payment','statuses.refunding','Refunding','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4995,1,'en','plugins/payment/payment','statuses.refunded','Refunded','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4996,1,'en','plugins/payment/payment','statuses.fraud','Fraud','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4997,1,'en','plugins/payment/payment','statuses.failed','Failed','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4998,1,'en','plugins/payment/payment','payment_methods_instruction','Guide customers to pay directly. You can choose to pay by delivery or bank transfer','2023-01-22 08:10:53','2023-01-22 08:10:53'),(4999,1,'en','plugins/payment/payment','payment_method_description','Payment guide - (Displayed on the notice of successful purchase and payment page)','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5000,1,'en','plugins/payment/payment','payment_via_cod','Cash on delivery (COD)','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5001,1,'en','plugins/payment/payment','payment_via_bank_transfer','Bank transfer','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5002,1,'en','plugins/payment/payment','payment_pending','Checkout successfully. Your payment is pending and will be checked by our staff.','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5003,1,'en','plugins/payment/payment','created_at','Created At','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5004,1,'en','plugins/payment/payment','payment_channel','Payment Channel','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5005,1,'en','plugins/payment/payment','total','Total','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5006,1,'en','plugins/payment/payment','status','Status','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5007,1,'en','plugins/payment/payment','default_payment_method','Default payment method','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5008,1,'en','plugins/payment/payment','turn_off_success','Turn off payment method successfully!','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5009,1,'en','plugins/payment/payment','saved_payment_method_success','Saved payment method successfully!','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5010,1,'en','plugins/payment/payment','saved_payment_settings_success','Saved payment settings successfully!','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5011,1,'en','plugins/payment/payment','payment_name','Name','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5012,1,'en','plugins/payment/payment','payment_not_found','Payment not found!','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5013,1,'en','plugins/payment/payment','refunds.title','Refunds','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5014,1,'en','plugins/payment/payment','refunds.id','ID','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5015,1,'en','plugins/payment/payment','refunds.breakdowns','Breakdowns','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5016,1,'en','plugins/payment/payment','refunds.gross_amount','Gross amount','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5017,1,'en','plugins/payment/payment','refunds.paypal_fee','PayPal fee','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5018,1,'en','plugins/payment/payment','refunds.net_amount','Net amount','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5019,1,'en','plugins/payment/payment','refunds.total_refunded_amount','Total refunded amount','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5020,1,'en','plugins/payment/payment','refunds.create_time','Create time','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5021,1,'en','plugins/payment/payment','refunds.update_time','Update time','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5022,1,'en','plugins/payment/payment','refunds.status','Status','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5023,1,'en','plugins/payment/payment','refunds.description','Description','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5024,1,'en','plugins/payment/payment','refunds.refunded_at','Refunded at','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5025,1,'en','plugins/payment/payment','refunds.error_message','Error message','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5026,1,'en','plugins/payment/payment','view_response_source','View response source','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5027,1,'en','plugins/payment/payment','status_is_not_completed','Status is not COMPLETED','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5028,1,'en','plugins/payment/payment','cannot_found_capture_id','Can not found capture id with payment detail','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5029,1,'en','plugins/payment/payment','amount_refunded','Amount refunded','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5030,1,'en','plugins/payment/payment','amount_remaining','Amount remaining','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5031,1,'en','plugins/payment/payment','paid_at','Paid At','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5032,1,'en','plugins/payment/payment','invalid_settings','Settings for :name are invalid!','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5033,1,'en','plugins/payment/payment','view_transaction','Transaction \":charge_id\"','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5034,1,'en','plugins/payment/payment','payment_description','Pay for your order #:order_id at :site_url','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5035,1,'en','plugins/social-login/social-login','settings.title','Social Login settings','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5036,1,'en','plugins/social-login/social-login','settings.description','Configure social login options','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5037,1,'en','plugins/social-login/social-login','settings.facebook.title','Facebook login settings','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5038,1,'en','plugins/social-login/social-login','settings.facebook.description','Enable/disable & configure app credentials for Facebook login','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5039,1,'en','plugins/social-login/social-login','settings.facebook.app_id','App ID','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5040,1,'en','plugins/social-login/social-login','settings.facebook.app_secret','App Secret','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5041,1,'en','plugins/social-login/social-login','settings.facebook.helper','Please go to https://developers.facebook.com to create new app update App ID, App Secret. Callback URL is :callback','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5042,1,'en','plugins/social-login/social-login','settings.google.title','Google login settings','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5043,1,'en','plugins/social-login/social-login','settings.google.description','Enable/disable & configure app credentials for Google login','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5044,1,'en','plugins/social-login/social-login','settings.google.app_id','App ID','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5045,1,'en','plugins/social-login/social-login','settings.google.app_secret','App Secret','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5046,1,'en','plugins/social-login/social-login','settings.google.helper','Please go to https://console.developers.google.com/apis/dashboard to create new app update App ID, App Secret. Callback URL is :callback','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5047,1,'en','plugins/social-login/social-login','settings.github.title','Github login settings','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5048,1,'en','plugins/social-login/social-login','settings.github.description','Enable/disable & configure app credentials for Github login','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5049,1,'en','plugins/social-login/social-login','settings.github.app_id','App ID','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5050,1,'en','plugins/social-login/social-login','settings.github.app_secret','App Secret','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5051,1,'en','plugins/social-login/social-login','settings.github.helper','Please go to https://github.com/settings/developers to create new app update App ID, App Secret. Callback URL is :callback','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5052,1,'en','plugins/social-login/social-login','settings.linkedin.title','Linkedin login settings','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5053,1,'en','plugins/social-login/social-login','settings.linkedin.description','Enable/disable & configure app credentials for Linkedin login','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5054,1,'en','plugins/social-login/social-login','settings.linkedin.app_id','App ID','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5055,1,'en','plugins/social-login/social-login','settings.linkedin.app_secret','App Secret','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5056,1,'en','plugins/social-login/social-login','settings.linkedin.helper','Please go to https://www.linkedin.com/developers/apps/new to create new app update App ID, App Secret. Callback URL is :callback','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5057,1,'en','plugins/social-login/social-login','settings.enable','Enable?','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5058,1,'en','plugins/social-login/social-login','menu','Social Login','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5059,1,'en','plugins/testimonial/testimonial','name','Testimonials','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5060,1,'en','plugins/testimonial/testimonial','create','New testimonial','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5061,1,'en','plugins/testimonial/testimonial','edit','Edit testimonial','2023-01-22 08:10:53','2023-01-22 08:10:53'),(5062,1,'en','plugins/testimonial/testimonial','company','Position/Company','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5063,1,'en','plugins/translation/translation','translations','Translations','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5064,1,'en','plugins/translation/translation','translations_description','Translate all words in system.','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5065,1,'en','plugins/translation/translation','export_warning','Warning, translations are not visible until they are exported back to the :lang_path file, using \'php artisan cms:translations:export\' command or publish button.','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5066,1,'en','plugins/translation/translation','import_done','Done importing, processed :counter items! Reload this page to refresh the groups!','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5067,1,'en','plugins/translation/translation','translation_manager','Translations Manager','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5068,1,'en','plugins/translation/translation','done_publishing','Done publishing the translations for group','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5069,1,'en','plugins/translation/translation','append_translation','Append new translations','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5070,1,'en','plugins/translation/translation','replace_translation','Replace existing translations','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5071,1,'en','plugins/translation/translation','import_group','Import group','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5072,1,'en','plugins/translation/translation','confirm_publish_group','Are you sure you want to publish the translations group \":group\"? This will overwrite existing language files.','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5073,1,'en','plugins/translation/translation','publish_translations','Publish translations','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5074,1,'en','plugins/translation/translation','back','Back','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5075,1,'en','plugins/translation/translation','edit_title','Enter translation','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5076,1,'en','plugins/translation/translation','choose_group_msg','Choose a group to display the group translations. If no groups are visible, make sure you have imported the translations.','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5077,1,'en','plugins/translation/translation','choose_a_group','Choose a group','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5078,1,'en','plugins/translation/translation','locales','Locales','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5079,1,'en','plugins/translation/translation','theme-translations','Theme translations','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5080,1,'en','plugins/translation/translation','admin-translations','Other translations','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5081,1,'en','plugins/translation/translation','translate_from','Translate from','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5082,1,'en','plugins/translation/translation','to','to','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5083,1,'en','plugins/translation/translation','no_other_languages','No other language to translate!','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5084,1,'en','plugins/translation/translation','edit','Edit','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5085,1,'en','plugins/translation/translation','locale','Locale','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5086,1,'en','plugins/translation/translation','locale_placeholder','Ex: en','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5087,1,'en','plugins/translation/translation','name','Name','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5088,1,'en','plugins/translation/translation','default_locale','Default locale?','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5089,1,'en','plugins/translation/translation','actions','Actions','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5090,1,'en','plugins/translation/translation','choose_language','Choose language','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5091,1,'en','plugins/translation/translation','add_new_language','Add new language','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5092,1,'en','plugins/translation/translation','select_language','Select language','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5093,1,'en','plugins/translation/translation','flag','Flag','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5094,1,'en','plugins/translation/translation','folder_is_not_writeable','Cannot write files! Folder :lang_path is not writable. Please chmod to make it writable!','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5095,1,'en','plugins/translation/translation','delete','Delete','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5096,1,'en','plugins/translation/translation','confirm_delete_message','Do you really want to delete this locale? It will delete all files/folders for this local in :lang_path!','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5097,1,'en','plugins/translation/translation','download','Download','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5098,1,'en','plugins/translation/translation','select_locale','Select locale','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5099,1,'en','plugins/translation/translation','theme_translations_instruction','Click on text to translate. Do NOT translate variables, Eg. :username, :query, :link...','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5100,1,'en','plugins/translation/translation','import_available_locale','Or import available locale from our GitHub repository','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5101,1,'en','plugins/translation/translation','add_new_locale','Add new locale','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5102,1,'en','plugins/translation/translation','download_locale','Download locale','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5103,1,'en','plugins/translation/translation','import_available_locale_confirmation','Download locale from GitHub','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5104,1,'en','plugins/translation/translation','import_available_locale_confirmation_content','Are you sure you want to download this locale? It will be downloaded into :lang_path, you can delete it later if you want.','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5105,1,'en','plugins/translation/translation','is_default','Is default?','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5106,1,'vi','plugins/translation/translation','append_translation','Tiếp nối bản dịch','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5107,1,'vi','plugins/translation/translation','back','Quay lại','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5108,1,'vi','plugins/translation/translation','choose_a_group','Chọn một nhóm','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5109,1,'vi','plugins/translation/translation','choose_group_msg','Chọn một nhóm để hiển thị nhóm dịch thuật. Nếu nhóm không có sẵn, hãy chắc chắn là bạn đã chạy migrations và nhập dữ liệu dịch thuật.','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5110,1,'vi','plugins/translation/translation','confirm_publish_group','Bạn có chắc muốn xuất bản nhóm \":group\"? Điều này sẽ ghi đè tập tin ngôn ngữ hiện tại.','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5111,1,'vi','plugins/translation/translation','done_publishing','Xuất bản nhóm dịch thuật thành công','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5112,1,'vi','plugins/translation/translation','edit_title','Nhập nội dung dịch','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5113,1,'vi','plugins/translation/translation','export_warning','Cảnh báo, bản dịch sẽ không có sẵn cho đến khi chúng được xuất bản lại vào thư mục :lang_path, sử dụng lệnh \'php artisan cms:translations:export\' hoặc sử dụng nút xuất bản','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5114,1,'vi','plugins/translation/translation','import_done','Nhập hoàn thành, đã xử lý :counter bản ghi! ','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5115,1,'vi','plugins/translation/translation','import_group','Nhập nhóm','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5116,1,'vi','plugins/translation/translation','publish_translations','Xuất bản dịch thuật','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5117,1,'vi','plugins/translation/translation','replace_translation','Thay thế bản dịch hiện tại','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5118,1,'vi','plugins/translation/translation','translation_manager','Quản lý dịch thuật','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5119,1,'vi','plugins/translation/translation','translations','Dịch thuật','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5120,1,'vi','plugins/translation/translation','translations_description','Dịch tất cả các từ trong hệ thống','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5121,1,'vi','plugins/translation/translation','actions','Hành động','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5122,1,'vi','plugins/translation/translation','add_new_language','Thêm ngôn ngữ mới','2023-01-22 08:10:54','2023-01-22 08:10:54'),(5123,1,'vi','plugins/translation/translation','admin-translations','Dịch các mục khác','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5124,1,'vi','plugins/translation/translation','choose_language','Chọn ngôn ngữ','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5125,1,'vi','plugins/translation/translation','default_locale','Ngôn ngữ mặc định','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5126,1,'vi','plugins/translation/translation','delete','Xóa','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5127,1,'vi','plugins/translation/translation','edit','Sửa','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5128,1,'vi','plugins/translation/translation','flag','Cờ','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5129,1,'vi','plugins/translation/translation','locale','Ngôn ngữ','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5130,1,'vi','plugins/translation/translation','locales','Ngôn ngữ','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5131,1,'vi','plugins/translation/translation','name','Tên','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5132,1,'vi','plugins/translation/translation','no_other_languages','Không còn ngôn ngữ nào khác để dịch!','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5133,1,'vi','plugins/translation/translation','select_language','Lựa chọn ngôn ngữ','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5134,1,'vi','plugins/translation/translation','theme-translations','Dịch giao diện','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5135,1,'vi','plugins/translation/translation','to','sang','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5136,1,'vi','plugins/translation/translation','translate_from','Dịch từ','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5137,1,'vi','plugins/analytics','avg_duration','Trung bình','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5138,1,'vi','plugins/analytics','bounce_rate','Tỉ lệ thoát','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5139,1,'vi','plugins/analytics','page_session','Trang/Phiên','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5140,1,'vi','plugins/analytics','pageviews','Lượt xem','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5141,1,'vi','plugins/analytics','sessions','Phiên','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5142,1,'vi','plugins/analytics','views','lượt xem','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5143,1,'vi','plugins/analytics','visitors','Người truy cập','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5144,1,'vi','plugins/analytics','visits','lượt ghé thăm','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5145,1,'vi','plugins/analytics','credential_is_not_valid','Thông tin cài đặt không hợp lệ. Tài liệu hướng dẫn tại đây: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5146,1,'vi','plugins/analytics','new_users','Lượt khách mới','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5147,1,'vi','plugins/analytics','percent_new_session','Tỉ lệ khách mới','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5148,1,'vi','plugins/analytics','start_date_can_not_before_end_date','Ngày bắt đầu :start_date không thể sau ngày kết thúc :end_date','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5149,1,'vi','plugins/analytics','view_id_not_specified','Bạn phải cung cấp View ID hợp lê. Tài liệu hướng dẫn tại đây: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5150,1,'vi','plugins/analytics','wrong_configuration','Để xem dữ liệu thống kê Google Analytics, bạn cần lấy thông tin Client ID và thêm nó vào trong phần cài đặt. Bạn cũng cần thông tin xác thực dạng JSON. Tài liệu hướng dẫn tại đây: <a href=\"https://docs.botble.com/cms/master/plugin-analytics\" target=\"_blank\">https://docs.botble.com/cms/master/plugin-analytics</a>','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5151,1,'vi','plugins/analytics','settings.title','Google Analytics','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5152,1,'vi','plugins/analytics','settings.description','Config Credentials for Google Analytics','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5153,1,'vi','plugins/analytics','settings.tracking_code','Tracking Code','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5154,1,'vi','plugins/analytics','settings.tracking_code_placeholder','Example: GA-12586526-8','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5155,1,'vi','plugins/analytics','settings.view_id','View ID','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5156,1,'vi','plugins/analytics','settings.view_id_description','Google Analytics View ID','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5157,1,'vi','plugins/analytics','settings.json_credential','Service Account Credentials','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5158,1,'vi','plugins/analytics','settings.json_credential_description','Service Account Credentials','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5159,1,'vi','plugins/analytics','widget_analytics_browser','Trình duyệt truy cập nhiều','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5160,1,'vi','plugins/analytics','widget_analytics_general','Thống kê truy cập','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5161,1,'vi','plugins/analytics','widget_analytics_page','Trang được xem nhiều nhất','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5162,1,'vi','plugins/analytics','widget_analytics_referrer','Trang giới thiệu nhiều','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5163,1,'en','setting/setting','title','Settings','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5164,1,'en','setting/setting','email_setting_title','Email settings','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5165,1,'en','setting/setting','general.theme','Theme','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5166,1,'en','setting/setting','general.description','Setting site information','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5167,1,'en','setting/setting','general.title','General','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5168,1,'en','setting/setting','general.general_block','General Information','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5169,1,'en','setting/setting','general.rich_editor','Rich Editor','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5170,1,'en','setting/setting','general.site_title','Site title','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5171,1,'en','setting/setting','general.admin_email','Admin Email','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5172,1,'en','setting/setting','general.seo_block','SEO Configuration','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5173,1,'en','setting/setting','general.seo_title','SEO Title','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5174,1,'en','setting/setting','general.seo_description','SEO Description','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5175,1,'en','setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5176,1,'en','setting/setting','general.google_site_verification','Google site verification','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5177,1,'en','setting/setting','general.placeholder.site_title','Site Title (maximum 120 characters)','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5178,1,'en','setting/setting','general.placeholder.admin_email','Admin Email','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5179,1,'en','setting/setting','general.placeholder.seo_title','SEO Title (maximum 120 characters)','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5180,1,'en','setting/setting','general.placeholder.seo_description','SEO Description (maximum 120 characters)','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5181,1,'en','setting/setting','general.placeholder.google_analytics','Google Analytics','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5182,1,'en','setting/setting','general.placeholder.google_site_verification','Google Site Verification','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5183,1,'en','setting/setting','general.cache_admin_menu','Cache admin menu?','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5184,1,'en','setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5185,1,'en','setting/setting','general.time_zone','Timezone','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5186,1,'en','setting/setting','general.default_admin_theme','Default admin theme','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5187,1,'en','setting/setting','general.enable_change_admin_theme','Enable change admin theme?','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5188,1,'en','setting/setting','general.enable','Enable','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5189,1,'en','setting/setting','general.disable','Disable','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5190,1,'en','setting/setting','general.enable_cache','Enable cache?','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5191,1,'en','setting/setting','general.cache_time','Cache time (minutes)','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5192,1,'en','setting/setting','general.cache_time_site_map','Cache Time Site map','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5193,1,'en','setting/setting','general.admin_logo','Admin logo','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5194,1,'en','setting/setting','general.admin_favicon','Admin favicon','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5195,1,'en','setting/setting','general.admin_title','Admin title','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5196,1,'en','setting/setting','general.admin_title_placeholder','Title show to tab of browser','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5197,1,'en','setting/setting','general.cache_block','Cache','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5198,1,'en','setting/setting','general.admin_appearance_title','Admin appearance','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5199,1,'en','setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5200,1,'en','setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5201,1,'en','setting/setting','general.webmaster_tools_description','Google Webmaster Tools (GWT) is free software that helps you manage the technical side of your website','2023-01-22 08:10:55','2023-01-22 08:10:55'),(5202,1,'en','setting/setting','general.cache_description','Config cache for system for optimize speed','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5203,1,'en','setting/setting','general.yes','Yes','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5204,1,'en','setting/setting','general.no','No','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5205,1,'en','setting/setting','general.show_on_front','Your homepage displays','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5206,1,'en','setting/setting','general.select','— Select —','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5207,1,'en','setting/setting','general.show_site_name','Show site name after page title, separate with \"-\"?','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5208,1,'en','setting/setting','general.locale','Site language','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5209,1,'en','setting/setting','general.locale_direction','Front site language direction','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5210,1,'en','setting/setting','general.admin_locale_direction','Admin language direction','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5211,1,'en','setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5212,1,'en','setting/setting','email.subject','Subject','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5213,1,'en','setting/setting','email.content','Content','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5214,1,'en','setting/setting','email.title','Setting for email template','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5215,1,'en','setting/setting','email.description','Email template using HTML & system variables.','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5216,1,'en','setting/setting','email.reset_to_default','Reset to default','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5217,1,'en','setting/setting','email.back','Back to settings','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5218,1,'en','setting/setting','email.reset_success','Reset back to default successfully','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5219,1,'en','setting/setting','email.confirm_reset','Confirm reset email template?','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5220,1,'en','setting/setting','email.confirm_message','Do you really want to reset this email template to default?','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5221,1,'en','setting/setting','email.continue','Continue','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5222,1,'en','setting/setting','email.sender_name','Sender name','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5223,1,'en','setting/setting','email.sender_name_placeholder','Name','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5224,1,'en','setting/setting','email.sender_email','Sender email','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5225,1,'en','setting/setting','email.mailer','Mailer','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5226,1,'en','setting/setting','email.port','Port','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5227,1,'en','setting/setting','email.port_placeholder','Ex: 587','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5228,1,'en','setting/setting','email.host','Host','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5229,1,'en','setting/setting','email.host_placeholder','Ex: smtp.gmail.com','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5230,1,'en','setting/setting','email.username','Username','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5231,1,'en','setting/setting','email.username_placeholder','Username to login to mail server','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5232,1,'en','setting/setting','email.password','Password','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5233,1,'en','setting/setting','email.password_placeholder','Password to login to mail server','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5234,1,'en','setting/setting','email.encryption','Encryption','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5235,1,'en','setting/setting','email.mail_gun_domain','Domain','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5236,1,'en','setting/setting','email.mail_gun_domain_placeholder','Domain','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5237,1,'en','setting/setting','email.mail_gun_secret','Secret','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5238,1,'en','setting/setting','email.mail_gun_secret_placeholder','Secret','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5239,1,'en','setting/setting','email.mail_gun_endpoint','Endpoint','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5240,1,'en','setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5241,1,'en','setting/setting','email.log_channel','Log channel','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5242,1,'en','setting/setting','email.sendmail_path','Sendmail Path','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5243,1,'en','setting/setting','email.encryption_placeholder','Encryption: ssl or tls','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5244,1,'en','setting/setting','email.ses_key','Key','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5245,1,'en','setting/setting','email.ses_key_placeholder','Key','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5246,1,'en','setting/setting','email.ses_secret','Secret','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5247,1,'en','setting/setting','email.ses_secret_placeholder','Secret','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5248,1,'en','setting/setting','email.ses_region','Region','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5249,1,'en','setting/setting','email.ses_region_placeholder','Region','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5250,1,'en','setting/setting','email.postmark_token','Token','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5251,1,'en','setting/setting','email.postmark_token_placeholder','Token','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5252,1,'en','setting/setting','email.template_title','Email templates','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5253,1,'en','setting/setting','email.template_description','Base templates for all emails','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5254,1,'en','setting/setting','email.template_header','Email template header','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5255,1,'en','setting/setting','email.template_header_description','Template for header of emails','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5256,1,'en','setting/setting','email.template_footer','Email template footer','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5257,1,'en','setting/setting','email.template_footer_description','Template for footer of emails','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5258,1,'en','setting/setting','email.default','Default','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5259,1,'en','setting/setting','email.using_queue_to_send_mail','Using queue job to send emails (Must to setup Queue first https://laravel.com/docs/queues#supervisor-configuration)','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5260,1,'en','setting/setting','media.title','Media','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5261,1,'en','setting/setting','media.driver','Driver','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5262,1,'en','setting/setting','media.description','Settings for media','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5263,1,'en','setting/setting','media.aws_access_key_id','AWS Access Key ID','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5264,1,'en','setting/setting','media.aws_secret_key','AWS Secret Key','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5265,1,'en','setting/setting','media.aws_default_region','AWS Default Region','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5266,1,'en','setting/setting','media.aws_bucket','AWS Bucket','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5267,1,'en','setting/setting','media.aws_url','AWS URL','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5268,1,'en','setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5269,1,'en','setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5270,1,'en','setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2023-01-22 08:10:56','2023-01-22 08:10:56'),(5271,1,'en','setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5272,1,'en','setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5273,1,'en','setting/setting','media.do_spaces_cdn_enabled','Is DO Spaces CDN enabled?','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5274,1,'en','setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5275,1,'en','setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://your-custom-domain.com','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5276,1,'en','setting/setting','media.wasabi_access_key_id','Wasabi Access Key ID','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5277,1,'en','setting/setting','media.wasabi_secret_key','Wasabi Secret Key','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5278,1,'en','setting/setting','media.wasabi_default_region','Wasabi Default Region','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5279,1,'en','setting/setting','media.wasabi_bucket','Wasabi Bucket','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5280,1,'en','setting/setting','media.wasabi_root','Wasabi Root','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5281,1,'en','setting/setting','media.default_placeholder_image','Default placeholder image','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5282,1,'en','setting/setting','media.enable_chunk','Enable chunk size upload?','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5283,1,'en','setting/setting','media.chunk_size','Chunk size (Bytes)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5284,1,'en','setting/setting','media.chunk_size_placeholder','Default: 1048576 ~ 1MB','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5285,1,'en','setting/setting','media.max_file_size','Chunk max file size (MB)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5286,1,'en','setting/setting','media.max_file_size_placeholder','Default: 1048576 ~ 1GB','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5287,1,'en','setting/setting','media.enable_watermark','Enable watermark?','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5288,1,'en','setting/setting','media.watermark_source','Watermark image','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5289,1,'en','setting/setting','media.watermark_size','Size of watermark (%)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5290,1,'en','setting/setting','media.watermark_size_placeholder','Default: 10 (%)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5291,1,'en','setting/setting','media.watermark_opacity','Watermark Opacity (%)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5292,1,'en','setting/setting','media.watermark_opacity_placeholder','Default: 70 (%)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5293,1,'en','setting/setting','media.watermark_position','Watermark position','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5294,1,'en','setting/setting','media.watermark_position_x','Watermark position X','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5295,1,'en','setting/setting','media.watermark_position_y','Watermark position Y','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5296,1,'en','setting/setting','media.watermark_position_top_left','Top left','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5297,1,'en','setting/setting','media.watermark_position_top_right','Top right','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5298,1,'en','setting/setting','media.watermark_position_bottom_left','Bottom left','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5299,1,'en','setting/setting','media.watermark_position_bottom_right','Bottom right','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5300,1,'en','setting/setting','media.watermark_position_center','Center','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5301,1,'en','setting/setting','license.purchase_code','Purchase code','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5302,1,'en','setting/setting','license.buyer','Buyer','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5303,1,'en','setting/setting','field_type_not_exists','This field type does not exist','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5304,1,'en','setting/setting','save_settings','Save settings','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5305,1,'en','setting/setting','template','Template','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5306,1,'en','setting/setting','description','Description','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5307,1,'en','setting/setting','enable','Enable','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5308,1,'en','setting/setting','send','Send','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5309,1,'en','setting/setting','test_email_description','To send test email, please make sure you are updated configuration to send mail!','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5310,1,'en','setting/setting','test_email_input_placeholder','Enter the email which you want to send test email.','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5311,1,'en','setting/setting','test_email_modal_title','Send a test email','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5312,1,'en','setting/setting','test_send_mail','Send test mail','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5313,1,'en','setting/setting','test_email_send_success','Send email successfully!','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5314,1,'en','setting/setting','locale_direction_ltr','Left to Right','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5315,1,'en','setting/setting','locale_direction_rtl','Right to Left','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5316,1,'en','setting/setting','saving','Saving...','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5317,1,'en','setting/setting','emails_warning','You can add up to :count emails','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5318,1,'en','setting/setting','email_add_more','Add more','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5319,1,'vi','setting/setting','title','Cài đặt','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5320,1,'vi','setting/setting','general.theme','Giao diện','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5321,1,'vi','setting/setting','general.description','Cấu hình những thông tin cài đặt website.','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5322,1,'vi','setting/setting','general.title','Thông tin chung','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5323,1,'vi','setting/setting','general.general_block','Thông tin chung','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5324,1,'vi','setting/setting','general.site_title','Tên trang','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5325,1,'vi','setting/setting','general.admin_email','Email quản trị viên','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5326,1,'vi','setting/setting','general.seo_block','Cấu hình SEO','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5327,1,'vi','setting/setting','general.seo_title','Tiêu đề SEO','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5328,1,'vi','setting/setting','general.seo_description','Mô tả SEO','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5329,1,'vi','setting/setting','general.webmaster_tools_block','Google Webmaster Tools','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5330,1,'vi','setting/setting','general.google_site_verification','Google site verification','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5331,1,'vi','setting/setting','general.placeholder.site_title','Tên trang (tối đa 120 kí tự)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5332,1,'vi','setting/setting','general.placeholder.admin_email','Admin Email','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5333,1,'vi','setting/setting','general.placeholder.google_analytics','Ví dụ: UA-42767940-2','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5334,1,'vi','setting/setting','general.placeholder.google_site_verification','Mã xác nhận trang web dùng cho Google Webmaster Tool','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5335,1,'vi','setting/setting','general.placeholder.seo_title','Tiêu đề SEO (tối đa 120 kí tự)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5336,1,'vi','setting/setting','general.placeholder.seo_description','Mô tả SEO (tối đa 120 kí tự)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5337,1,'vi','setting/setting','general.enable_change_admin_theme','Cho phép thay đổi giao diện quản trị?','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5338,1,'vi','setting/setting','general.enable','Bật','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5339,1,'vi','setting/setting','general.disable','Tắt','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5340,1,'vi','setting/setting','general.enable_cache','Bật bộ nhớ đệm?','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5341,1,'vi','setting/setting','general.cache_time','Thời gian lưu bộ nhớ đệm (phút)','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5342,1,'vi','setting/setting','general.cache_time_site_map','Thời gian lưu sơ đồ trang trong bộ nhớ đệm','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5343,1,'vi','setting/setting','general.admin_logo','Logo trang quản trị','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5344,1,'vi','setting/setting','general.admin_title','Tiêu đề trang quản trị','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5345,1,'vi','setting/setting','general.admin_title_placeholder','Tiêu đề hiển thị trên thẻ trình duyệt','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5346,1,'vi','setting/setting','general.rich_editor','Bộ soạn thảo văn bản','2023-01-22 08:10:57','2023-01-22 08:10:57'),(5347,1,'vi','setting/setting','general.cache_block','Bộ nhớ đệm','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5348,1,'vi','setting/setting','general.yes','Bật','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5349,1,'vi','setting/setting','general.no','Tắt','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5350,1,'vi','setting/setting','general.locale','Ngôn ngữ','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5351,1,'vi','setting/setting','general.admin_appearance_description','Setting admin appearance such as editor, language...','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5352,1,'vi','setting/setting','general.admin_appearance_title','Admin appearance','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5353,1,'vi','setting/setting','general.admin_login_screen_backgrounds','Login screen backgrounds (~1366x768)','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5354,1,'vi','setting/setting','general.admin_favicon','Admin favicon','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5355,1,'vi','setting/setting','general.cache_admin_menu','Cache admin menu?','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5356,1,'vi','setting/setting','general.cache_description','Config cache for system for optimize speed','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5357,1,'vi','setting/setting','general.default_admin_theme','Default admin theme','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5358,1,'vi','setting/setting','general.enable_send_error_reporting_via_email','Enable to send error reporting via email?','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5359,1,'vi','setting/setting','general.locale_direction','Hướng chữ viết','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5360,1,'vi','setting/setting','general.select','-- Lựa chọn --','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5361,1,'vi','setting/setting','general.seo_block_description','Setting site title, site meta description, site keyword for optimize SEO','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5362,1,'vi','setting/setting','general.show_on_front','Thiết lập trang chủ','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5363,1,'vi','setting/setting','general.show_site_name','Hiển thị tên trang web sau tiêu đề trang, tách biệt bằng \"-\"?','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5364,1,'vi','setting/setting','general.time_zone','Múi giờ','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5365,1,'vi','setting/setting','general.webmaster_tools_description','Công cụ quản trị trang web của Google (GWT) là phần mềm miễn phí giúp bạn quản lý khía cạnh kỹ thuật của trang web của mình','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5366,1,'vi','setting/setting','email.subject','Tiêu đề','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5367,1,'vi','setting/setting','email.content','Nội dung','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5368,1,'vi','setting/setting','email.title','Cấu hình email template','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5369,1,'vi','setting/setting','email.description','Cấu trúc file template sử dụng HTML và các biến trong hệ thống.','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5370,1,'vi','setting/setting','email.reset_to_default','Khôi phục về mặc định','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5371,1,'vi','setting/setting','email.back','Trở lại trang cài đặt','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5372,1,'vi','setting/setting','email.reset_success','Khôi phục mặc định thành công','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5373,1,'vi','setting/setting','email.confirm_reset','Xác nhận khôi phục mặc định?','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5374,1,'vi','setting/setting','email.confirm_message','Bạn có chắc chắn muốn khôi phục về bản mặc định?','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5375,1,'vi','setting/setting','email.continue','Tiếp tục','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5376,1,'vi','setting/setting','email.sender_name','Tên người gửi','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5377,1,'vi','setting/setting','email.sender_name_placeholder','Tên','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5378,1,'vi','setting/setting','email.sender_email','Email của người gửi','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5379,1,'vi','setting/setting','email.mailer','Loại','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5380,1,'vi','setting/setting','email.port','Cổng','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5381,1,'vi','setting/setting','email.port_placeholder','Ví dụ: 587','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5382,1,'vi','setting/setting','email.host','Máy chủ','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5383,1,'vi','setting/setting','email.host_placeholder','Ví dụ: smtp.gmail.com','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5384,1,'vi','setting/setting','email.username','Tên đăng nhập','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5385,1,'vi','setting/setting','email.username_placeholder','Tên đăng nhập vào máy chủ mail','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5386,1,'vi','setting/setting','email.password','Mật khẩu','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5387,1,'vi','setting/setting','email.password_placeholder','Mật khẩu đăng nhập vào máy chủ mail','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5388,1,'vi','setting/setting','email.encryption','Mã hoá','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5389,1,'vi','setting/setting','email.mail_gun_domain','Tên miền','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5390,1,'vi','setting/setting','email.mail_gun_domain_placeholder','Tên miền','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5391,1,'vi','setting/setting','email.mail_gun_secret','Chuỗi bí mật','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5392,1,'vi','setting/setting','email.mail_gun_secret_placeholder','Chuỗi bí mật','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5393,1,'vi','setting/setting','email.template_title','Mẫu giao diện email','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5394,1,'vi','setting/setting','email.template_description','Giao diện mặc định cho tất cả email','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5395,1,'vi','setting/setting','email.template_header','Mẫu cho phần trên của email','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5396,1,'vi','setting/setting','email.template_header_description','Phần trên của tất cả email','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5397,1,'vi','setting/setting','email.template_footer','Mẫu cho phần dưới của email','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5398,1,'vi','setting/setting','email.template_footer_description','Phần dưới của tất cả email','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5399,1,'vi','setting/setting','email.default','Mặc định','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5400,1,'vi','setting/setting','email.mail_gun_endpoint','Endpoint','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5401,1,'vi','setting/setting','email.mail_gun_endpoint_placeholder','Endpoint','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5402,1,'vi','setting/setting','email.postmark_token','Token','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5403,1,'vi','setting/setting','email.postmark_token_placeholder','Token','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5404,1,'vi','setting/setting','email.encryption_placeholder','Kiểu mã hóa: ssl hoặc tls','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5405,1,'vi','setting/setting','email.log_channel','Phương thức log','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5406,1,'vi','setting/setting','email.sendmail_path','Sendmail Path','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5407,1,'vi','setting/setting','email.ses_key','Key','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5408,1,'vi','setting/setting','email.ses_key_placeholder','Key','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5409,1,'vi','setting/setting','email.ses_region','Region','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5410,1,'vi','setting/setting','email.ses_region_placeholder','Region','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5411,1,'vi','setting/setting','email.ses_secret','Secret','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5412,1,'vi','setting/setting','email.ses_secret_placeholder','Secret','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5413,1,'vi','setting/setting','email.using_queue_to_send_mail','Sử dụng job queue để gửi email (Trước tiên phải thiết lập Queue https://laravel.com/docs/queues#supervisor-configuration)','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5414,1,'vi','setting/setting','save_settings','Lưu cài đặt','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5415,1,'vi','setting/setting','template','Mẫu','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5416,1,'vi','setting/setting','description','Mô tả','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5417,1,'vi','setting/setting','enable','Bật','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5418,1,'vi','setting/setting','test_send_mail','Gửi thử nghiệm','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5419,1,'vi','setting/setting','email_setting_title','Cấu hình email','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5420,1,'vi','setting/setting','field_type_not_exists','Loại field này không được hỗ trợ','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5421,1,'vi','setting/setting','test_email_description','Để gửi email thử nghiệm, hãy đảm bảo rằng bạn đã cập nhật cấu hình để gửi thư!','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5422,1,'vi','setting/setting','test_email_input_placeholder','Nhập email mà bạn muốn gửi email thử nghiệm.','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5423,1,'vi','setting/setting','test_email_modal_title','Gửi một email thử nghiệm','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5424,1,'vi','setting/setting','test_email_send_success','Gửi email thành công!','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5425,1,'vi','setting/setting','send','Gửi','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5426,1,'vi','setting/setting','license.buyer','Tên đăng nhập','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5427,1,'vi','setting/setting','license.purchase_code','Purchase code','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5428,1,'vi','setting/setting','locale_direction_ltr','Trái sang phải','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5429,1,'vi','setting/setting','locale_direction_rtl','Phải sang trái','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5430,1,'vi','setting/setting','media.aws_access_key_id','AWS Access Key ID','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5431,1,'vi','setting/setting','media.aws_bucket','AWS Bucket','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5432,1,'vi','setting/setting','media.aws_default_region','AWS Default Region','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5433,1,'vi','setting/setting','media.aws_url','AWS URL','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5434,1,'vi','setting/setting','media.aws_secret_key','AWS Secret Key','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5435,1,'vi','setting/setting','media.chunk_size','Chunk size (Bytes)','2023-01-22 08:10:58','2023-01-22 08:10:58'),(5436,1,'vi','setting/setting','media.chunk_size_placeholder','Mặc định: 1048576 ~ 1MB','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5437,1,'vi','setting/setting','media.do_spaces_access_key_id','DO Spaces Access Key ID','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5438,1,'vi','setting/setting','media.description','Cài đặt cho media','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5439,1,'vi','setting/setting','media.do_spaces_bucket','DO Spaces Bucket','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5440,1,'vi','setting/setting','media.do_spaces_cdn_enabled','Bật DO Spaces CDN?','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5441,1,'vi','setting/setting','media.do_spaces_default_region','DO Spaces Default Region','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5442,1,'vi','setting/setting','media.do_spaces_endpoint','DO Spaces Endpoint','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5443,1,'vi','setting/setting','media.do_spaces_secret_key','DO Spaces Secret Key','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5444,1,'vi','setting/setting','media.driver','Driver','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5445,1,'vi','setting/setting','media.enable_chunk','Bật chunk size upload?','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5446,1,'vi','setting/setting','media.enable_watermark','Bật watermark?','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5447,1,'vi','setting/setting','media.max_file_size','Chunk max file size (MB)','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5448,1,'vi','setting/setting','media.max_file_size_placeholder','Mặc định: 1048576 ~ 1GB','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5449,1,'vi','setting/setting','media.media_do_spaces_cdn_custom_domain','Do Spaces CDN custom domain','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5450,1,'vi','setting/setting','media.media_do_spaces_cdn_custom_domain_placeholder','https://ten-mien-cua-ban.com','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5451,1,'vi','setting/setting','media.title','Media','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5452,1,'vi','setting/setting','media.watermark_opacity','Watermark Opacity (%)','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5453,1,'vi','setting/setting','media.watermark_opacity_placeholder','Mặc định: 70 (%)','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5454,1,'vi','setting/setting','media.watermark_position','Vị trí watermark','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5455,1,'vi','setting/setting','media.watermark_position_bottom_left','Bên trái dưới cùng','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5456,1,'vi','setting/setting','media.watermark_position_bottom_right','Bên phải dưới cùng','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5457,1,'vi','setting/setting','media.watermark_position_center','Chính giữa','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5458,1,'vi','setting/setting','media.watermark_position_top_left','Bên trái trên cùng','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5459,1,'vi','setting/setting','media.watermark_position_top_right','Bên phải trên cùng','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5460,1,'vi','setting/setting','media.watermark_position_x','Watermark position X','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5461,1,'vi','setting/setting','media.watermark_position_y','Watermark position Y','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5462,1,'vi','setting/setting','media.watermark_size','Kích thước của watermark (%)','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5463,1,'vi','setting/setting','media.watermark_size_placeholder','Mặc định: 10 (%)','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5464,1,'vi','setting/setting','media.watermark_source','Hình ảnh watermark','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5465,1,'en','table/table','operations','Operations','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5466,1,'en','table/table','loading_data','Loading data from server','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5467,1,'en','table/table','display','Display','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5468,1,'en','table/table','all','All','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5469,1,'en','table/table','edit_entry','Edit','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5470,1,'en','table/table','delete_entry','Delete','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5471,1,'en','table/table','show_from','Showing from','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5472,1,'en','table/table','to','to','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5473,1,'en','table/table','in','in','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5474,1,'en','table/table','records','records','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5475,1,'en','table/table','no_data','No data to display','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5476,1,'en','table/table','no_record','No record','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5477,1,'en','table/table','loading','Loading data from server','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5478,1,'en','table/table','confirm_delete','Confirm delete','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5479,1,'en','table/table','confirm_delete_msg','Do you really want to delete this record?','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5480,1,'en','table/table','cancel','Cancel','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5481,1,'en','table/table','delete','Delete','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5482,1,'en','table/table','close','Close','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5483,1,'en','table/table','contains','Contains','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5484,1,'en','table/table','is_equal_to','Is equal to','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5485,1,'en','table/table','greater_than','Greater than','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5486,1,'en','table/table','less_than','Less than','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5487,1,'en','table/table','value','Value','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5488,1,'en','table/table','select_field','Select field','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5489,1,'en','table/table','reset','Reset','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5490,1,'en','table/table','add_additional_filter','Add additional filter','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5491,1,'en','table/table','apply','Apply','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5492,1,'en','table/table','filters','Filters','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5493,1,'en','table/table','bulk_change','Bulk changes','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5494,1,'en','table/table','select_option','Select option','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5495,1,'en','table/table','bulk_actions','Bulk Actions','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5496,1,'en','table/table','save_bulk_change_success','Update data for selected record(s) successfully!','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5497,1,'en','table/table','please_select_record','Please select at least one record to perform this action!','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5498,1,'en','table/table','filtered','(filtered from _MAX_ total records)','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5499,1,'en','table/table','search','Search...','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5500,1,'vi','table/table','operations','Hành động','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5501,1,'vi','table/table','loading_data','Đang tải dữ liệu từ hệ thống','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5502,1,'vi','table/table','display','Hiển thị','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5503,1,'vi','table/table','all','Tất cả','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5504,1,'vi','table/table','edit_entry','Sửa','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5505,1,'vi','table/table','delete_entry','Xoá','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5506,1,'vi','table/table','show_from','Hiển thị từ','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5507,1,'vi','table/table','to','đến','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5508,1,'vi','table/table','in','trong tổng số','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5509,1,'vi','table/table','records','bản ghi','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5510,1,'vi','table/table','no_data','Không có dữ liệu để hiển thị','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5511,1,'vi','table/table','no_record','không có bản ghi nào','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5512,1,'vi','table/table','loading','Đang tải dữ liệu từ hệ thống','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5513,1,'vi','table/table','confirm_delete','Xác nhận xoá','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5514,1,'vi','table/table','confirm_delete_msg','Bạn có chắc chắn muốn xoá bản ghi này?','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5515,1,'vi','table/table','cancel','Huỷ bỏ','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5516,1,'vi','table/table','delete','Xoá','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5517,1,'vi','table/table','close','Đóng','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5518,1,'vi','table/table','is_equal_to','Bằng với','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5519,1,'vi','table/table','greater_than','Lớn hơn','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5520,1,'vi','table/table','less_than','Nhỏ hơn','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5521,1,'vi','table/table','value','Giá trị','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5522,1,'vi','table/table','select_field','Chọn trường','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5523,1,'vi','table/table','reset','Làm mới','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5524,1,'vi','table/table','add_additional_filter','Thêm bộ lọc','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5525,1,'vi','table/table','apply','Áp dụng','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5526,1,'vi','table/table','select_option','Lựa chọn','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5527,1,'vi','table/table','filters','Lọc dữ liệu','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5528,1,'vi','table/table','bulk_change','Thay đổi hàng loạt','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5529,1,'vi','table/table','bulk_actions','Hành động','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5530,1,'vi','table/table','contains','Bao gồm','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5531,1,'vi','table/table','filtered','(đã được lọc từ _MAX_ bản ghi)','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5532,1,'vi','table/table','please_select_record','Vui lòng chọn ít nhất 1 bản ghi để thực hiện hành động này!','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5533,1,'vi','table/table','save_bulk_change_success','Cập nhật dữ liệu cho các bản ghi thành công!','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5534,1,'vi','table/table','search','Tìm kiếm...','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5535,1,'vi','auth','failed','Không tìm thấy thông tin đăng nhập hợp lệ.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5536,1,'vi','auth','throttle','Đăng nhập không đúng quá nhiều lần. Vui lòng thử lại sau :seconds giây.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5537,1,'vi','auth','password','Mật khẩu không chính xác','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5538,1,'vi','pagination','previous','« Trước','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5539,1,'vi','pagination','next','Sau »','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5540,1,'vi','passwords','reset','Mật khẩu đã được cập nhật!','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5541,1,'vi','passwords','sent','Chúng tôi đã gửi cho bạn đường dẫn thay đổi mật khẩu!','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5542,1,'vi','passwords','token','Mã xác nhận mật khẩu không hợp lệ.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5543,1,'vi','passwords','user','Không tìm thấy thành viên với địa chỉ email này.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5544,1,'vi','validation','accepted','Trường :attribute phải được chấp nhận.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5545,1,'vi','validation','active_url','Trường :attribute không phải là một URL hợp lệ.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5546,1,'vi','validation','after','Trường :attribute phải là một ngày sau ngày :date.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5547,1,'vi','validation','after_or_equal','Trường :attribute phải là thời gian bắt đầu sau hoặc đúng bằng :date.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5548,1,'vi','validation','alpha','Trường :attribute chỉ có thể chứa các chữ cái.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5549,1,'vi','validation','alpha_dash','Trường :attribute chỉ có thể chứa chữ cái, số và dấu gạch ngang.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5550,1,'vi','validation','alpha_num','Trường :attribute chỉ có thể chứa chữ cái và số.','2023-01-22 08:10:59','2023-01-22 08:10:59'),(5551,1,'vi','validation','array','Trường :attribute phải là dạng mảng.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5552,1,'vi','validation','before','Trường :attribute phải là một ngày trước ngày :date.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5553,1,'vi','validation','before_or_equal','Trường :attribute phải là thời gian bắt đầu trước hoặc đúng bằng :date.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5554,1,'vi','validation','between.array','Trường :attribute phải có từ :min - :max phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5555,1,'vi','validation','between.file','Dung lượng tập tin trong trường :attribute phải từ :min - :max kB.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5556,1,'vi','validation','between.numeric','Trường :attribute phải nằm trong khoảng :min - :max.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5557,1,'vi','validation','between.string','Trường :attribute phải từ :min - :max kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5558,1,'vi','validation','boolean','Trường :attribute phải là true hoặc false.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5559,1,'vi','validation','confirmed','Giá trị xác nhận trong trường :attribute không khớp.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5560,1,'vi','validation','date','Trường :attribute không phải là định dạng của ngày-tháng.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5561,1,'vi','validation','date_equals','Trường :attribute phải là một ngày bằng với :date.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5562,1,'vi','validation','date_format','Trường :attribute không giống với định dạng :format.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5563,1,'vi','validation','different','Trường :attribute và :other phải khác nhau.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5564,1,'vi','validation','digits','Độ dài của trường :attribute phải gồm :digits chữ số.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5565,1,'vi','validation','digits_between','Độ dài của trường :attribute phải nằm trong khoảng :min and :max chữ số.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5566,1,'vi','validation','dimensions','Trường :attribute có kích thước không hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5567,1,'vi','validation','distinct','Trường :attribute có giá trị trùng lặp.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5568,1,'vi','validation','email','Trường :attribute phải là một địa chỉ email hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5569,1,'vi','validation','ends_with','Trường :attribute phải kết thúc bằng một trong những giá trị sau: :values','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5570,1,'vi','validation','exists','Giá trị đã chọn trong trường :attribute không hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5571,1,'vi','validation','file','Trường :attribute phải là một tệp tin.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5572,1,'vi','validation','filled','Trường :attribute không được bỏ trống.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5573,1,'vi','validation','gt.array','Mảng :attribute phải có nhiều hơn :value phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5574,1,'vi','validation','gt.file','Dung lượng trường :attribute phải lớn hơn :value kilobytes.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5575,1,'vi','validation','gt.numeric','Giá trị trường :attribute phải lớn hơn :value.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5576,1,'vi','validation','gt.string','Độ dài trường :attribute phải nhiều hơn :value kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5577,1,'vi','validation','gte.array','Mảng :attribute phải có ít nhất :value phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5578,1,'vi','validation','gte.file','Dung lượng trường :attribute phải lớn hơn hoặc bằng :value kilobytes.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5579,1,'vi','validation','gte.numeric','Giá trị trường :attribute phải lớn hơn hoặc bằng :value.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5580,1,'vi','validation','gte.string','Độ dài trường :attribute phải lớn hơn hoặc bằng :value kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5581,1,'vi','validation','image','Trường :attribute phải là định dạng hình ảnh.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5582,1,'vi','validation','in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5583,1,'vi','validation','in_array','Trường :attribute phải thuộc tập cho phép: :other.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5584,1,'vi','validation','integer','Trường :attribute phải là một số nguyên.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5585,1,'vi','validation','ip','Trường :attribute phải là một địa chỉ IP.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5586,1,'vi','validation','ipv4','Trường :attribute phải là một địa chỉ IPv4.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5587,1,'vi','validation','ipv6','Trường :attribute phải là một địa chỉ IPv6.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5588,1,'vi','validation','json','Trường :attribute phải là một chuỗi JSON.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5589,1,'vi','validation','lt.array','Mảng :attribute phải có ít hơn :value phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5590,1,'vi','validation','lt.file','Dung lượng trường :attribute phải nhỏ hơn :value kilobytes.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5591,1,'vi','validation','lt.numeric','Giá trị trường :attribute phải nhỏ hơn :value.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5592,1,'vi','validation','lt.string','Độ dài trường :attribute phải nhỏ hơn :value kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5593,1,'vi','validation','lte.array','Mảng :attribute không được có nhiều hơn :value phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5594,1,'vi','validation','lte.file','Dung lượng trường :attribute phải nhỏ hơn hoặc bằng :value kilobytes.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5595,1,'vi','validation','lte.numeric','Giá trị trường :attribute phải nhỏ hơn hoặc bằng :value.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5596,1,'vi','validation','lte.string','Độ dài trường :attribute phải nhỏ hơn hoặc bằng :value kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5597,1,'vi','validation','max.array','Trường :attribute không được lớn hơn :max phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5598,1,'vi','validation','max.file','Dung lượng tập tin trong trường :attribute không được lớn hơn :max kB.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5599,1,'vi','validation','max.numeric','Trường :attribute không được lớn hơn :max.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5600,1,'vi','validation','max.string','Trường :attribute không được lớn hơn :max kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5601,1,'vi','validation','mimes','Trường :attribute phải là một tập tin có định dạng: :values.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5602,1,'vi','validation','mimetypes','Trường :attribute phải là một tập tin có định dạng: :values.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5603,1,'vi','validation','min.array','Trường :attribute phải có tối thiểu :min phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5604,1,'vi','validation','min.file','Dung lượng tập tin trong trường :attribute phải tối thiểu :min kB.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5605,1,'vi','validation','min.numeric','Trường :attribute phải tối thiểu là :min.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5606,1,'vi','validation','min.string','Trường :attribute phải có tối thiểu :min kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5607,1,'vi','validation','multiple_of','Trường :attribute phải là bội số của :value','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5608,1,'vi','validation','not_in','Giá trị đã chọn trong trường :attribute không hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5609,1,'vi','validation','not_regex','Trường :attribute có định dạng không hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5610,1,'vi','validation','numeric','Trường :attribute phải là một số.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5611,1,'vi','validation','password','Mật khẩu không đúng.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5612,1,'vi','validation','present','Trường :attribute phải được cung cấp.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5613,1,'vi','validation','prohibited','Trường :attribute bị cấm.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5614,1,'vi','validation','prohibited_if','Trường :attribute bị cấm khi :other là :value.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5615,1,'vi','validation','prohibited_unless','Trường :attribute bị cấm trừ khi :other là một trong :values.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5616,1,'vi','validation','regex','Trường :attribute có định dạng không hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5617,1,'vi','validation','required','Trường :attribute không được bỏ trống.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5618,1,'vi','validation','required_if','Trường :attribute không được bỏ trống khi trường :other là :value.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5619,1,'vi','validation','required_unless','Trường :attribute không được bỏ trống trừ khi :other là :values.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5620,1,'vi','validation','required_with','Trường :attribute không được bỏ trống khi một trong :values có giá trị.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5621,1,'vi','validation','required_with_all','Trường :attribute không được bỏ trống khi tất cả :values có giá trị.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5622,1,'vi','validation','required_without','Trường :attribute không được bỏ trống khi một trong :values không có giá trị.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5623,1,'vi','validation','required_without_all','Trường :attribute không được bỏ trống khi tất cả :values không có giá trị.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5624,1,'vi','validation','same','Trường :attribute và :other phải giống nhau.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5625,1,'vi','validation','size.array','Trường :attribute phải chứa :size phần tử.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5626,1,'vi','validation','size.file','Dung lượng tập tin trong trường :attribute phải bằng :size kB.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5627,1,'vi','validation','size.numeric','Trường :attribute phải bằng :size.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5628,1,'vi','validation','size.string','Trường :attribute phải chứa :size kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5629,1,'vi','validation','starts_with','Trường :attribute phải được bắt đầu bằng một trong những giá trị sau: :values','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5630,1,'vi','validation','string','Trường :attribute phải là một chuỗi kí tự.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5631,1,'vi','validation','timezone','Trường :attribute phải là một múi giờ hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5632,1,'vi','validation','unique','Trường :attribute đã có trong cơ sở dữ liệu.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5633,1,'vi','validation','uploaded','Trường :attribute tải lên thất bại.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5634,1,'vi','validation','url','Trường :attribute không giống với định dạng một URL.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5635,1,'vi','validation','uuid','Trường :attribute phải là một chuỗi UUID hợp lệ.','2023-01-22 08:11:00','2023-01-22 08:11:00'),(5636,1,'vi','validation','custom.attribute-name.rule-name','custom-message','2023-01-22 08:11:00','2023-01-22 08:11:00'); /*!40000 ALTER TABLE `translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_meta` -- DROP TABLE IF EXISTS `user_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_meta` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_meta_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_meta` -- LOCK TABLES `user_meta` WRITE; /*!40000 ALTER TABLE `user_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `user_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `users` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar_id` int unsigned DEFAULT NULL, `super_user` tinyint(1) NOT NULL DEFAULT '0', `manage_supers` tinyint(1) NOT NULL DEFAULT '0', `permissions` text COLLATE utf8mb4_unicode_ci, `last_login` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`), UNIQUE KEY `users_username_unique` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'admin@archielite.com',NULL,'$2y$10$GegNtcyV/NZxSXrlpUazM.w/w8EbYvAzqZHbEdr4lKXB163klTarS',NULL,'2023-01-22 08:09:23','2023-01-22 08:09:23','System','Admin','admin',NULL,1,1,NULL,NULL); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widgets` -- DROP TABLE IF EXISTS `widgets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widgets` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `widget_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `sidebar_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `position` tinyint unsigned NOT NULL DEFAULT '0', `data` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widgets` -- LOCK TABLES `widgets` WRITE; /*!40000 ALTER TABLE `widgets` DISABLE KEYS */; INSERT INTO `widgets` VALUES (1,'SiteInfoWidget','footer_sidebar','agon',0,'{\"id\":\"SiteInfoWidget\",\"name\":\"Contact\",\"address\":\"4517 Washington Ave. Manchester, Kentucky 39495\",\"phone\":\"(239) 555-0108\",\"email\":\"contact@agon.com\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(2,'SiteInfoWidget','footer_sidebar','agon-vi',0,'{\"id\":\"SiteInfoWidget\",\"name\":\"Li\\u00ean h\\u1ec7\",\"address\":\"4517 Washington Ave. Manchester, Kentucky 39495\",\"phone\":\"(239) 555-0108\",\"email\":\"contact@agon.com\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(3,'CustomMenuWidget','footer_sidebar','agon',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"About Us\",\"menu_id\":\"about-us\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(4,'CustomMenuWidget','footer_sidebar','agon-vi',1,'{\"id\":\"CustomMenuWidget\",\"name\":\"V\\u1ec1 ch\\u00fang t\\u00f4i\",\"menu_id\":\"ve-chung-toi\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(5,'CustomMenuWidget','footer_sidebar','agon',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"Discover\",\"menu_id\":\"discover\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(6,'CustomMenuWidget','footer_sidebar','agon-vi',2,'{\"id\":\"CustomMenuWidget\",\"name\":\"Kh\\u00e1m ph\\u00e1\",\"menu_id\":\"kham-pha\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(7,'CustomMenuWidget','footer_sidebar','agon',3,'{\"id\":\"CustomMenuWidget\",\"name\":\"Support\",\"menu_id\":\"support\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(8,'CustomMenuWidget','footer_sidebar','agon-vi',3,'{\"id\":\"CustomMenuWidget\",\"name\":\"H\\u1ed5 tr\\u1ee3\",\"menu_id\":\"ho-tro\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(9,'CustomMenuWidget','footer_sidebar','agon',4,'{\"id\":\"CustomMenuWidget\",\"name\":\"Useful links\",\"menu_id\":\"useful-links\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(10,'CustomMenuWidget','footer_sidebar','agon-vi',4,'{\"id\":\"CustomMenuWidget\",\"name\":\"Li\\u00ean k\\u1ebft h\\u1eefu \\u00edch\",\"menu_id\":\"lien-ket-huu-ich\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(11,'ProductsWidget','product_list_sidebar','agon',0,'{\"id\":\"ProductsWidget\",\"name\":\"Popular Items\",\"number_of_displays\":\"6\",\"type\":\"trending\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(12,'ProductsWidget','product_list_sidebar','agon-vi',0,'{\"id\":\"ProductsWidget\",\"name\":\"Popular Items\",\"number_of_displays\":\"6\",\"type\":\"trending\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(13,'NewsletterWidget','product_list_sidebar','agon',1,'{\"id\":\"NewsletterWidget\",\"title\":\"Get free coupons\",\"subtitle\":\"Enter you email address and get free coupons.\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(14,'NewsletterWidget','product_list_sidebar','agon-vi',1,'{\"id\":\"NewsletterWidget\",\"title\":\"Nh\\u1eadn phi\\u1ebfu gi\\u1ea3m gi\\u00e1 mi\\u1ec5n ph\\u00ed\",\"subtitle\":\"Enter you email address and get free coupons.\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(15,'BlogPostsWidget','product_list_bottom_sidebar','agon',1,'{\"id\":\"BlogPostsWidget\",\"title\":\"What\\u2019s new\",\"subtitle\":\"From Our blog and Event fanpage\",\"number_display\":6}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(16,'BlogPostsWidget','product_list_bottom_sidebar','agon-vi',1,'{\"id\":\"BlogPostsWidget\",\"title\":\"What\\u2019s new\",\"subtitle\":\"From Our blog and Event fanpage\",\"number_display\":6}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(17,'AppsDownloadWidget','pre_footer_sidebar','agon',2,'{\"id\":\"AppsDownloadWidget\",\"title\":\"You can order on App and Play store\",\"subtitle\":\"Bring the world of shopping to your phone\",\"ios_image\":\"general\\/apple-button.png\",\"ios_link\":\"#\",\"android_image\":\"general\\/google-play.png\",\"android_link\":\"#\",\"image_1\":\"general\\/safety.png\",\"image_2\":\"general\\/chart-2.png\",\"background\":\"general\\/bg-app.png\",\"featured\":\"Order direct from the app;Save and searches\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'),(18,'AppsDownloadWidget','pre_footer_sidebar','agon-vi',2,'{\"id\":\"AppsDownloadWidget\",\"title\":\"You can order on App and Play store\",\"subtitle\":\"Bring the world of shopping to your phone\",\"ios_image\":\"general\\/apple-button.png\",\"ios_link\":\"#\",\"android_image\":\"general\\/google-play.png\",\"android_link\":\"#\",\"image_1\":\"general\\/safety.png\",\"image_2\":\"general\\/chart-2.png\",\"background\":\"general\\/bg-app.png\",\"featured\":\"Order direct from the app;Save and searches\"}','2023-01-22 08:09:26','2023-01-22 08:09:26'); /*!40000 ALTER TABLE `widgets` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2023-01-22 22:11:05